Home
last modified time | relevance | path

Searched refs:taskSCHEDULER_NOT_STARTED (Results 1 – 6 of 6) sorted by relevance

/hal_espressif-3.6.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.6.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.6.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.6.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()
/hal_espressif-3.6.0/components/freertos/include/freertos/
Dtask.h295 #define taskSCHEDULER_NOT_STARTED ( ( BaseType_t ) 1 ) macro
/hal_espressif-3.6.0/components/freertos/
Dtasks.c4672 xReturn = taskSCHEDULER_NOT_STARTED; in xTaskGetSchedulerState()