Lines Matching refs:pool
73 STATIC LmsMemListNode *OsLmsGetPoolNode(const VOID *pool)
75 UINTPTR poolAddr = (UINTPTR)pool;
131 UINT32 LOS_LmsCheckPoolAdd(const VOID *pool, UINT32 size)
134 UINTPTR poolAddr = (UINTPTR)pool;
138 if (pool == NULL) {
144 lmsPoolNode = OsLmsGetPoolNode(pool);
145 if (lmsPoolNode != NULL) { /* if pool already on checklist */
146 /* Re-initialize the same pool, maybe with different size */
154 PRINT_DEBUG("[LMS]the num of lms check pool is max already !\n");
174 VOID LOS_LmsCheckPoolDel(const VOID *pool)
177 if (pool == NULL) {
182 LmsMemListNode *delNode = OsLmsGetPoolNode(pool);
184 PRINT_ERR("[LMS]pool %p is not on lms checklist !\n", pool);
212 PRINT_ERR("[LMS]memAddr %p is not in pool region [%p, %p)\n", memAddr, node->poolAddr,
487 "[LMS]memory pool[%1u]: totalsize 0x%-8x memstart 0x%-8x memstop 0x%-8x memsize 0x%-8x shadowstart 0x%-8x "
518 if (dumpAddr < nodeInfo->poolAddr) { /* find util dumpAddr in pool region */
523 nodeInfo->poolAddr + nodeInfo->poolSize) { /* finish if dumpAddr exceeds pool's upper region */