OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:g_hash_table
(Results
1 - 3
of
3
) sorted by null
/bionic/libc/bionic/
malloc_debug_leak.cpp
59
extern HashTable*
g_hash_table
;
137
ScopedPthreadMutexLocker locker(&
g_hash_table
->lock);
138
HashEntry* entry = find_entry(
g_hash_table
, slot, backtrace, numEntries, size);
150
entry->next =
g_hash_table
->slots[slot];
156
g_hash_table
->slots[slot] = entry;
163
g_hash_table
->count++;
172
HashEntry* e1 =
g_hash_table
->slots[i];
193
g_hash_table
->slots[entry->slot] = entry->next;
197
g_hash_table
->count--;
342
ScopedPthreadMutexLocker locker(&
g_hash_table
->lock)
[
all
...]
malloc_debug_common.cpp
62
static HashTable
g_hash_table
;
variable
182
ScopedPthreadMutexLocker locker(&
g_hash_table
.lock);
183
if (
g_hash_table
.count == 0) {
191
HashEntry** list = static_cast<HashEntry**>(Malloc(malloc)(sizeof(void*) *
g_hash_table
.count));
196
HashEntry* entry =
g_hash_table
.slots[i];
207
*overallSize = *infoSize *
g_hash_table
.count;
218
qsort(list,
g_hash_table
.count, sizeof(void*), hash_entry_compare);
221
const size_t count =
g_hash_table
.count;
420
if (!malloc_debug_initialize(&
g_hash_table
, &__libc_malloc_default_dispatch)) {
malloc_debug_check.cpp
131
__LIBC_HIDDEN__ HashTable*
g_hash_table
;
variable
641
g_hash_table
= hash_table;
Completed in 291 milliseconds