/hal_espressif-3.6.0/components/app_trace/test/ |
D | test_trace.c | 189 …TRACE_TEST_LOGI("%x: run dummy task (period %u us, %u timers)", xTaskGetCurrentTaskHandle(), arg->… in esp_apptrace_dummy_task() 206 …ESP_APPTRACE_TEST_LOGI("%x: start timer %x period %u us", xTaskGetCurrentTaskHandle(), inth[i], ar… in esp_apptrace_dummy_task() 217 …ESP_APPTRACE_TEST_LOGD("%x: dummy task work %d.%d", xTaskGetCurrentTaskHandle(), cpu_hal_get_core_… in esp_apptrace_dummy_task() 246 …E_TEST_LOGI("%x: run (period %u us, stamp mask %x, %u timers)", xTaskGetCurrentTaskHandle(), arg->… in esp_apptrace_test_task() 263 …ESP_APPTRACE_TEST_LOGI("%x: start timer %x period %u us", xTaskGetCurrentTaskHandle(), inth[i], ar… in esp_apptrace_test_task() 272 …*(uint32_t *)arg->data.buf = (uint32_t)xTaskGetCurrentTaskHandle() | (cpu_hal_get_core_id() ? 0x1 … in esp_apptrace_test_task() 287 …ESP_APPTRACE_TEST_LOGE("%x: Failed to write trace %d %x!", xTaskGetCurrentTaskHandle(), res, arg->… in esp_apptrace_test_task() 294 …ESP_APPTRACE_TEST_LOGD("%x:%x: Written chunk%d %d bytes, %x", xTaskGetCurrentTaskHandle(), *ts, ar… in esp_apptrace_test_task() 325 …E_TEST_LOGE("%x: run (period %u us, stamp mask %x, %u timers)", xTaskGetCurrentTaskHandle(), arg->… in esp_apptrace_test_task_crash() 328 *(uint32_t *)arg->data.buf = (uint32_t)xTaskGetCurrentTaskHandle(); in esp_apptrace_test_task_crash() [all …]
|
/hal_espressif-3.6.0/examples/system/sysview_tracing/main/ |
D | sysview_tracing.c | 138 ESP_LOGI(TAG, "%p: run task", xTaskGetCurrentTaskHandle()); in example_task() 142 ESP_LOGE(TAG, "%p: failed to register timer ISR", xTaskGetCurrentTaskHandle()); in example_task() 146 ESP_LOGE(TAG, "%p: failed to start timer", xTaskGetCurrentTaskHandle()); in example_task() 155 ESP_LOGI(TAG, "Task[%p]: received event %d", xTaskGetCurrentTaskHandle(), event_val); in example_task()
|
/hal_espressif-3.6.0/examples/system/sysview_tracing_heap_log/main/ |
D | sysview_heap_log.c | 29 ESP_LOGI(TAG, "Task[%p]: free memory @ %p", xTaskGetCurrentTaskHandle(), p); in free_task() 60 ESP_LOGI(TAG, "Task[%p]: allocated %d bytes @ %p", xTaskGetCurrentTaskHandle(), sz, p); in alloc_task() 92 task_args->waiter = xTaskGetCurrentTaskHandle(); in app_main()
|
/hal_espressif-3.6.0/components/esp_http_server/src/port/esp32/ |
D | osal.h | 40 vTaskDelete(xTaskGetCurrentTaskHandle()); in httpd_os_thread_delete() 50 return xTaskGetCurrentTaskHandle(); in httpd_os_thread_handle()
|
/hal_espressif-3.6.0/components/pthread/ |
D | pthread.c | 337 } else if (handle == xTaskGetCurrentTaskHandle()) { in pthread_join() 341 esp_pthread_t *cur_pthread = pthread_find(xTaskGetCurrentTaskHandle()); in pthread_join() 347 pthread->join_task = xTaskGetCurrentTaskHandle(); in pthread_join() 418 esp_pthread_t *pthread = pthread_find(xTaskGetCurrentTaskHandle()); in pthread_exit() 475 esp_pthread_t *pthread = pthread_find(xTaskGetCurrentTaskHandle()); in pthread_self() 611 (xSemaphoreGetMutexHolder(mux->sem) == xTaskGetCurrentTaskHandle())) { in pthread_mutex_lock_internal() 701 (xSemaphoreGetMutexHolder(mux->sem) != xTaskGetCurrentTaskHandle())) { in pthread_mutex_unlock()
|
/hal_espressif-3.6.0/components/esp_system/ |
D | task_wdt.c | 271 handle = xTaskGetCurrentTaskHandle(); in esp_task_wdt_add() 316 TaskHandle_t handle = xTaskGetCurrentTaskHandle(); in esp_task_wdt_reset() 337 handle = xTaskGetCurrentTaskHandle(); in esp_task_wdt_delete() 380 handle = xTaskGetCurrentTaskHandle(); in esp_task_wdt_status()
|
/hal_espressif-3.6.0/components/esp_system/port/arch/riscv/ |
D | expression_with_stack.c | 32 StaticTask_t *current = (StaticTask_t *)xTaskGetCurrentTaskHandle(); in esp_switch_stack_setup() 65 StaticTask_t *current = (StaticTask_t *)xTaskGetCurrentTaskHandle(); in esp_execute_shared_stack_function()
|
/hal_espressif-3.6.0/components/esp_system/port/arch/xtensa/ |
D | expression_with_stack.c | 36 StaticTask_t *current = (StaticTask_t *)xTaskGetCurrentTaskHandle(); in esp_switch_stack_setup() 74 StaticTask_t *current = (StaticTask_t *)xTaskGetCurrentTaskHandle(); in esp_execute_shared_stack_function()
|
/hal_espressif-3.6.0/components/pthread/test/ |
D | test_pthread.c | 69 *task_handle = xTaskGetCurrentTaskHandle(); in waiting_thread() 85 task_handle = xTaskGetCurrentTaskHandle(); 110 task_handle = xTaskGetCurrentTaskHandle();
|
/hal_espressif-3.6.0/components/freertos/test/ |
D | test_freertos_backported_functions.c | 133 …TEST_ASSERT_EQUAL_PTR((void *)xTaskGetCurrentTaskHandle(), xSemaphoreGetMutexHolder(handle)); //… 145 …TEST_ASSERT_EQUAL_PTR((void *)xTaskGetCurrentTaskHandle(), xSemaphoreGetMutexHolder(handle)); //…
|
D | test_freertos_get_state.c | 18 TEST_ASSERT(eTaskGetState(xTaskGetCurrentTaskHandle()) == eRunning); in test_task_get_state()
|
D | test_freertos_trace_utilities.c | 32 TaskHandle_t handle = xTaskGetCurrentTaskHandle(); in task_test_trace_utilities()
|
D | test_freertos_task_delete.c | 100 srand(xTaskGetTickCount() ^ (int)xTaskGetCurrentTaskHandle()); in tsk_blocks_frequently()
|
D | test_thread_local.c | 43 srand((int) xTaskGetCurrentTaskHandle()); in task_test_tls()
|
/hal_espressif-3.6.0/examples/openthread/ot_rcp/main/ |
D | esp_ot_rcp.c | 60 xTaskCreate(ot_task_worker, "ot_rcp_main", 10240, xTaskGetCurrentTaskHandle(), 5, NULL); in app_main()
|
/hal_espressif-3.6.0/examples/openthread/ot_cli/main/ |
D | esp_ot_cli.c | 106 xTaskCreate(ot_task_worker, "ot_cli_main", 10240, xTaskGetCurrentTaskHandle(), 5, NULL); in app_main()
|
/hal_espressif-3.6.0/examples/system/sysview_tracing/ |
D | README.md | 47 ESP_LOGI(TAG, "%p: run task", xTaskGetCurrentTaskHandle()); 51 ESP_LOGE(TAG, "%p: failed to register timer ISR", xTaskGetCurrentTaskHandle()); 56 ESP_LOGE(TAG, "%p: failed to start timer", xTaskGetCurrentTaskHandle()); 63 ESP_LOGI(TAG, "Task[%p]: received event %d", xTaskGetCurrentTaskHandle(), event_val);
|
/hal_espressif-3.6.0/examples/peripherals/usb/host/cdc/common/cdc_acm_host/test/ |
D | test_cdc_acm_host.c | 91 …SERT_EQUAL(pdTRUE, xTaskCreate(usb_lib_task, "usb_lib", 4*4096, xTaskGetCurrentTaskHandle(), 10, N… in test_install_cdc_driver() 292 dev_config.user_arg = xTaskGetCurrentTaskHandle();
|
/hal_espressif-3.6.0/components/mdns/host_test/components/freertos_linux/include/freertos/ |
D | task.h | 25 TaskHandle_t xTaskGetCurrentTaskHandle(void);
|
/hal_espressif-3.6.0/tools/esp_app_trace/test/sysview/ |
D | blink.c | 57 …xTaskCreatePinnedToCore(&blink_task2, "blink_task2", 2048, xTaskGetCurrentTaskHandle(), 5, &task, … in blink_task()
|
/hal_espressif-3.6.0/components/heap/ |
D | multi_heap_platform.h | 75 #define MULTI_HEAP_SET_BLOCK_OWNER(HEAD) (HEAD)->task = xTaskGetCurrentTaskHandle()
|
/hal_espressif-3.6.0/components/mdns/test_afl_fuzz_host/ |
D | esp32_mock.c | 98 TaskHandle_t xTaskGetCurrentTaskHandle(void) in xTaskGetCurrentTaskHandle() function
|
D | esp32_mock.h | 175 TaskHandle_t xTaskGetCurrentTaskHandle(void);
|
/hal_espressif-3.6.0/examples/peripherals/usb/host/cdc/cdc_acm_host/main/ |
D | usb-cdc.c | 62 …xTaskCreate(usb_lib_task, "usb_lib", 4096, xTaskGetCurrentTaskHandle(), EXAMPLE_USB_HOST_PRIORITY,… in app_main()
|
/hal_espressif-3.6.0/components/freertos/include/freertos/ |
D | mpu_wrappers.h | 86 #define xTaskGetCurrentTaskHandle MPU_xTaskGetCurrentTaskHandle macro
|