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

/external/chromium_org/third_party/tcmalloc/chromium/src/
H A Dheap-profile-stats.h11 // which is declared as "HeapProfileBucket**".
15 // are implemented with the member "HeapProfileBucket* next".
17 // A structure of a hash table HeapProfileBucket** bucket_table would be like:
19 // bucket_table[1] => HeapProfileBucket() => HeapProfileBucket() => NULL
21 // bucket_table[i] => HeapProfileBucket() => NULL
23 // bucket_table[n] => HeapProfileBucket() => NULL
42 struct HeapProfileBucket : public HeapProfileStats { struct in inherits:HeapProfileStats
49 HeapProfileBucket* next; // Next entry in hash-table.
H A Dmemory_region_map.h232 static void IterateBuckets(void (*callback)(const HeapProfileBucket*, Type),
239 static HeapProfileBucket* GetBucket(int depth, const void* const key[]);
323 static HeapProfileBucket** bucket_table_ GUARDED_BY(lock_);
342 static HeapProfileBucket saved_buckets_[20] GUARDED_BY(lock_);
405 void (*callback)(const HeapProfileBucket*, Type), Type callback_arg) {
407 for (HeapProfileBucket* bucket = bucket_table_[index];
404 IterateBuckets( void (*callback)(const HeapProfileBucket*, Type), Type callback_arg) argument

Completed in 128 milliseconds