Lines Matching defs:osStatus_t
254 } osStatus_t;
356 osStatus_t osKernelInitialize (void);
363 osStatus_t osKernelGetInfo (osVersion_t *version, char *id_buf, uint32_t id_size);
371 osStatus_t osKernelStart (void);
397 osStatus_t osKernelProtect (uint32_t safety_class);
403 osStatus_t osKernelDestroyClass (uint32_t safety_class, uint32_t mode);
469 osStatus_t osThreadSetPriority (osThreadId_t thread_id, osPriority_t priority);
478 osStatus_t osThreadYield (void);
483 osStatus_t osThreadSuspend (osThreadId_t thread_id);
488 osStatus_t osThreadResume (osThreadId_t thread_id);
493 osStatus_t osThreadDetach (osThreadId_t thread_id);
498 osStatus_t osThreadJoin (osThreadId_t thread_id);
506 osStatus_t osThreadTerminate (osThreadId_t thread_id);
511 osStatus_t osThreadFeedWatchdog (uint32_t ticks);
515 osStatus_t osThreadProtectPrivileged (void);
521 osStatus_t osThreadSuspendClass (uint32_t safety_class, uint32_t mode);
527 osStatus_t osThreadResumeClass (uint32_t safety_class, uint32_t mode);
532 osStatus_t osThreadTerminateZone (uint32_t zone);
538 osStatus_t osThreadSetAffinityMask (osThreadId_t thread_id, uint32_t affinity_mask);
586 osStatus_t osDelay (uint32_t ticks);
591 osStatus_t osDelayUntil (uint32_t ticks);
613 osStatus_t osTimerStart (osTimerId_t timer_id, uint32_t ticks);
618 osStatus_t osTimerStop (osTimerId_t timer_id);
628 osStatus_t osTimerDelete (osTimerId_t timer_id);
671 osStatus_t osEventFlagsDelete (osEventFlagsId_t ef_id);
690 osStatus_t osMutexAcquire (osMutexId_t mutex_id, uint32_t timeout);
695 osStatus_t osMutexRelease (osMutexId_t mutex_id);
705 osStatus_t osMutexDelete (osMutexId_t mutex_id);
726 osStatus_t osSemaphoreAcquire (osSemaphoreId_t semaphore_id, uint32_t timeout);
731 osStatus_t osSemaphoreRelease (osSemaphoreId_t semaphore_id);
741 osStatus_t osSemaphoreDelete (osSemaphoreId_t semaphore_id);
768 osStatus_t osMemoryPoolFree (osMemoryPoolId_t mp_id, void *block);
793 osStatus_t osMemoryPoolDelete (osMemoryPoolId_t mp_id);
816 osStatus_t osMessageQueuePut (osMessageQueueId_t mq_id, const void *msg_ptr, uint8_t msg_prio, uint32_t timeout);
824 osStatus_t osMessageQueueGet (osMessageQueueId_t mq_id, void *msg_ptr, uint8_t *msg_prio, uint32_t timeout);
849 osStatus_t osMessageQueueReset (osMessageQueueId_t mq_id);
854 osStatus_t osMessageQueueDelete (osMessageQueueId_t mq_id);