Home
last modified time | relevance | path

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

/device/soc/esp/esp32/components/cxx/
Dcxx_guards.cpp123 const auto scheduler_started = xTaskGetSchedulerState() != taskSCHEDULER_NOT_STARTED; in __cxa_guard_acquire()
178 const auto scheduler_started = xTaskGetSchedulerState() != taskSCHEDULER_NOT_STARTED; in __cxa_guard_release()
198 const auto scheduler_started = xTaskGetSchedulerState() != taskSCHEDULER_NOT_STARTED; in __cxa_guard_abort()
/device/soc/esp/esp32/components/log/
Dlog_freertos.c58 if (xTaskGetSchedulerState() == taskSCHEDULER_NOT_STARTED) { in esp_log_system_timestamp()
95 if (xTaskGetSchedulerState() == taskSCHEDULER_NOT_STARTED) { in esp_log_timestamp()
/device/soc/esp/esp32/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()
/device/soc/esp/esp32/components/spi_flash/
Dcache_utils.c140 if (xTaskGetSchedulerState() == taskSCHEDULER_NOT_STARTED) { in spi_flash_disable_interrupts_caches_and_other_cpu()
187 assert(!(xTaskGetSchedulerState() == taskSCHEDULER_NOT_STARTED && cpuid != 0)); in spi_flash_enable_interrupts_caches_and_other_cpu()
195 if (xTaskGetSchedulerState() != taskSCHEDULER_NOT_STARTED) { in spi_flash_enable_interrupts_caches_and_other_cpu()
209 if (xTaskGetSchedulerState() != taskSCHEDULER_NOT_STARTED) { in spi_flash_enable_interrupts_caches_and_other_cpu()
/device/soc/esp/esp32/components/osal/include/esp_osal/
Dmpu_wrappers.h90 #define xTaskGetSchedulerState MPU_xTaskGetSchedulerState macro
Dtask.h2441 BaseType_t xTaskGetSchedulerState( void ) PRIVILEGED_FUNCTION;
/device/soc/esp/esp32/components/osal/
Dtasks.c158 BaseType_t IRAM_ATTR xTaskGetSchedulerState( void ) in xTaskGetSchedulerState() function
Dqueue.c766 …configASSERT( !( ( xTaskGetSchedulerState() == taskSCHEDULER_SUSPENDED ) && ( xTicksToWait != 0 ) … in xQueueGenericSend()
1078 …configASSERT( !( ( xTaskGetSchedulerState() == taskSCHEDULER_SUSPENDED ) && ( xTicksToWait != 0 ) … in xQueueReceive()
1194 …configASSERT( !( ( xTaskGetSchedulerState() == taskSCHEDULER_SUSPENDED ) && ( xTicksToWait != 0 ) … in xQueueSemaphoreTake()