Home | History | Annotate | Download | only in memcheck

Lines Matching refs:address

47 /* Gets address of the beginning of an allocation block for the given entry in
52 * Address of the beginning of an allocation block for the given entry in the
61 /* Gets address of the end of an allocation block for the given entry in
66 * Address of the end of an allocation block for the given entry in the map.
136 * address range.
139 * address - Virtual address in the guest's user space to find matching
142 * Address of an allocation descriptors map entry that matches the given
143 * address, or NULL if no such entry has been found.
147 target_ulong address,
151 adesc.desc.malloc_desc.ptr = address;
193 allocmap_find(const AllocMap* map, target_ulong address, uint32_t block_size)
195 AllocMapEntry* adesc = allocmap_find_entry(map, address, block_size);
200 allocmap_pull(AllocMap* map, target_ulong address, MallocDescEx* pulled)
202 AllocMapEntry* adesc = allocmap_find_entry(map, address, 1);