Searched refs:pool (Results 1 - 1 of 1) sorted by relevance

/bionic/linker/
H A Dlinker.cpp266 // Allocate a new pool.
267 soinfo_pool_t* pool = reinterpret_cast<soinfo_pool_t*>(mmap(NULL, sizeof(*pool), local
270 if (pool == MAP_FAILED) {
274 // Add the pool to our list of pools.
275 pool->next = gSoInfoPools;
276 gSoInfoPools = pool;
278 // Chain the entries in the new pool onto the free list.
279 gSoInfoFreeList = &pool->info[0];
282 pool
[all...]

Completed in 38 milliseconds