Searched refs:AllocMap (Results 1 – 3 of 3) sorted by relevance
/external/qemu/memcheck/ |
D | memcheck_malloc_map.h | 35 typedef struct AllocMap { struct 38 } AllocMap; typedef 48 void allocmap_init(AllocMap* map); 69 RBTMapResult allocmap_insert(AllocMap* map, 86 MallocDescEx* allocmap_find(const AllocMap* map, 104 int allocmap_pull(AllocMap* map, target_ulong address, MallocDescEx* pulled); 115 int allocmap_pull_first(AllocMap* map, MallocDescEx* pulled); 127 int allocmap_copy(AllocMap* to, 128 const AllocMap* from, 138 int allocmap_empty(AllocMap* map);
|
D | memcheck_malloc_map.c | 95 RB_GENERATE(AllocMap, AllocMapEntry, rb_entry, cmp_rb); 106 allocmap_insert_desc(AllocMap* map, in allocmap_insert_desc() 140 allocmap_find_entry(const AllocMap* map, in allocmap_find_entry() 149 return AllocMap_RB_FIND((AllocMap*)map, &adesc); in allocmap_find_entry() 157 allocmap_init(AllocMap* map) in allocmap_init() 163 allocmap_insert(AllocMap* map, const MallocDescEx* desc, MallocDescEx* replaced) in allocmap_insert() 187 allocmap_find(const AllocMap* map, target_ulong address, uint32_t block_size) in allocmap_find() 194 allocmap_pull(AllocMap* map, target_ulong address, MallocDescEx* pulled) in allocmap_pull() 208 allocmap_pull_first(AllocMap* map, MallocDescEx* pulled) in allocmap_pull_first() 210 AllocMapEntry* first = RB_MIN(AllocMap, map); in allocmap_pull_first() [all …]
|
D | memcheck_proc_management.h | 37 AllocMap alloc_map;
|