Home
last modified time | relevance | path

Searched refs:osMemoryPoolId_t (Results 1 – 3 of 3) sorted by relevance

/hal_nxp-3.5.0/mcux/mcux-sdk/CMSIS/RTOS2/Include/
Dcmsis_os2.h226 typedef void *osMemoryPoolId_t; typedef
646 osMemoryPoolId_t osMemoryPoolNew (uint32_t block_count, uint32_t block_size, const osMemoryPoolAttr…
651 const char *osMemoryPoolGetName (osMemoryPoolId_t mp_id);
657 void *osMemoryPoolAlloc (osMemoryPoolId_t mp_id, uint32_t timeout);
663 osStatus_t osMemoryPoolFree (osMemoryPoolId_t mp_id, void *block);
668 uint32_t osMemoryPoolGetCapacity (osMemoryPoolId_t mp_id);
673 uint32_t osMemoryPoolGetBlockSize (osMemoryPoolId_t mp_id);
678 uint32_t osMemoryPoolGetCount (osMemoryPoolId_t mp_id);
683 uint32_t osMemoryPoolGetSpace (osMemoryPoolId_t mp_id);
688 osStatus_t osMemoryPoolDelete (osMemoryPoolId_t mp_id);
/hal_nxp-3.5.0/mcux/mcux-sdk/CMSIS/RTOS2/RTX/Include/
Drtx_evr.h1536 extern void EvrRtxMemoryPoolError (osMemoryPoolId_t mp_id, int32_t status);
1559 extern void EvrRtxMemoryPoolCreated (osMemoryPoolId_t mp_id, const char *name);
1570 extern void EvrRtxMemoryPoolGetName (osMemoryPoolId_t mp_id, const char *name);
1581 extern void EvrRtxMemoryPoolAlloc (osMemoryPoolId_t mp_id, uint32_t timeout);
1592 extern void EvrRtxMemoryPoolAllocPending (osMemoryPoolId_t mp_id, uint32_t timeout);
1602 extern void EvrRtxMemoryPoolAllocTimeout (osMemoryPoolId_t mp_id);
1613 extern void EvrRtxMemoryPoolAllocated (osMemoryPoolId_t mp_id, void *block);
1623 extern void EvrRtxMemoryPoolAllocFailed (osMemoryPoolId_t mp_id);
1634 extern void EvrRtxMemoryPoolFree (osMemoryPoolId_t mp_id, void *block);
1645 extern void EvrRtxMemoryPoolDeallocated (osMemoryPoolId_t mp_id, void *block);
[all …]
/hal_nxp-3.5.0/mcux/mcux-sdk/CMSIS/RTOS2/RTX/Source/
Drtx_lib.h85 __STATIC_INLINE os_memory_pool_t *osRtxMemoryPoolId (osMemoryPoolId_t mp_id) { in osRtxMemoryPoolId()