Searched refs:task_count (Results 1 – 7 of 7) sorted by relevance
/hal_espressif-3.6.0/components/cxx/test/ |
D | test_initialization.cpp | 91 int task_count = 0; variable 93 task_count += start_slow_init_task<1>(0, PRO_CPU_NUM); 95 task_count += start_slow_init_task<1>(1, APP_CPU_NUM); 97 task_count += start_slow_init_task<1>(2, PRO_CPU_NUM); 98 task_count += start_slow_init_task<1>(3, tskNO_AFFINITY); 101 task_count += start_slow_init_task<2>(0, PRO_CPU_NUM); 103 task_count += start_slow_init_task<2>(1, APP_CPU_NUM); 105 task_count += start_slow_init_task<2>(2, PRO_CPU_NUM); 106 task_count += start_slow_init_task<2>(3, tskNO_AFFINITY); 109 for (int i = 0; i < task_count; ++i) {
|
/hal_espressif-3.6.0/components/esp_http_server/test/ |
D | test_http_server.c | 111 unsigned task_count; variable 116 task_count = uxTaskGetNumberOfTasks(); 117 printf("Initial task count: %d\n", task_count); 125 task_count++; 126 if (num_tasks != task_count) { 128 num_tasks, task_count); 140 task_count--; 141 if (num_tasks != task_count) { 143 num_tasks, task_count);
|
/hal_espressif-3.6.0/components/esp_gdbstub/src/ |
D | gdbstub.c | 385 s_scratch.task_count = uxTaskGetSnapshotAll(s_scratch.tasks, GDBSTUB_TASKS_NUM, &tcb_size); in init_task_info() 390 if (index >= s_scratch.task_count) { in get_task_handle() 402 for (int i = 0; i < s_scratch.task_count; i++) { in find_paniced_task_index() 441 } else if (requested_task_index >= s_scratch.task_count || in handle_H_command() 489 assert(s_scratch.task_count > 0); /* There should be at least one task */ in handle_qfThreadInfo_command() 497 if (task_index == s_scratch.task_count) { in handle_qsThreadInfo_command()
|
/hal_espressif-3.6.0/components/pthread/test/ |
D | test_pthread.c | 81 const int task_count = uxTaskGetNumberOfTasks(); 99 TEST_ASSERT_EQUAL_INT(task_count, res); 124 TEST_ASSERT_EQUAL_INT(task_count, res);
|
/hal_espressif-3.6.0/components/freertos/test/ |
D | test_task_suspend_resume.c | 30 static void task_count(void *vp_counter) in task_count() function 46 xTaskCreatePinnedToCore(task_count, "Count", 2048, in test_suspend_resume()
|
/hal_espressif-3.6.0/components/esp_gdbstub/private_include/ |
D | esp_gdbstub_common.h | 62 int task_count; member
|
/hal_espressif-3.6.0/components/spi_flash/test/ |
D | test_spi_flash.c | 117 const size_t task_count = sizeof(ctx)/sizeof(ctx[0]); variable 118 for (int i = 0; i < task_count; ++i) {
|