Lines Matching refs:osThreadId_t
82 osThreadId_t get_cmsis_thread_id(k_tid_t tid) in get_cmsis_thread_id()
92 return (osThreadId_t)itr; in get_cmsis_thread_id()
103 osThreadId_t osThreadNew(osThreadFunc_t threadfunc, void *arg, in osThreadNew()
214 return (osThreadId_t)tid; in osThreadNew()
220 const char *osThreadGetName(osThreadId_t thread_id) in osThreadGetName()
243 osThreadId_t osThreadGetId(void) in osThreadGetId()
253 osPriority_t osThreadGetPriority(osThreadId_t thread_id) in osThreadGetPriority()
271 osStatus_t osThreadSetPriority(osThreadId_t thread_id, osPriority_t priority) in osThreadSetPriority()
297 osThreadState_t osThreadGetState(osThreadId_t thread_id) in osThreadGetState()
350 uint32_t osThreadGetStackSize(osThreadId_t thread_id) in osThreadGetStackSize()
365 uint32_t osThreadGetStackSpace(osThreadId_t thread_id) in osThreadGetStackSpace()
386 osStatus_t osThreadSuspend(osThreadId_t thread_id) in osThreadSuspend()
410 osStatus_t osThreadResume(osThreadId_t thread_id) in osThreadResume()
435 osStatus_t osThreadDetach(osThreadId_t thread_id) in osThreadDetach()
464 osStatus_t osThreadJoin(osThreadId_t thread_id) in osThreadJoin()
522 osStatus_t osThreadTerminate(osThreadId_t thread_id) in osThreadTerminate()
566 uint32_t osThreadEnumerate(osThreadId_t *thread_array, uint32_t array_items) in osThreadEnumerate()
570 osThreadId_t tid; in osThreadEnumerate()