| /Zephyr-latest/subsys/portability/cmsis_rtos_v2/ | 
| D | thread.c | 65 void *is_cmsis_rtos_v2_thread(void *thread_id)  in is_cmsis_rtos_v2_thread()209 const char *osThreadGetName(osThreadId_t thread_id)  in osThreadGetName()
 241 osPriority_t osThreadGetPriority(osThreadId_t thread_id)  in osThreadGetPriority()
 258 osStatus_t osThreadSetPriority(osThreadId_t thread_id, osPriority_t priority)  in osThreadSetPriority()
 283 osThreadState_t osThreadGetState(osThreadId_t thread_id)  in osThreadGetState()
 335 uint32_t osThreadGetStackSize(osThreadId_t thread_id)  in osThreadGetStackSize()
 350 uint32_t osThreadGetStackSpace(osThreadId_t thread_id)  in osThreadGetStackSpace()
 371 osStatus_t osThreadSuspend(osThreadId_t thread_id)  in osThreadSuspend()
 395 osStatus_t osThreadResume(osThreadId_t thread_id)  in osThreadResume()
 420 osStatus_t osThreadDetach(osThreadId_t thread_id)  in osThreadDetach()
 [all …]
 
 | 
| D | thread_flags.c | 16 uint32_t osThreadFlagsSet(osThreadId_t thread_id, uint32_t flags)  in osThreadFlagsSet()
 | 
| /Zephyr-latest/subsys/portability/cmsis_rtos_v1/ | 
| D | cmsis_signal.c | 12 void *k_thread_other_custom_data_get(struct k_thread *thread_id)  in k_thread_other_custom_data_get()20 int32_t osSignalSet(osThreadId thread_id, int32_t signals)  in osSignalSet()
 46 int32_t osSignalClear(osThreadId thread_id, int32_t signals)  in osSignalClear()
 
 | 
| D | cmsis_thread.c | 152 osPriority osThreadGetPriority(osThreadId thread_id)  in osThreadGetPriority()168 osStatus osThreadSetPriority(osThreadId thread_id, osPriority priority)  in osThreadSetPriority()
 195 osStatus osThreadTerminate(osThreadId thread_id)  in osThreadTerminate()
 
 | 
| D | cmsis_msgq.c | 14 				osThreadId thread_id)  in osMessageCreate()
 | 
| D | cmsis_mailq.c | 14 osMailQId osMailCreate(const osMailQDef_t *queue_def, osThreadId thread_id)  in osMailCreate()
 | 
| /Zephyr-latest/subsys/shell/modules/kernel_service/thread/ | 
| D | kill.c | 17 	k_tid_t thread_id = (k_tid_t)strtoul(argv[1], NULL, 16);  in cmd_kernel_thread_kill()  local
 | 
| D | resume.c | 17 	k_tid_t thread_id = (k_tid_t)strtoul(argv[1], NULL, 16);  in cmd_kernel_thread_resume()  local
 | 
| D | suspend.c | 17 	k_tid_t thread_id = (k_tid_t)strtoul(argv[1], NULL, 16);  in cmd_kernel_thread_suspend()  local
 | 
| /Zephyr-latest/tests/benchmarks/thread_metric/src/ | 
| D | tm_porting_layer_zephyr.c | 64 int tm_thread_create(int thread_id, int priority, void (*entry_function)(void *, void *, void *))  in tm_thread_create()84 int tm_thread_resume(int thread_id)  in tm_thread_resume()
 95 int tm_thread_suspend(int thread_id)  in tm_thread_suspend()
 
 | 
| /Zephyr-latest/tests/kernel/sched/wraparound/src/ | 
| D | main.c | 9 static k_tid_t thread_id;  variable
 | 
| /Zephyr-latest/tests/subsys/portability/cmsis_rtos_v1/src/ | 
| D | signal.c | 39 void test_multiple_signal_flags(void const *thread_id)  in test_multiple_signal_flags()176 void test_signal_from_isr(void const *thread_id)  in test_signal_from_isr()
 
 | 
| /Zephyr-latest/subsys/tracing/ctf/ | 
| D | ctf_top.h | 195 static inline void ctf_top_thread_switched_out(uint32_t thread_id,  in ctf_top_thread_switched_out()202 static inline void ctf_top_thread_switched_in(uint32_t thread_id,  in ctf_top_thread_switched_in()
 209 static inline void ctf_top_thread_priority_set(uint32_t thread_id, int8_t prio,  in ctf_top_thread_priority_set()
 216 static inline void ctf_top_thread_create(uint32_t thread_id, int8_t prio,  in ctf_top_thread_create()
 223 static inline void ctf_top_thread_abort(uint32_t thread_id,  in ctf_top_thread_abort()
 230 static inline void ctf_top_thread_suspend(uint32_t thread_id,  in ctf_top_thread_suspend()
 237 static inline void ctf_top_thread_resume(uint32_t thread_id,  in ctf_top_thread_resume()
 244 static inline void ctf_top_thread_ready(uint32_t thread_id,  in ctf_top_thread_ready()
 251 static inline void ctf_top_thread_pend(uint32_t thread_id,  in ctf_top_thread_pend()
 258 static inline void ctf_top_thread_info(uint32_t thread_id,  in ctf_top_thread_info()
 [all …]
 
 | 
| /Zephyr-latest/tests/lib/multi_heap/src/ | 
| D | test_mheap_concept.c | 79 	int thread_id = POINTER_TO_INT(p1);  in tmheap_threadsafe_handler()  local
 | 
| /Zephyr-latest/tests/subsys/portability/cmsis_rtos_v2/src/ | 
| D | thread_flags.c | 136 void test_thread_flags_from_isr(void *thread_id)  in test_thread_flags_from_isr()
 | 
| D | thread_apis.c | 42 	osThreadId_t thread_id;  in thread1()  local
 | 
| /Zephyr-latest/include/zephyr/sys/internal/ | 
| D | kobject_internal.h | 37 	unsigned int thread_id;  member
 | 
| /Zephyr-latest/samples/sensor/stream_fifo/src/ | 
| D | main.c | 54 static struct k_thread thread_id[NUM_SENSORS];  variable
 | 
| /Zephyr-latest/tests/kernel/threads/thread_apis/src/ | 
| D | main.c | 230 static void umode_entry(void *thread_id, void *p2, void *p3)  in umode_entry()
 | 
| /Zephyr-latest/kernel/ | 
| D | thread.c | 226 const char *k_thread_state_str(k_tid_t thread_id, char *buf, size_t buf_size)  in k_thread_state_str()
 | 
| /Zephyr-latest/tests/kernel/smp/src/ | 
| D | main.c | 653 	k_tid_t thread_id;  in ZTEST()  local
 |