Lines Matching refs:begin
79 malloc_iterate(heap_mapping.begin, heap_mapping.end - heap_mapping.begin, in HeapIterate()
92 for (auto it = mappings.begin(); it != mappings.end(); it++) { in CollectAllocations()
93 heap_walker_.Mapping(it->begin, it->end); in CollectAllocations()
104 for (auto it = heap_mappings.begin(); it != heap_mappings.end(); it++) { in CollectAllocations()
105 MEM_ALOGV("Heap mapping %" PRIxPTR "-%" PRIxPTR " %s", it->begin, it->end, it->name); in CollectAllocations()
110 for (auto it = anon_mappings.begin(); it != anon_mappings.end(); it++) { in CollectAllocations()
111 MEM_ALOGV("Anon mapping %" PRIxPTR "-%" PRIxPTR " %s", it->begin, it->end, it->name); in CollectAllocations()
112 heap_walker_.Allocation(it->begin, it->end); in CollectAllocations()
115 for (auto it = globals_mappings.begin(); it != globals_mappings.end(); it++) { in CollectAllocations()
116 MEM_ALOGV("Globals mapping %" PRIxPTR "-%" PRIxPTR " %s", it->begin, it->end, it->name); in CollectAllocations()
117 heap_walker_.Root(it->begin, it->end); in CollectAllocations()
120 for (auto thread_it = threads.begin(); thread_it != threads.end(); thread_it++) { in CollectAllocations()
121 for (auto it = stack_mappings.begin(); it != stack_mappings.end(); it++) { in CollectAllocations()
122 if (thread_it->stack.first >= it->begin && thread_it->stack.first <= it->end) { in CollectAllocations()
175 … reinterpret_cast<void*>(it.range.begin), leak->backtrace.frames, leak->backtrace.max_frames); in GetUnreachableMemory()
195 leak->begin = it.range.begin; in GetUnreachableMemory()
200 memcpy(leak->contents, reinterpret_cast<void*>(it.range.begin), in GetUnreachableMemory()
206 std::sort(leaks.begin(), leaks.end(), in GetUnreachableMemory()
237 for (auto it = mappings.begin(); it != mappings.end(); it++) { in ClassifyMappings()
443 oss << std::hex << begin; in ToString()
474 oss << " " << std::hex << begin + i << ": "; in ToString()
509 for (auto it = leaks.begin(); it != leaks.end(); it++) { in ToString()
552 for (auto it = info.leaks.begin(); it != info.leaks.end(); it++) { in LogUnreachableMemory()