Home
last modified time | relevance | path

Searched refs:xTaskGetSchedulerState (Results 1 – 25 of 34) sorted by relevance

12

/hal_espressif-3.4.0/components/log/
Dlog_freertos.c34 if (unlikely(xTaskGetSchedulerState() == taskSCHEDULER_NOT_STARTED)) { in esp_log_impl_lock()
45 if (unlikely(xTaskGetSchedulerState() == taskSCHEDULER_NOT_STARTED)) { in esp_log_impl_lock_timeout()
53 if (unlikely(xTaskGetSchedulerState() == taskSCHEDULER_NOT_STARTED)) { in esp_log_impl_unlock()
64 if (xTaskGetSchedulerState() == taskSCHEDULER_NOT_STARTED) { in esp_log_system_timestamp()
101 if (unlikely(xTaskGetSchedulerState() == taskSCHEDULER_NOT_STARTED)) { in esp_log_timestamp()
/hal_espressif-3.4.0/components/cxx/
Dcxx_guards.cpp116 const auto scheduler_started = xTaskGetSchedulerState() != taskSCHEDULER_NOT_STARTED; in __cxa_guard_acquire()
173 const auto scheduler_started = xTaskGetSchedulerState() != taskSCHEDULER_NOT_STARTED; in __cxa_guard_release()
195 const auto scheduler_started = xTaskGetSchedulerState() != taskSCHEDULER_NOT_STARTED; in __cxa_guard_abort()
/hal_espressif-3.4.0/components/newlib/
Dlocks.c123 if (xTaskGetSchedulerState() == taskSCHEDULER_NOT_STARTED) { in lock_acquire_generic()
132 if (xTaskGetSchedulerState() == taskSCHEDULER_NOT_STARTED) { in lock_acquire_generic()
182 if (xTaskGetSchedulerState() == taskSCHEDULER_NOT_STARTED) { in lock_release_generic()
/hal_espressif-3.4.0/components/esp_ipc/src/
Desp_ipc.c122 if (xTaskGetSchedulerState() != taskSCHEDULER_RUNNING) { in esp_ipc_call_and_wait()
170 if (xTaskGetSchedulerState() != taskSCHEDULER_RUNNING) { in esp_ipc_start_gcov_from_isr()
/hal_espressif-3.4.0/components/spi_flash/
Dcache_utils.c148 if (xTaskGetSchedulerState() == taskSCHEDULER_NOT_STARTED) { in spi_flash_disable_interrupts_caches_and_other_cpu()
195 assert(!(xTaskGetSchedulerState() == taskSCHEDULER_NOT_STARTED && cpuid != 0)); in spi_flash_enable_interrupts_caches_and_other_cpu()
203 if (xTaskGetSchedulerState() != taskSCHEDULER_NOT_STARTED) { in spi_flash_enable_interrupts_caches_and_other_cpu()
217 if (xTaskGetSchedulerState() != taskSCHEDULER_NOT_STARTED) { in spi_flash_enable_interrupts_caches_and_other_cpu()
Dspi_flash_os_func_app.c135 if (likely(xTaskGetSchedulerState() == taskSCHEDULER_RUNNING)) { in spi1_flash_os_yield()
Dflash_ops.c278 if (likely(xTaskGetSchedulerState() == taskSCHEDULER_RUNNING)) { in spi_flash_os_yield()
/hal_espressif-3.4.0/components/freertos/
Devent_groups.c231 …configASSERT( !( ( xTaskGetSchedulerState() == taskSCHEDULER_SUSPENDED ) && ( xTicksToWait != 0 ) … in xEventGroupSync()
374 …configASSERT( !( ( xTaskGetSchedulerState() == taskSCHEDULER_SUSPENDED ) && ( xTicksToWait != 0 ) … in xEventGroupWaitBits()
Dqueue.c825 …configASSERT( !( ( xTaskGetSchedulerState() == taskSCHEDULER_SUSPENDED ) && ( xTicksToWait != 0 ) … in xQueueGenericSend()
1391 …configASSERT( !( ( xTaskGetSchedulerState() == taskSCHEDULER_SUSPENDED ) && ( xTicksToWait != 0 ) … in xQueueReceive()
1554 …configASSERT( !( ( xTaskGetSchedulerState() == taskSCHEDULER_SUSPENDED ) && ( xTicksToWait != 0 ) … in xQueueSemaphoreTake()
1788 …configASSERT( !( ( xTaskGetSchedulerState() == taskSCHEDULER_SUSPENDED ) && ( xTicksToWait != 0 ) … in xQueuePeek()
Dtasks.c1434 configASSERT( xTaskGetSchedulerState() != taskSCHEDULER_SUSPENDED ); in vTaskDelete()
1470 configASSERT( xTaskGetSchedulerState() != taskSCHEDULER_SUSPENDED ); in xTaskDelayUntil()
1565 configASSERT( xTaskGetSchedulerState() != taskSCHEDULER_SUSPENDED ); in vTaskDelay()
2511 configASSERT( xTaskGetSchedulerState() != taskSCHEDULER_RUNNING ); in xTaskResumeAll()
2970 configASSERT( xTaskGetSchedulerState() != taskSCHEDULER_SUSPENDED ); in xTaskCatchUpTicks()
4664 BaseType_t xTaskGetSchedulerState( void ) in xTaskGetSchedulerState() function
Dtimers.c417 if( xTaskGetSchedulerState() == taskSCHEDULER_RUNNING ) in xTimerGenericCommand()
DHistory.txt1963 + Added xTaskGetSchedulerState() API function.
/hal_espressif-3.4.0/components/freertos/include/freertos/
Dmpu_wrappers.h89 #define xTaskGetSchedulerState MPU_xTaskGetSchedulerState macro
Dtask.h3426 BaseType_t xTaskGetSchedulerState( void ) PRIVILEGED_FUNCTION;
/hal_espressif-3.4.0/components/esp_system/port/soc/esp32s3/
Dusb_console.c104 if (xTaskGetSchedulerState() != taskSCHEDULER_RUNNING || in esp_usb_console_osglue_wait_proc()
/hal_espressif-3.4.0/components/esp_system/port/soc/esp32s2/
Dusb_console.c105 if (xTaskGetSchedulerState() != taskSCHEDULER_RUNNING || in esp_usb_console_osglue_wait_proc()
/hal_espressif-3.4.0/docs/zh_CN/api-guides/
DSYSVIEW_FreeRTOS.txt40 153 xTaskGetSchedulerState
/hal_espressif-3.4.0/docs/en/api-guides/
DSYSVIEW_FreeRTOS.txt40 153 xTaskGetSchedulerState
/hal_espressif-3.4.0/tools/esp_app_trace/
DSYSVIEW_FreeRTOS.txt40 153 xTaskGetSchedulerState
/hal_espressif-3.4.0/examples/system/sysview_tracing/
DSYSVIEW_FreeRTOS.txt40 153 xTaskGetSchedulerState
/hal_espressif-3.4.0/examples/system/sysview_tracing_heap_log/
DSYSVIEW_FreeRTOS.txt40 153 xTaskGetSchedulerState
/hal_espressif-3.4.0/tools/ldgen/samples/
Dsections.info815 26 .literal.xTaskGetSchedulerState 0000000c 00000000 00000000 00000234 2**2
961 99 .text.xTaskGetSchedulerState 00000037 00000000 00000000 000014c0 2**2
/hal_espressif-3.4.0/tools/ldgen/test/data/
Dlibfreertos.a.txt920 26 .literal.xTaskGetSchedulerState 0000000c 00000000 00000000 00000234 2**2
1066 99 .text.xTaskGetSchedulerState 00000037 00000000 00000000 000014c0 2**2
/hal_espressif-3.4.0/tools/test_idf_size/
Dexpected_output3229 xTaskGetSchedulerState 59 58 +1
Dapp_esp32s2.map7868 .literal.xTaskGetSchedulerState
9125 .text.xTaskGetSchedulerState
9127 0x000000004002b9cc xTaskGetSchedulerState
16084 xTaskGetSchedulerState esp-idf/freertos/libfreertos.a(tasks.c.obj)

12