Home
last modified time | relevance | path

Searched refs:osStatus_t (Results 1 – 17 of 17) sorted by relevance

/Zephyr-latest/include/zephyr/portability/
Dcmsis_os2.h204 } osStatus_t; typedef
306 osStatus_t osKernelInitialize(void);
313 osStatus_t osKernelGetInfo(osVersion_t *version, char *id_buf, uint32_t id_size);
321 osStatus_t osKernelStart(void);
398 osStatus_t osThreadSetPriority(osThreadId_t thread_id, osPriority_t priority);
407 osStatus_t osThreadYield(void);
412 osStatus_t osThreadSuspend(osThreadId_t thread_id);
417 osStatus_t osThreadResume(osThreadId_t thread_id);
422 osStatus_t osThreadDetach(osThreadId_t thread_id);
427 osStatus_t osThreadJoin(osThreadId_t thread_id);
[all …]
/Zephyr-latest/tests/subsys/portability/cmsis_rtos_v2/src/
Dthread_apis.c41 osStatus_t status; in thread1()
158 osStatus_t status; in thread3()
197 osStatus_t status; in thread_prior_common()
247 osStatus_t status; in thread4()
261 osStatus_t status; in ZTEST()
301 osStatus_t status; in ZTEST()
317 osStatus_t status; in thread6()
330 osStatus_t status; in ZTEST()
352 osStatus_t status; in ZTEST()
412 osStatus_t status; in ZTEST()
[all …]
Dmutex.c22 osStatus_t status; in cleanup_max_mutex()
53 osStatus_t status; in ZTEST()
106 osStatus_t status; in tThread_entry_lock_timeout()
152 osStatus_t status; in ZTEST()
Dmsgq.c29 osStatus_t status; in send_msg_thread()
85 osStatus_t status; in message_recv()
146 osStatus_t status; in ZTEST()
197 osStatus_t status; in ZTEST()
Dkernel.c13 osStatus_t status_val;
24 osStatus_t status; in get_version_check()
Dsemaphore.c18 osStatus_t status; in thread_sema()
62 osStatus_t status; in ZTEST()
Dtimer.c42 osStatus_t status; in ZTEST()
114 osStatus_t status; in ZTEST()
Dmempool.c36 osStatus_t status; in mempool_common_tests()
/Zephyr-latest/samples/subsys/portability/cmsis_rtos_v2/timer_synchronization/src/
Dmain.c42 osStatus_t status; in read_msg_callback()
55 osStatus_t status; in send_msg_thread()
69 osStatus_t status; in main()
/Zephyr-latest/subsys/portability/cmsis_rtos_v2/
Dkernel.c17 osStatus_t osKernelGetInfo(osVersion_t *version, char *id_buf, uint32_t id_size) in osKernelGetInfo()
121 osStatus_t osDelay(uint32_t ticks) in osDelay()
135 osStatus_t osDelayUntil(uint32_t ticks) in osDelayUntil()
Dmutex.c66 osStatus_t osMutexAcquire(osMutexId_t mutex_id, uint32_t timeout) in osMutexAcquire()
99 osStatus_t osMutexRelease(osMutexId_t mutex_id) in osMutexRelease()
121 osStatus_t osMutexDelete(osMutexId_t mutex_id) in osMutexDelete()
Dsemaphore.c62 osStatus_t osSemaphoreAcquire(osSemaphoreId_t semaphore_id, uint32_t timeout) in osSemaphoreAcquire()
107 osStatus_t osSemaphoreRelease(osSemaphoreId_t semaphore_id) in osSemaphoreRelease()
128 osStatus_t osSemaphoreDelete(osSemaphoreId_t semaphore_id) in osSemaphoreDelete()
Dthread.c258 osStatus_t osThreadSetPriority(osThreadId_t thread_id, osPriority_t priority) in osThreadSetPriority()
322 osStatus_t osThreadYield(void) in osThreadYield()
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()
447 osStatus_t osThreadJoin(osThreadId_t thread_id) in osThreadJoin()
490 osStatus_t osThreadTerminate(osThreadId_t thread_id) in osThreadTerminate()
Dmsgq.c94 osStatus_t osMessageQueuePut(osMessageQueueId_t msgq_id, const void *msg_ptr, uint8_t msg_prio, in osMessageQueuePut()
131 osStatus_t osMessageQueueGet(osMessageQueueId_t msgq_id, void *msg_ptr, uint8_t *msg_prio, in osMessageQueueGet()
240 osStatus_t osMessageQueueReset(osMessageQueueId_t msgq_id) in osMessageQueueReset()
265 osStatus_t osMessageQueueDelete(osMessageQueueId_t msgq_id) in osMessageQueueDelete()
Dtimer.c82 osStatus_t osTimerStart(osTimerId_t timer_id, uint32_t ticks) in osTimerStart()
107 osStatus_t osTimerStop(osTimerId_t timer_id) in osTimerStop()
131 osStatus_t osTimerDelete(osTimerId_t timer_id) in osTimerDelete()
Dmempool.c135 osStatus_t osMemoryPoolFree(osMemoryPoolId_t mp_id, void *block) in osMemoryPoolFree()
226 osStatus_t osMemoryPoolDelete(osMemoryPoolId_t mp_id) in osMemoryPoolDelete()
Devent_flags.c239 osStatus_t osEventFlagsDelete(osEventFlagsId_t ef_id) in osEventFlagsDelete()