Searched defs:pList (Results 1 - 1 of 1) sorted by relevance

/bionic/libc/bionic/
H A Dpthread_debug.c409 static void growingListAdd(GrowingList* pList, size_t objSize) { argument
410 if (pList->count == pList->alloc) {
411 size_t oldsize = pList->alloc * objSize;
412 pList->alloc += PAGESIZE / objSize;
413 size_t size = pList->alloc * objSize;
414 pList->data = debug_realloc(pList->data, size, oldsize);
416 pList->count++;
482 static void historyListAdd(MutexInfoList* pList, MutexInf argument
487 historyListRemove(MutexInfoList* pList, MutexInfo* obj) argument
520 callstackListAdd(CallStackList* pList, int count, intptr_t const* addrs) argument
582 MutexInfoList* pList = &obj->children; local
[all...]

Completed in 27 milliseconds