Lines Matching full:thread_id

66 void *is_cmsis_rtos_v2_thread(void *thread_id)  in is_cmsis_rtos_v2_thread()  argument
74 if ((void *)itr == thread_id) { in is_cmsis_rtos_v2_thread()
220 const char *osThreadGetName(osThreadId_t thread_id) in osThreadGetName() argument
224 if (k_is_in_isr() || (thread_id == NULL)) { in osThreadGetName()
227 if (is_cmsis_rtos_v2_thread(thread_id) == NULL) { in osThreadGetName()
231 (struct cv2_thread *)thread_id; in osThreadGetName()
253 osPriority_t osThreadGetPriority(osThreadId_t thread_id) in osThreadGetPriority() argument
255 struct cv2_thread *tid = (struct cv2_thread *)thread_id; in osThreadGetPriority()
271 osStatus_t osThreadSetPriority(osThreadId_t thread_id, osPriority_t priority) in osThreadSetPriority() argument
273 struct cv2_thread *tid = (struct cv2_thread *)thread_id; in osThreadSetPriority()
297 osThreadState_t osThreadGetState(osThreadId_t thread_id) in osThreadGetState() argument
299 struct cv2_thread *tid = (struct cv2_thread *)thread_id; in osThreadGetState()
327 if (osThreadGetId() == thread_id) { in osThreadGetState()
350 uint32_t osThreadGetStackSize(osThreadId_t thread_id) in osThreadGetStackSize() argument
352 struct cv2_thread *tid = (struct cv2_thread *)thread_id; in osThreadGetStackSize()
365 uint32_t osThreadGetStackSpace(osThreadId_t thread_id) in osThreadGetStackSpace() argument
367 struct cv2_thread *tid = (struct cv2_thread *)thread_id; in osThreadGetStackSpace()
386 osStatus_t osThreadSuspend(osThreadId_t thread_id) in osThreadSuspend() argument
388 struct cv2_thread *tid = (struct cv2_thread *)thread_id; in osThreadSuspend()
410 osStatus_t osThreadResume(osThreadId_t thread_id) in osThreadResume() argument
412 struct cv2_thread *tid = (struct cv2_thread *)thread_id; in osThreadResume()
435 osStatus_t osThreadDetach(osThreadId_t thread_id) in osThreadDetach() argument
437 struct cv2_thread *tid = (struct cv2_thread *)thread_id; in osThreadDetach()
464 osStatus_t osThreadJoin(osThreadId_t thread_id) in osThreadJoin() argument
466 struct cv2_thread *tid = (struct cv2_thread *)thread_id; in osThreadJoin()
522 osStatus_t osThreadTerminate(osThreadId_t thread_id) in osThreadTerminate() argument
524 struct cv2_thread *tid = (struct cv2_thread *)thread_id; in osThreadTerminate()