Searched refs:thread (Results 1 – 12 of 12) sorted by relevance
| /modules/lvgl/ |
| A D | lvgl_zephyr_osal.c | 18 static void thread_entry(void *thread, void *cb, void *user_data); 25 thread->stack = k_thread_stack_alloc(stack_size, 0); in lv_thread_init() 26 if (thread->stack == NULL) { in lv_thread_init() 33 thread->tid = k_thread_create(&thread->thread, thread->stack, stack_size, thread_entry, in lv_thread_init() 34 thread, callback, user_data, thread_priority, 0, K_NO_WAIT); in lv_thread_init() 36 k_thread_name_set(thread->tid, name); in lv_thread_init() 41 lv_result_t lv_thread_delete(lv_thread_t *thread) in lv_thread_delete() argument 45 k_thread_abort(thread->tid); in lv_thread_delete() 46 ret = k_thread_stack_free(thread->stack); in lv_thread_delete() 150 void thread_entry(void *thread, void *cb, void *user_data) in thread_entry() argument [all …]
|
| A D | Kconfig | 107 bool "Flush LVGL frames in a separate thread" 109 Flush LVGL frames in a separate thread, while the primary thread 116 int "Stack size for flushing thread" 119 Stack size for LVGL flush thread, which will call display_write 122 int "LVGL flush thread priority" 125 Priority of LVGL flush thread. 164 LVGL API functions are not thread-safe, provide functions for locking and unlocking.
|
| /modules/hal_infineon/abstraction-rtos/source/COMPONENT_ZEPHYR/ |
| A D | cyabs_rtos_zephyr.c | 86 k_free((*thread)->memptr); in free_thead_obj() 90 k_free(*thread); in free_thead_obj() 133 (*thread)->memptr = NULL; in cy_rtos_create_thread() 156 free_thead_obj(thread); in cy_rtos_create_thread() 185 if (thread == NULL) { in cy_rtos_terminate_thread() 195 k_free((*thread)->memptr); in cy_rtos_terminate_thread() 259 if (thread == NULL) { in cy_rtos_join_thread() 262 if (*thread != NULL) { in cy_rtos_join_thread() 269 free_thead_obj(thread); in cy_rtos_join_thread() 281 if (thread == NULL) { in cy_rtos_get_thread_handle() [all …]
|
| /modules/nrf_wifi/os/ |
| A D | work.c | 85 k_thread_name_set(&zep_wifi_bh_q.thread, "nrf70_bh_wq"); in workqueue_init() 95 k_thread_name_set(&zep_wifi_intr_q.thread, "nrf70_intr_wq"); in workqueue_init() 105 k_thread_name_set(&zep_wifi_tx_done_q.thread, "nrf70_tx_done_wq"); in workqueue_init() 117 k_thread_name_set(&zep_wifi_rx_q.thread, "nrf70_rx_wq"); in workqueue_init()
|
| /modules/canopennode/ |
| A D | Kconfig | 80 bool "CANopen SYNC thread" 83 Enable internal thread for processing CANopen SYNC RPDOs and 88 int "Stack size for the CANopen SYNC thread" 92 Size of the stack used for the internal thread which 96 int "Priority for CANopen SYNC thread" 101 Priority level of the internal thread which processes
|
| A D | CO_driver.c | 546 k_thread_name_set(&canopen_tx_workq.thread, "canopen_tx_workq"); in canopen_init()
|
| /modules/lvgl/include/ |
| A D | lvgl_zephyr_osal.h | 19 struct k_thread thread; member
|
| /modules/thrift/ |
| A D | CMakeLists.txt | 28 # Replace with upstream equivalents when Zephyr's std::thread, etc, are fixed 34 # Replace with upstream equivalents when Zephyr's std::thread, etc, are fixed
|
| /modules/openthread/ |
| A D | Kconfig | 115 bool "Set Openthread thread to be preemptive" 118 int "OpenThread thread priority" 123 int "OpenThread thread stack size" 371 rsource "Kconfig.thread"
|
| A D | openthread.c | 124 return (k_tid_t)&openthread_work_q.thread; in openthread_thread_id_get()
|
| /modules/hostap/ |
| A D | Kconfig | 56 int "Stack size for wpa_supplicant thread"
|
| /modules/openthread/platform/ |
| A D | radio.c | 363 k_thread_name_set(&ot_work_q.thread, "ot_radio_workq"); in platformRadioInit()
|
Completed in 30 milliseconds