Home
last modified time | relevance | path

Searched refs:prio (Results 1 – 25 of 49) sorted by relevance

12

/hal_espressif-3.4.0/components/heap/
Dheap_private.h60 for (int prio = 0; prio < SOC_MEMORY_TYPE_NO_PRIOS; prio++) { in get_all_caps() local
61 all_caps |= heap->caps[prio]; in get_all_caps()
Dheap_caps.c124 for (int prio = 0; prio < SOC_MEMORY_TYPE_NO_PRIOS; prio++) { in heap_caps_malloc_base() local
131 if ((heap->caps[prio] & caps) != 0) { in heap_caps_malloc_base()
610 for (int prio = 0; prio < SOC_MEMORY_TYPE_NO_PRIOS; prio++) { in heap_caps_aligned_alloc() local
617 if ((heap->caps[prio] & caps) != 0) { in heap_caps_aligned_alloc()
/hal_espressif-3.4.0/components/esp_hw_support/test/
Dtest_fp.c198 const int prio = UNITY_FREERTOS_PRIORITY + 1; variable
199 TEST_ASSERT(xTaskCreatePinnedToCore(tskTestFP, "tsk1", 2048, &state, prio, NULL, 0));
200 TEST_ASSERT(xTaskCreatePinnedToCore(tskTestFP, "tsk2", 2048, &state, prio, NULL, 0));
201 …TEST_ASSERT(xTaskCreatePinnedToCore(tskTestFP, "tsk3", 2048, &state, prio, NULL, portNUM_PROCESSOR…
202 TEST_ASSERT(xTaskCreatePinnedToCore(tskTestFP, "tsk4", 2048, &state, prio, NULL, 0));
/hal_espressif-3.4.0/examples/cxx/pthread/
DREADME.md43 I (380) Thread 1: Core id: 0, prio: 5, minimum free stack: 2068 bytes.
44 I (0) pthread: This thread (with the default name) may run on any core.Core id: 1, prio: 5, minimum…
45 …hread with the same parameters as our parent, including name. Core id: 0, prio: 5, minimum free st…
46 I (410) Thread 2: Core id: 1, prio: 5, minimum free stack: 2088 bytes.
47 I (410) main: core id: 0, prio: 1, minimum free stack: 2928 bytes.
/hal_espressif-3.4.0/components/app_trace/test/
Dtest_trace.c115 int prio; member
403 dummy_task_arg[0].prio = 3; in esp_apptrace_test()
457 …->tasks[i].task_func, name, 2048, &test_cfg->tasks[i], test_cfg->tasks[i].prio, &thnd, test_cfg->t… in esp_apptrace_test()
460 …Core(esp_apptrace_dummy_task, "dummy0", 2048, &dummy_task_arg[0], dummy_task_arg[0].prio, NULL, 0); in esp_apptrace_test()
462 …Core(esp_apptrace_dummy_task, "dummy1", 2048, &dummy_task_arg[0], dummy_task_arg[0].prio, NULL, 1); in esp_apptrace_test()
505 s_test_tasks[0].prio = 3;
528 s_test_tasks[0].prio = 3;
566 s_test_tasks[ntask].prio = 4;
575 s_test_tasks[ntask].prio = 3;
584 s_test_tasks[ntask].prio = 4;
[all …]
/hal_espressif-3.4.0/examples/cxx/pthread/main/
Dcpp_pthread.cpp75 esp_pthread_cfg_t create_config(const char *name, int core_id, int stack, int prio) in create_config() argument
81 cfg.prio = prio; in create_config()
/hal_espressif-3.4.0/components/esp_http_server/src/port/esp32/
Dosal.h26 const char *name, uint16_t stacksize, int prio, in httpd_os_thread_create() argument
30 int ret = xTaskCreatePinnedToCore(thread_routine, name, stacksize, arg, prio, thread, core_id); in httpd_os_thread_create()
/hal_espressif-3.4.0/tools/esp_app_trace/test/sysview/
Dexpected_output149 EVENT[148]: 0.001647400 - core[0].svTaskInfo(9), plen 0: [tid: 12253880, prio: 22, name: esp_timer]
150 EVENT[149]: 0.001647400 - core[1].svTaskInfo(9), plen 0: [tid: 12253880, prio: 22, name: esp_timer]
153 EVENT[152]: 0.001738550 - core[0].svTaskInfo(9), plen 0: [tid: 12254636, prio: 24, name: ipc0]
154 EVENT[153]: 0.001738550 - core[1].svTaskInfo(9), plen 0: [tid: 12254636, prio: 24, name: ipc0]
157 EVENT[156]: 0.001828975 - core[0].svTaskInfo(9), plen 0: [tid: 12275372, prio: 24, name: ipc1]
158 EVENT[157]: 0.001828975 - core[1].svTaskInfo(9), plen 0: [tid: 12275372, prio: 24, name: ipc1]
161 EVENT[160]: 0.001871225 - core[0].svTaskInfo(9), plen 0: [tid: 12291908, prio: 5, name: blink_task]
162 EVENT[161]: 0.001871225 - core[1].svTaskInfo(9), plen 0: [tid: 12291908, prio: 5, name: blink_task]
165 EVENT[164]: 0.002070800 - core[0].svTaskInfo(9), plen 0: [tid: 12282660, prio: 1, name: main]
166 EVENT[165]: 0.002070800 - core[1].svTaskInfo(9), plen 0: [tid: 12282660, prio: 1, name: main]
[all …]
/hal_espressif-3.4.0/components/pthread/
Dpthread.c166 .prio = CONFIG_PTHREAD_TASK_PRIO_DEFAULT, in esp_pthread_get_default_config()
223 BaseType_t prio = CONFIG_PTHREAD_TASK_PRIO_DEFAULT; in pthread_create() local
232 if (pthread_cfg->prio && pthread_cfg->prio < configMAX_PRIORITIES) { in pthread_create()
233 prio = pthread_cfg->prio; in pthread_create()
282 prio, in pthread_create()
/hal_espressif-3.4.0/components/esp_rom/include/esp32c3/rom/
Dets_sys.h105 void ets_task(ETSTask task, uint8_t prio, ETSEvent *queue, uint8_t qlen);
119 ETS_STATUS ets_post(uint8_t prio, ETSSignal sig, ETSParam par);
/hal_espressif-3.4.0/components/esp_rom/include/esp32h2/rom/
Dets_sys.h105 void ets_task(ETSTask task, uint8_t prio, ETSEvent *queue, uint8_t qlen);
119 ETS_STATUS ets_post(uint8_t prio, ETSSignal sig, ETSParam par);
/hal_espressif-3.4.0/examples/protocols/asio/ssl_client_server/main/
Dasio_ssl_main.cpp202 void set_thread_config(const char *name, int stack, int prio) in set_thread_config() argument
207 cfg.prio = prio; in set_thread_config()
/hal_espressif-3.4.0/components/hal/esp32c3/include/hal/
Dgdma_ll.h255 static inline void gdma_ll_rx_set_priority(gdma_dev_t *dev, uint32_t channel, uint32_t prio) in gdma_ll_rx_set_priority() argument
257 dev->channel[channel].in.in_pri.rx_pri = prio; in gdma_ll_rx_set_priority()
458 static inline void gdma_ll_tx_set_priority(gdma_dev_t *dev, uint32_t channel, uint32_t prio) in gdma_ll_tx_set_priority() argument
460 dev->channel[channel].out.out_pri.tx_pri = prio; in gdma_ll_tx_set_priority()
/hal_espressif-3.4.0/components/hal/esp32h2/include/hal/
Dgdma_ll.h249 static inline void gdma_ll_rx_set_priority(gdma_dev_t *dev, uint32_t channel, uint32_t prio) in gdma_ll_rx_set_priority() argument
251 dev->channel[channel].in.in_pri.rx_pri = prio; in gdma_ll_rx_set_priority()
452 static inline void gdma_ll_tx_set_priority(gdma_dev_t *dev, uint32_t channel, uint32_t prio) in gdma_ll_tx_set_priority() argument
454 dev->channel[channel].out.out_pri.tx_pri = prio; in gdma_ll_tx_set_priority()
/hal_espressif-3.4.0/components/hal/esp32s3/include/hal/
Dgdma_ll.h301 static inline void gdma_ll_rx_set_priority(gdma_dev_t *dev, uint32_t channel, uint32_t prio) in gdma_ll_rx_set_priority() argument
303 dev->channel[channel].in.pri.rx_pri = prio; in gdma_ll_rx_set_priority()
528 static inline void gdma_ll_tx_set_priority(gdma_dev_t *dev, uint32_t channel, uint32_t prio) in gdma_ll_tx_set_priority() argument
530 dev->channel[channel].out.pri.tx_pri = prio; in gdma_ll_tx_set_priority()
/hal_espressif-3.4.0/components/esp_rom/include/esp32/rom/
Dets_sys.h114 void ets_task(ETSTask task, uint8_t prio, ETSEvent *queue, uint8_t qlen);
128 ETS_STATUS ets_post(uint8_t prio, ETSSignal sig, ETSParam par);
/hal_espressif-3.4.0/components/esp_rom/include/esp32s2/rom/
Dets_sys.h107 void ets_task(ETSTask task, uint8_t prio, ETSEvent *queue, uint8_t qlen);
121 ETS_STATUS ets_post(uint8_t prio, ETSSignal sig, ETSParam par);
/hal_espressif-3.4.0/components/esp_rom/include/esp32s3/rom/
Dets_sys.h105 void ets_task(ETSTask task, uint8_t prio, ETSEvent *queue, uint8_t qlen);
119 ETS_STATUS ets_post(uint8_t prio, ETSSignal sig, ETSParam par);
/hal_espressif-3.4.0/components/esp_wifi/esp32/
Desp_adapter.c388 …*task_func, const char *name, uint32_t stack_depth, void *param, uint32_t prio, void *task_handle,… in task_create_pinned_to_core_wrapper() argument
390 …return (uint32_t)xTaskCreatePinnedToCore(task_func, name, stack_depth, param, prio, task_handle, (… in task_create_pinned_to_core_wrapper()
393 … *task_func, const char *name, uint32_t stack_depth, void *param, uint32_t prio, void *task_handle) in task_create_wrapper() argument
395 return (uint32_t)xTaskCreate(task_func, name, stack_depth, param, prio, task_handle); in task_create_wrapper()
/hal_espressif-3.4.0/components/esp_wifi/esp32c3/
Desp_adapter.c324 …*task_func, const char *name, uint32_t stack_depth, void *param, uint32_t prio, void *task_handle,… in task_create_pinned_to_core_wrapper() argument
326 …return (uint32_t)xTaskCreatePinnedToCore(task_func, name, stack_depth, param, prio, task_handle, (… in task_create_pinned_to_core_wrapper()
329 … *task_func, const char *name, uint32_t stack_depth, void *param, uint32_t prio, void *task_handle) in task_create_wrapper() argument
331 return (uint32_t)xTaskCreate(task_func, name, stack_depth, param, prio, task_handle); in task_create_wrapper()
/hal_espressif-3.4.0/components/esp_wifi/esp32s2/
Desp_adapter.c370 …*task_func, const char *name, uint32_t stack_depth, void *param, uint32_t prio, void *task_handle,… in task_create_pinned_to_core_wrapper() argument
372 …return (uint32_t)xTaskCreatePinnedToCore(task_func, name, stack_depth, param, prio, task_handle, (… in task_create_pinned_to_core_wrapper()
375 … *task_func, const char *name, uint32_t stack_depth, void *param, uint32_t prio, void *task_handle) in task_create_wrapper() argument
377 return (uint32_t)xTaskCreate(task_func, name, stack_depth, param, prio, task_handle); in task_create_wrapper()
/hal_espressif-3.4.0/components/esp_wifi/esp32s3/
Desp_adapter.c378 …*task_func, const char *name, uint32_t stack_depth, void *param, uint32_t prio, void *task_handle,… in task_create_pinned_to_core_wrapper() argument
380 …return (uint32_t)xTaskCreatePinnedToCore(task_func, name, stack_depth, param, prio, task_handle, (… in task_create_pinned_to_core_wrapper()
383 … *task_func, const char *name, uint32_t stack_depth, void *param, uint32_t prio, void *task_handle) in task_create_wrapper() argument
385 return (uint32_t)xTaskCreate(task_func, name, stack_depth, param, prio, task_handle); in task_create_wrapper()
/hal_espressif-3.4.0/components/pthread/include/
Desp_pthread.h31 size_t prio; ///< The thread's priority member
/hal_espressif-3.4.0/zephyr/esp32/src/wifi/
Desp_wifi_adapter.c346 …*task_func, const char *name, uint32_t stack_depth, void *param, uint32_t prio, void *task_handle,… in task_create_pinned_to_core_wrapper() argument
350 prio, K_INHERIT_PERMS, K_NO_WAIT); in task_create_pinned_to_core_wrapper()
358 … *task_func, const char *name, uint32_t stack_depth, void *param, uint32_t prio, void *task_handle) in task_create_wrapper() argument
362 prio, K_INHERIT_PERMS, K_NO_WAIT); in task_create_wrapper()
/hal_espressif-3.4.0/zephyr/esp32s2/src/wifi/
Desp_wifi_adapter.c344 …*task_func, const char *name, uint32_t stack_depth, void *param, uint32_t prio, void *task_handle,… in task_create_pinned_to_core_wrapper() argument
348 prio, K_INHERIT_PERMS, K_NO_WAIT); in task_create_pinned_to_core_wrapper()
356 … *task_func, const char *name, uint32_t stack_depth, void *param, uint32_t prio, void *task_handle) in task_create_wrapper() argument
360 prio, K_INHERIT_PERMS, K_NO_WAIT); in task_create_wrapper()

12