/hal_espressif-3.7.0/components/heap/ |
D | heap_private.h | 52 for (int prio = 0; prio < SOC_MEMORY_TYPE_NO_PRIOS; prio++) { in get_all_caps() local 53 all_caps |= heap->caps[prio]; in get_all_caps()
|
D | heap_caps.c | 149 for (int prio = 0; prio < SOC_MEMORY_TYPE_NO_PRIOS; prio++) { in heap_caps_malloc_base() local 156 if ((heap->caps[prio] & caps) != 0) { in heap_caps_malloc_base() 683 for (int prio = 0; prio < SOC_MEMORY_TYPE_NO_PRIOS; prio++) { in heap_caps_aligned_alloc() local 690 if ((heap->caps[prio] & caps) != 0) { in heap_caps_aligned_alloc()
|
/hal_espressif-3.7.0/components/esp_hw_support/test_apps/esp_hw_support_unity_tests/main/ |
D | test_fp.c | 197 const int prio = UNITY_FREERTOS_PRIORITY + 1; variable 198 TEST_ASSERT(xTaskCreatePinnedToCore(tskTestFP, "tsk1", 2048, &state, prio, NULL, 0)); 199 TEST_ASSERT(xTaskCreatePinnedToCore(tskTestFP, "tsk2", 2048, &state, prio, NULL, 0)); 200 …TEST_ASSERT(xTaskCreatePinnedToCore(tskTestFP, "tsk3", 2048, &state, prio, NULL, portNUM_PROCESSOR… 201 TEST_ASSERT(xTaskCreatePinnedToCore(tskTestFP, "tsk4", 2048, &state, prio, NULL, 0));
|
/hal_espressif-3.7.0/components/hal/esp32c2/include/hal/ |
D | gdma_ll.h | 244 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 246 dev->channel[channel].in.in_pri.rx_pri = prio; in gdma_ll_rx_set_priority() 457 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 459 dev->channel[channel].out.out_pri.tx_pri = prio; in gdma_ll_tx_set_priority()
|
/hal_espressif-3.7.0/components/hal/esp32c3/include/hal/ |
D | gdma_ll.h | 244 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 246 dev->channel[channel].in.in_pri.rx_pri = prio; in gdma_ll_rx_set_priority() 457 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 459 dev->channel[channel].out.out_pri.tx_pri = prio; in gdma_ll_tx_set_priority()
|
/hal_espressif-3.7.0/components/esp_system/ |
D | system_init_fn.txt | 10 # prio: function_name in path/to/source_file on affinity_expression 12 # prio: priority value (higher value means function is executed later)
|
/hal_espressif-3.7.0/components/esp_rom/include/esp32/rom/ |
D | ets_sys.h | 103 void ets_task(ETSTask task, uint8_t prio, ETSEvent *queue, uint8_t qlen); 117 ETS_STATUS ets_post(uint8_t prio, ETSSignal sig, ETSParam par);
|
/hal_espressif-3.7.0/components/hal/esp32s3/include/hal/ |
D | gdma_ll.h | 291 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 293 dev->channel[channel].in.pri.rx_pri = prio; in gdma_ll_rx_set_priority() 530 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 532 dev->channel[channel].out.pri.tx_pri = prio; in gdma_ll_tx_set_priority()
|
/hal_espressif-3.7.0/components/hal/esp32h2/include/hal/ |
D | gdma_ll.h | 289 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 291 dev->channel[channel].in.in_pri.rx_pri = prio; in gdma_ll_rx_set_priority() 512 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 514 dev->channel[channel].out.out_pri.tx_pri = prio; in gdma_ll_tx_set_priority()
|
/hal_espressif-3.7.0/components/esp_wifi/esp32/ |
D | esp_adapter.c | 302 …*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 304 …return (uint32_t)xTaskCreatePinnedToCore(task_func, name, stack_depth, param, prio, task_handle, (… in task_create_pinned_to_core_wrapper() 307 … *task_func, const char *name, uint32_t stack_depth, void *param, uint32_t prio, void *task_handle) in task_create_wrapper() argument 309 return (uint32_t)xTaskCreate(task_func, name, stack_depth, param, prio, task_handle); in task_create_wrapper()
|
/hal_espressif-3.7.0/components/esp_wifi/esp32c2/ |
D | esp_adapter.c | 245 …*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 247 …return (uint32_t)xTaskCreatePinnedToCore(task_func, name, stack_depth, param, prio, task_handle, (… in task_create_pinned_to_core_wrapper() 250 … *task_func, const char *name, uint32_t stack_depth, void *param, uint32_t prio, void *task_handle) in task_create_wrapper() argument 252 return (uint32_t)xTaskCreate(task_func, name, stack_depth, param, prio, task_handle); in task_create_wrapper()
|
/hal_espressif-3.7.0/components/esp_wifi/esp32s2/ |
D | esp_adapter.c | 293 …*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 295 …return (uint32_t)xTaskCreatePinnedToCore(task_func, name, stack_depth, param, prio, task_handle, (… in task_create_pinned_to_core_wrapper() 298 … *task_func, const char *name, uint32_t stack_depth, void *param, uint32_t prio, void *task_handle) in task_create_wrapper() argument 300 return (uint32_t)xTaskCreate(task_func, name, stack_depth, param, prio, task_handle); in task_create_wrapper()
|
/hal_espressif-3.7.0/components/hal/esp32c6/include/hal/ |
D | gdma_ll.h | 289 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 291 dev->channel[channel].in.in_pri.rx_pri = prio; in gdma_ll_rx_set_priority() 512 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 514 dev->channel[channel].out.out_pri.tx_pri = prio; in gdma_ll_tx_set_priority()
|
/hal_espressif-3.7.0/components/esp_wifi/esp32c6/ |
D | esp_adapter.c | 251 …*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 253 …return (uint32_t)xTaskCreatePinnedToCore(task_func, name, stack_depth, param, prio, task_handle, (… in task_create_pinned_to_core_wrapper() 256 … *task_func, const char *name, uint32_t stack_depth, void *param, uint32_t prio, void *task_handle) in task_create_wrapper() argument 258 return (uint32_t)xTaskCreate(task_func, name, stack_depth, param, prio, task_handle); in task_create_wrapper()
|
/hal_espressif-3.7.0/components/esp_wifi/esp32c3/ |
D | esp_adapter.c | 248 …*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 250 …return (uint32_t)xTaskCreatePinnedToCore(task_func, name, stack_depth, param, prio, task_handle, (… in task_create_pinned_to_core_wrapper() 253 … *task_func, const char *name, uint32_t stack_depth, void *param, uint32_t prio, void *task_handle) in task_create_wrapper() argument 255 return (uint32_t)xTaskCreate(task_func, name, stack_depth, param, prio, task_handle); in task_create_wrapper()
|
/hal_espressif-3.7.0/components/esp_wifi/esp32s3/ |
D | esp_adapter.c | 296 …*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 298 …return (uint32_t)xTaskCreatePinnedToCore(task_func, name, stack_depth, param, prio, task_handle, (… in task_create_pinned_to_core_wrapper() 301 … *task_func, const char *name, uint32_t stack_depth, void *param, uint32_t prio, void *task_handle) in task_create_wrapper() argument 303 return (uint32_t)xTaskCreate(task_func, name, stack_depth, param, prio, task_handle); in task_create_wrapper()
|
/hal_espressif-3.7.0/components/esp_wifi/include/esp_private/ |
D | wifi_os_adapter.h | 62 …*task_func, const char *name, uint32_t stack_depth, void *param, uint32_t prio, void *task_handle,… 63 …*task_func, const char *name, uint32_t stack_depth, void *param, uint32_t prio, void *task_handle);
|
/hal_espressif-3.7.0/zephyr/esp32/src/wifi/ |
D | esp_wifi_adapter.c | 373 …*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 prio, K_INHERIT_PERMS, K_NO_WAIT); in task_create_pinned_to_core_wrapper() 388 … *task_func, const char *name, uint32_t stack_depth, void *param, uint32_t prio, void *task_handle) in task_create_wrapper() argument 395 prio, K_INHERIT_PERMS, K_NO_WAIT); in task_create_wrapper()
|
/hal_espressif-3.7.0/zephyr/esp32s2/src/wifi/ |
D | esp_wifi_adapter.c | 369 …*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 376 prio, K_INHERIT_PERMS, K_NO_WAIT); in task_create_pinned_to_core_wrapper() 384 … *task_func, const char *name, uint32_t stack_depth, void *param, uint32_t prio, void *task_handle) in task_create_wrapper() argument 391 prio, K_INHERIT_PERMS, K_NO_WAIT); in task_create_wrapper()
|
/hal_espressif-3.7.0/zephyr/esp32s3/src/wifi/ |
D | esp_wifi_adapter.c | 396 …*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 400 prio, K_INHERIT_PERMS, K_NO_WAIT); in task_create_pinned_to_core_wrapper() 408 … *task_func, const char *name, uint32_t stack_depth, void *param, uint32_t prio, void *task_handle) in task_create_wrapper() argument 412 prio, K_INHERIT_PERMS, K_NO_WAIT); in task_create_wrapper()
|
/hal_espressif-3.7.0/zephyr/esp32c3/src/wifi/ |
D | esp_wifi_adapter.c | 384 …*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 391 prio, K_INHERIT_PERMS, K_NO_WAIT); in task_create_pinned_to_core_wrapper() 399 … *task_func, const char *name, uint32_t stack_depth, void *param, uint32_t prio, void *task_handle) in task_create_wrapper() argument 406 prio, K_INHERIT_PERMS, K_NO_WAIT); in task_create_wrapper()
|
/hal_espressif-3.7.0/components/bt/controller/esp32c2/ |
D | bt.c | 102 …*task_func, const char *name, uint32_t stack_depth, void *param, uint32_t prio, void *task_handle,… 159 …*task_func, const char *name, uint32_t stack_depth, void *param, uint32_t prio, void *task_handle,… 347 …*task_func, const char *name, uint32_t stack_depth, void *param, uint32_t prio, void *task_handle,… in task_create_wrapper() argument 349 …return (uint32_t)xTaskCreatePinnedToCore(task_func, name, stack_depth, param, prio, task_handle, (… in task_create_wrapper()
|
/hal_espressif-3.7.0/components/bt/controller/esp32c6/ |
D | bt.c | 102 uint32_t prio, void *task_handle, uint32_t core_id); 169 void *param, uint32_t prio, void *task_handle, uint32_t core_id); 355 void *param, uint32_t prio, void *task_handle, uint32_t core_id) in task_create_wrapper() argument 357 return (uint32_t)xTaskCreatePinnedToCore(task_func, name, stack_depth, param, prio, task_handle, in task_create_wrapper()
|
/hal_espressif-3.7.0/components/bt/controller/esp32h2/ |
D | bt.c | 99 uint32_t prio, void *task_handle, uint32_t core_id); 165 void *param, uint32_t prio, void *task_handle, uint32_t core_id); 347 void *param, uint32_t prio, void *task_handle, uint32_t core_id) in task_create_wrapper() argument 349 return (uint32_t)xTaskCreatePinnedToCore(task_func, name, stack_depth, param, prio, task_handle, in task_create_wrapper()
|
/hal_espressif-3.7.0/zephyr/esp32/src/bt/ |
D | esp_bt_adapter.c | 118 uint32_t prio, void *task_handle, uint32_t core_id); 232 …*task_func, const char *name, uint32_t stack_depth, void *param, uint32_t prio, void *task_handle,… 639 …*task_func, const char *name, uint32_t stack_depth, void *param, uint32_t prio, void *task_handle,… in task_create_wrapper() argument 643 K_PRIO_COOP(prio), K_INHERIT_PERMS, K_NO_WAIT); in task_create_wrapper()
|