Home
last modified time | relevance | path

Searched refs:poolId (Results 1 – 4 of 4) sorted by relevance

/hal_nxp-latest/mcux/mcux-sdk/components/mem_manager/
Dfsl_component_mem_manager.c86 uint16_t poolId; member
333 pPool->poolId = *(uint16_t *)(void *)(&buffer[4]); in MEM_AddBuffer()
443 void *MEM_BufferAllocWithId(uint32_t numBytes, uint8_t poolId) in MEM_BufferAllocWithId() argument
460 if ((numBytes <= pPool->blockSize) && (pPool->poolId == poolId)) in MEM_BufferAllocWithId()
619 mem_status_t MEM_BufferFreeAllWithId(uint8_t poolId) in MEM_BufferFreeAllWithId() argument
627 if (pPool->poolId == poolId) in MEM_BufferFreeAllWithId()
734 (void)PRINTF("POOL: ID %d blockSize:%d status:\r\n", pPool->poolId, pPool->blockSize); in MEM_Trace()
Dfsl_component_mem_manager.h192 uint16_t poolId; /*< The pool id Of Blocks. */ member
301 void *MEM_BufferAllocWithId(uint32_t numBytes, uint8_t poolId);
328 mem_status_t MEM_BufferFreeAllWithId(uint8_t poolId);
Dfsl_component_mem_manager_light.c908 static void *MEM_BufferAllocate(uint32_t numBytes, uint8_t poolId) in MEM_BufferAllocate() argument
918 if (poolId == 0U) in MEM_BufferAllocate()
936 p_area = MEM_GetAreaByAreaId(poolId); /* Exclusively allocate from targeted pool */ in MEM_BufferAllocate()
939 buffer = MEM_BufferAllocateFromArea(p_area, poolId, numBytes); in MEM_BufferAllocate()
945 void *MEM_BufferAllocWithId(uint32_t numBytes, uint8_t poolId) in MEM_BufferAllocWithId() argument
963 buffer_ptr.void_ptr = MEM_BufferAllocate(numBytes, poolId); in MEM_BufferAllocWithId()
1077 mem_status_t MEM_BufferFreeAllWithId(uint8_t poolId) in MEM_BufferFreeAllWithId() argument
/hal_nxp-latest/mcux/middleware/mcux-sdk-middleware-connectivity-framework/platform/connected_mcu/
Dfwk_platform_ics.h71 uint8_t poolId;