Home
last modified time | relevance | path

Searched refs:pdFALSE (Results 1 – 25 of 114) sorted by relevance

12345

/hal_espressif-3.6.0/components/freertos/
Dqueue.c305 if( xNewQueue == pdFALSE ) in xQueueGenericReset()
312 if( listLIST_IS_EMPTY( &( pxQueue->xTasksWaitingToSend ) ) == pdFALSE ) in xQueueGenericReset()
314 if( xTaskRemoveFromEventList( &( pxQueue->xTasksWaitingToSend ) ) != pdFALSE ) in xQueueGenericReset()
461 pxNewQueue->ucStaticallyAllocated = pdFALSE; in xQueueGenericCreate()
816 BaseType_t xEntryTimeSet = pdFALSE, xYieldRequired; in xQueueGenericSend()
865 … else if( prvNotifyQueueSetContainer( pxQueue, xCopyPosition ) != pdFALSE ) in xQueueGenericSend()
881 … if( listLIST_IS_EMPTY( &( pxQueue->xTasksWaitingToReceive ) ) == pdFALSE ) in xQueueGenericSend()
883 … if( xTaskRemoveFromEventList( &( pxQueue->xTasksWaitingToReceive ) ) != pdFALSE ) in xQueueGenericSend()
896 else if( xYieldRequired != pdFALSE ) in xQueueGenericSend()
916 if( listLIST_IS_EMPTY( &( pxQueue->xTasksWaitingToReceive ) ) == pdFALSE ) in xQueueGenericSend()
[all …]
Devent_groups.c194 pxEventBits->ucStaticallyAllocated = pdFALSE; in xEventGroupCreate()
225 BaseType_t xTimeoutOccurred = pdFALSE; in xEventGroupSync()
293 if( xAlreadyYielded == pdFALSE ) in xEventGroupSync()
365 BaseType_t xTimeoutOccurred = pdFALSE; in xEventGroupWaitBits()
389 if( xWaitConditionMet != pdFALSE ) in xEventGroupWaitBits()
397 if( xClearOnExit != pdFALSE ) in xEventGroupWaitBits()
419 if( xClearOnExit != pdFALSE ) in xEventGroupWaitBits()
428 if( xWaitForAllBits != pdFALSE ) in xEventGroupWaitBits()
461 if( xAlreadyYielded == pdFALSE ) in xEventGroupWaitBits()
486 if( prvTestWaitCondition( uxReturn, uxBitsToWaitFor, xWaitForAllBits ) != pdFALSE ) in xEventGroupWaitBits()
[all …]
Dtasks.c407 PRIVILEGED_DATA static volatile BaseType_t xSchedulerRunning = pdFALSE;
409 PRIVILEGED_DATA static volatile BaseType_t xYieldPending[configNUM_CORES] = {pdFALSE};
423 …DATA static volatile UBaseType_t uxSchedulerSuspended[configNUM_CORES] = {( UBaseType_t ) pdFALSE};
437 PRIVILEGED_DATA static volatile BaseType_t xSwitchingContext[ configNUM_CORES ] = { pdFALSE };
941 xRunPrivileged = pdFALSE; in prvInitialiseNewTask()
1114 pxNewTCB->ucDelayAborted = pdFALSE; in prvInitialiseNewTask()
1258 if( xSchedulerRunning == pdFALSE ) in prvAddNewTaskToReadyList()
1291 if( xSchedulerRunning != pdFALSE ) in prvAddNewTaskToReadyList()
1430 if( xSchedulerRunning != pdFALSE ) in vTaskDelete()
1463 BaseType_t xShouldDelay = pdFALSE; in xTaskDelayUntil()
[all …]
Dtimers.c385 if( uxAutoReload != pdFALSE ) in prvInitialiseNewTimer()
468 if( uxAutoReload != pdFALSE ) in vTimerSetReloadMode()
492 uxReturn = ( UBaseType_t ) pdFALSE; in uxTimerGetReloadMode()
545 …Timer, ( xNextExpireTime + pxTimer->xTimerPeriodInTicks ), xTimeNow, xNextExpireTime ) != pdFALSE ) in prvProcessExpiredTimer()
624 if( xTimerListsWereSwitched == pdFALSE ) in prvProcessTimerOrBlockTask()
627 if( ( xListWasEmpty == pdFALSE ) && ( xNextExpireTime <= xTimeNow ) ) in prvProcessTimerOrBlockTask()
644 if( xListWasEmpty != pdFALSE ) in prvProcessTimerOrBlockTask()
656 if( xTaskResumeAll() == pdFALSE ) in prvProcessTimerOrBlockTask()
698 if( *pxListWasEmpty == pdFALSE ) in prvGetNextExpireTime()
726 *pxTimerListsWereSwitched = pdFALSE; in prvSampleTimeNow()
[all …]
Dstream_buffer.c373 if( xIsMessageBuffer != pdFALSE ) in xStreamBufferGenericCreateStatic()
436 if( ( pxStreamBuffer->ucFlags & sbFLAGS_IS_STATICALLY_ALLOCATED ) == ( uint8_t ) pdFALSE ) in vStreamBufferDelete()
545 xReturn = pdFALSE; in xStreamBufferSetTriggerLevel()
677 } while( xTaskCheckForTimeOut( &xTimeOut, &xTicksToWait ) == pdFALSE ); in xStreamBufferSend()
783 xShouldWrite = pdFALSE; in prvWriteMessageToBuffer()
805 xShouldWrite = pdFALSE; in prvWriteMessageToBuffer()
808 if( xShouldWrite != pdFALSE ) in prvWriteMessageToBuffer()
1097 xReturn = pdFALSE; in xStreamBufferIsEmpty()
1132 xReturn = pdFALSE; in xStreamBufferIsFull()
1161 xReturn = pdFALSE; in xStreamBufferSendCompletedFromISR()
[all …]
Dcroutine.c205 while( listLIST_IS_EMPTY( &xPendingReadyCoRoutineList ) == pdFALSE ) in prvCheckPendingReadyList()
247 while( listLIST_IS_EMPTY( pxDelayedCoRoutineList ) == pdFALSE ) in prvCheckDelayedList()
355 xReturn = pdFALSE; in xCoRoutineRemoveFromEventList()
/hal_espressif-3.6.0/components/freertos/test/
Dtest_timers.c20 TimerHandle_t oneshot = xTimerCreate("oneshot", 100 / portTICK_PERIOD_MS, pdFALSE,
23 TEST_ASSERT_EQUAL(pdFALSE, xTimerIsTimerActive(oneshot));
35 TEST_ASSERT_EQUAL(pdFALSE, xTimerIsTimerActive(oneshot));
47 TEST_ASSERT_EQUAL(pdFALSE, xTimerIsTimerActive(recurring));
67 TEST_ASSERT_EQUAL(pdFALSE, xTimerIsTimerActive(recurring));
Dtest_freertos_task_utilities.c61 TEST_ASSERT_EQUAL(pdFALSE, xQueueReceive(test_objs->queue, &data, portMAX_DELAY)); in test_task_abort_delay()
63 TEST_ASSERT_EQUAL(pdFALSE, xSemaphoreTake(test_objs->sem, portMAX_DELAY)); in test_task_abort_delay()
65 TEST_ASSERT_EQUAL(pdFALSE, xSemaphoreTake(test_objs->mux, portMAX_DELAY)); in test_task_abort_delay()
/hal_espressif-3.6.0/components/esp_ringbuf/
Dringbuf.c305 return (pxRingbuffer->uxRingbufferFlags & rbBUFFER_FULL_FLAG) ? pdFALSE : pdTRUE; in prvCheckItemFitsDefault()
309 … return (xTotalItemSize <= pxRingbuffer->pucFree - pxRingbuffer->pucAcquire) ? pdTRUE : pdFALSE; in prvCheckItemFitsDefault()
318 …ZE <= pxRingbuffer->xSize - (pxRingbuffer->pucAcquire - pxRingbuffer->pucFree)) ? pdTRUE : pdFALSE; in prvCheckItemFitsDefault()
320 return (xTotalItemSize <= pxRingbuffer->pucFree - pxRingbuffer->pucHead) ? pdTRUE : pdFALSE; in prvCheckItemFitsDefault()
331 return (pxRingbuffer->uxRingbufferFlags & rbBUFFER_FULL_FLAG) ? pdFALSE : pdTRUE; in prvCheckItemFitsByteBuffer()
335 return (xItemSize <= pxRingbuffer->pucFree - pxRingbuffer->pucAcquire) ? pdTRUE : pdFALSE; in prvCheckItemFitsByteBuffer()
338 …ze <= pxRingbuffer->xSize - (pxRingbuffer->pucAcquire - pxRingbuffer->pucFree)) ? pdTRUE : pdFALSE; in prvCheckItemFitsByteBuffer()
523 return pdFALSE; //Byte buffers do not allow multiple retrievals before return in prvCheckItemAvail()
528 return pdFALSE; //No items/data available for retrieval in prvCheckItemAvail()
563 *pxIsSplit = (pxHeader->uxItemFlags & rbITEM_SPLIT_FLAG) ? pdTRUE : pdFALSE; in prvGetItemDefault()
[all …]
/hal_espressif-3.6.0/components/freemodbus/port/
Dportevent_m.c93 BaseType_t xHigherPriorityTaskWoken = pdFALSE; in xMBMasterPortEventPost()
125 pdFALSE, // Keep masked bits. in xMBMasterPortFsmWaitConfirmation()
126pdFALSE, // Don't wait for both bits, either bit will do. in xMBMasterPortFsmWaitConfirmation()
143pdFALSE, // Don't wait for both bits, either bit will do. in xMBMasterPortEventGet()
181pdFALSE, // Don't wait for both bits, either bit will do. in xMBMasterRunResTake()
280pdFALSE, // Don't wait for both bits, either bit will do. in eMBMasterWaitRequestFinish()
/hal_espressif-3.6.0/components/driver/
Dspi_slave_hd.c267 BaseType_t cb_awoken = pdFALSE; in intr_check_clear_callback()
280 BaseType_t awoken = pdFALSE; in spi_slave_hd_intr_segment()
307 BaseType_t cb_awoken = pdFALSE; in spi_slave_hd_intr_segment()
326 BaseType_t cb_awoken = pdFALSE; in spi_slave_hd_intr_segment()
350 BaseType_t cb_awoken = pdFALSE; in spi_slave_hd_intr_segment()
366 BaseType_t cb_awoken = pdFALSE; in spi_slave_hd_intr_segment()
392 BaseType_t awoken = pdFALSE; in spi_slave_hd_intr_append()
421 BaseType_t cb_awoken = pdFALSE; in spi_slave_hd_intr_append()
453 BaseType_t cb_awoken = pdFALSE; in spi_slave_hd_intr_append()
483 if (ret == pdFALSE) { in get_ret_queue_result()
[all …]
/hal_espressif-3.6.0/components/lwip/port/esp32/include/arch/
Dsys_arch.h67 #define sys_mutex_valid( x ) ( ( ( *x ) == NULL) ? pdFALSE : pdTRUE )
71 #define sys_mbox_valid( x ) ( ( ( *x ) == NULL) ? pdFALSE : pdTRUE )
92 #define sys_sem_valid( x ) ( ( ( *x ) == NULL) ? pdFALSE : pdTRUE )
/hal_espressif-3.6.0/components/freertos/esp_additions/
Dtask_snapshot.c133 UBaseType_t bCurTaskListFound = pdFALSE; in pxTaskGetNext()
162 if( bCurTaskListFound == pdFALSE && pxTaskList != NULL ) { in pxTaskGetNext()
179 if( bCurTaskListFound == pdFALSE && pxTaskList != NULL ) { in pxTaskGetNext()
195 if( bCurTaskListFound == pdFALSE && pxTaskList != NULL ) { in pxTaskGetNext()
/hal_espressif-3.6.0/components/mdns/host_test/components/freertos_linux/include/freertos/
DFreeRTOS.h36 #define pdFALSE ( ( BaseType_t ) 0 ) macro
40 #define pdFAIL ( pdFALSE )
/hal_espressif-3.6.0/components/freertos/include/freertos/
Dprojdefs.h48 #define pdFALSE ( ( BaseType_t ) 0 ) macro
52 #define pdFAIL ( pdFALSE )
Dstream_buffer.h142 …xTriggerLevelBytes ) xStreamBufferGenericCreate( xBufferSizeBytes, xTriggerLevelBytes, pdFALSE )
229 …xStreamBufferGenericCreateStatic( xBufferSizeBytes, xTriggerLevelBytes, pdFALSE, pucStreamBufferSt…
/hal_espressif-3.6.0/components/wpa_supplicant/test/
Dtest_offchannel.c163 pdTRUE, pdFALSE, 5000 / portTICK_RATE_MS);
171 pdTRUE, pdFALSE, 5000 / portTICK_RATE_MS);
232 pdTRUE, pdFALSE, portMAX_DELAY); in test_wifi_roc()
/hal_espressif-3.6.0/components/mdns/test_afl_fuzz_host/
Desp32_mock.c73 return pdFALSE; in xQueueSend()
85 return pdFALSE; in xQueueReceive()
/hal_espressif-3.6.0/components/mqtt/host_test/main/
Dtest_mqtt_client.cpp99 xTaskCreatePinnedToCore_ExpectAnyArgsAndReturn(pdFALSE);
105 xTaskCreatePinnedToCore_ExpectAnyArgsAndReturn(pdFALSE);
/hal_espressif-3.6.0/components/freemodbus/tcp_slave/modbus_controller/
Dmbc_tcp_slave.c47 pdFALSE, // do not clear bits in modbus_tcp_slave_task()
48 pdFALSE, in modbus_tcp_slave_task()
133 pdTRUE , pdFALSE, portMAX_DELAY); in mbc_tcp_slave_check_event()
/hal_espressif-3.6.0/components/freemodbus/serial_slave/modbus_controller/
Dmbc_serial_slave.c46 pdFALSE, // do not clear bits in modbus_slave_task()
47 pdFALSE, in modbus_slave_task()
126 pdTRUE , pdFALSE, portMAX_DELAY); in mbc_serial_slave_check_event()
/hal_espressif-3.6.0/examples/wifi/getting_started/station/main/
Dstation_example_main.c111 pdFALSE, in wifi_init_sta()
112 pdFALSE, in wifi_init_sta()
/hal_espressif-3.6.0/examples/protocols/esp_local_ctrl/main/
Dapp_main.c101 pdFALSE, in wifi_init_sta()
102 pdFALSE, in wifi_init_sta()
/hal_espressif-3.6.0/tools/test_apps/system/panic/main/
Dtest_panic_main.c140 vTaskGetInfo(NULL, &pxTaskStatus, pdFALSE, pdFALSE); in test_stack_overflow()
/hal_espressif-3.6.0/examples/bluetooth/esp_ble_mesh/common_components/button/
Dbutton.c197 portBASE_TYPE HPTaskAwoken = pdFALSE; in button_gpio_isr_handler()
294 btn->tap_rls_cb.tmr = xTimerCreate("btn_rls_tmr", btn->tap_rls_cb.interval, pdFALSE, in iot_button_create()
310 btn->tap_psh_cb.tmr = xTimerCreate("btn_psh_tmr", btn->tap_psh_cb.interval, pdFALSE, in iot_button_create()
360 pdFALSE, btn, button_press_serial_cb); in iot_button_set_serial_cb()
423 cb_new->tmr = xTimerCreate("btn_press_tmr", cb_new->interval, pdFALSE, cb_new, button_press_cb); in iot_button_add_custom_cb()

12345