Home
last modified time | relevance | path

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

/Zephyr-latest/subsys/portability/cmsis_rtos_v2/
Dmempool.c28 osMemoryPoolId_t osMemoryPoolNew(uint32_t block_count, uint32_t block_size, in osMemoryPoolNew()
88 return (osMemoryPoolId_t)mslab; in osMemoryPoolNew()
94 void *osMemoryPoolAlloc(osMemoryPoolId_t mp_id, uint32_t timeout) in osMemoryPoolAlloc()
133 osStatus_t osMemoryPoolFree(osMemoryPoolId_t mp_id, void *block) in osMemoryPoolFree()
154 const char *osMemoryPoolGetName(osMemoryPoolId_t mp_id) in osMemoryPoolGetName()
168 uint32_t osMemoryPoolGetCapacity(osMemoryPoolId_t mp_id) in osMemoryPoolGetCapacity()
182 uint32_t osMemoryPoolGetBlockSize(osMemoryPoolId_t mp_id) in osMemoryPoolGetBlockSize()
196 uint32_t osMemoryPoolGetCount(osMemoryPoolId_t mp_id) in osMemoryPoolGetCount()
210 uint32_t osMemoryPoolGetSpace(osMemoryPoolId_t mp_id) in osMemoryPoolGetSpace()
224 osStatus_t osMemoryPoolDelete(osMemoryPoolId_t mp_id) in osMemoryPoolDelete()
/Zephyr-latest/include/zephyr/portability/
Dcmsis_os2.h223 typedef void *osMemoryPoolId_t; typedef
643 osMemoryPoolId_t osMemoryPoolNew(uint32_t block_count, uint32_t block_size, const osMemoryPoolAttr_…
648 const char *osMemoryPoolGetName(osMemoryPoolId_t mp_id);
654 void *osMemoryPoolAlloc(osMemoryPoolId_t mp_id, uint32_t timeout);
660 osStatus_t osMemoryPoolFree(osMemoryPoolId_t mp_id, void *block);
665 uint32_t osMemoryPoolGetCapacity(osMemoryPoolId_t mp_id);
670 uint32_t osMemoryPoolGetBlockSize(osMemoryPoolId_t mp_id);
675 uint32_t osMemoryPoolGetCount(osMemoryPoolId_t mp_id);
680 uint32_t osMemoryPoolGetSpace(osMemoryPoolId_t mp_id);
685 osStatus_t osMemoryPoolDelete(osMemoryPoolId_t mp_id);
/Zephyr-latest/tests/subsys/portability/cmsis_rtos_v2/src/
Dmempool.c29 static void mempool_common_tests(osMemoryPoolId_t mp_id, in mempool_common_tests()
33 osMemoryPoolId_t dummy_id = NULL; in mempool_common_tests()
105 osMemoryPoolId_t mp_id; in ZTEST()
121 osMemoryPoolId_t mp_id; in ZTEST()