/hal_espressif-3.6.0/components/newlib/test/ |
D | test_locks.c | 36 TaskHandle_t task_hdl; in test_inner_normal() local 37 …ASSERT(xTaskCreate(&locking_task, "locking_task", 2048, lock, UNITY_FREERTOS_PRIORITY, &task_hdl)); in test_inner_normal() 40 TEST_ASSERT_EQUAL(eBlocked, eTaskGetState(task_hdl)); in test_inner_normal() 45 TEST_ASSERT_EQUAL(eSuspended, eTaskGetState(task_hdl)); in test_inner_normal() 46 vTaskDelete(task_hdl); in test_inner_normal() 60 TaskHandle_t task_hdl; in test_inner_recursive() local 61 …skCreate(&recursive_locking_task, "locking_task", 2048, lock, UNITY_FREERTOS_PRIORITY, &task_hdl)); in test_inner_recursive() 64 TEST_ASSERT_EQUAL(eBlocked, eTaskGetState(task_hdl)); in test_inner_recursive() 69 TEST_ASSERT_EQUAL(eSuspended, eTaskGetState(task_hdl)); in test_inner_recursive() 70 vTaskDelete(task_hdl); in test_inner_recursive()
|
/hal_espressif-3.6.0/components/usb/test/usb_host/ |
D | test_usb_host_plugging.c | 117 TaskHandle_t task_hdl; variable 118 …skCreatePinnedToCore(msc_client_async_dconn_task, "async", 4096, (void *)¶ms, 2, &task_hdl, 0); 120 xTaskNotifyGive(task_hdl); 175 TaskHandle_t task_hdl; variable 176 xTaskCreatePinnedToCore(msc_client_async_enum_task, "async", 6144, NULL, 2, &task_hdl, 0); 178 xTaskNotifyGive(task_hdl);
|
D | test_usb_host_async.c | 67 TaskHandle_t task_hdl; variable 68 …xTaskCreatePinnedToCore(msc_client_async_seq_task, "async", 4096, (void *)¶ms, 2, &task_hdl, 0… 70 xTaskNotifyGive(task_hdl);
|
/hal_espressif-3.6.0/examples/bluetooth/esp_hid_device/main/ |
D | esp_hid_device_main.c | 36 xTaskHandle task_hdl; member 321 &s_ble_hid_param.task_hdl); in ble_hid_task_start_up() 326 if (s_ble_hid_param.task_hdl) { in ble_hid_task_shut_down() 327 vTaskDelete(s_ble_hid_param.task_hdl); in ble_hid_task_shut_down() 328 s_ble_hid_param.task_hdl = NULL; in ble_hid_task_shut_down() 497 …demo_task, "bt_hid_demo_task", 2 * 1024, NULL, configMAX_PRIORITIES - 3, &s_bt_hid_param.task_hdl); in bt_hid_task_start_up() 503 if (s_bt_hid_param.task_hdl) { in bt_hid_task_shut_down() 504 vTaskDelete(s_bt_hid_param.task_hdl); in bt_hid_task_shut_down() 505 s_bt_hid_param.task_hdl = NULL; in bt_hid_task_shut_down()
|
/hal_espressif-3.6.0/components/freertos/test/ |
D | test_freertos_task_utilities.c | 91 TaskHandle_t task_hdl; variable 92 …_task_abort_delay, "test", 1024, (void *)&test_objs, UNITY_FREERTOS_PRIORITY + 1, &task_hdl, core); 96 TEST_ASSERT_EQUAL(pdPASS, xTaskAbortDelay(task_hdl));
|
/hal_espressif-3.6.0/components/console/ |
D | esp_console_repl.c | 40 TaskHandle_t task_hdl; // REPL task handle member 105 cdc_repl, repl_config->task_priority, &cdc_repl->repl_com.task_hdl) != pdTRUE) { in esp_console_new_repl_usb_cdc() 179 …_repl->repl_com, repl_config->task_priority, &usb_serial_jtag_repl->repl_com.task_hdl) != pdTRUE) { in esp_console_new_repl_usb_serial_jtag() 275 … uart_repl, repl_config->task_priority, &uart_repl->repl_com.task_hdl) != pdTRUE) { in esp_console_new_repl_uart() 305 xTaskNotifyGive(repl_com->task_hdl); in esp_console_start_repl()
|
/hal_espressif-3.6.0/components/driver/test/ |
D | test_pwm.c | 477 TaskHandle_t task_hdl; member 483 vTaskNotifyGiveFromISR(cb_data->task_hdl, &high_task_wakeup); in test_mcpwm_intr_handler() 491 .task_hdl = xTaskGetCurrentTaskHandle(), in mcpwm_capture_test()
|