Home
last modified time | relevance | path

Searched refs:heap_entry (Results 1 – 3 of 3) sorted by relevance

/external/autotest/site_utils/rpm_control_system/
Dfrontend_server.py258 heap_entry = heapq.heappop(self._dispatcher_minheap)
264 dispatcher_uri = heap_entry[DISPATCHER_URI]
266 heap_entry[RPM_COUNT] = heap_entry[RPM_COUNT] + 1
267 heapq.heappush(self._dispatcher_minheap, heap_entry)
285 heap_entry = [DEFAULT_RPM_COUNT, dispatcher_uri]
286 heapq.heappush(self._dispatcher_minheap, heap_entry)
287 self._entry_dict[dispatcher_uri] = heap_entry
307 heap_entry = self._entry_dict.get(uri_to_unregister)
308 if not heap_entry:
312 heap_entry[RPM_COUNT] = TERMINATED
/external/libchrome/base/trace_event/
Dmalloc_dump_provider.cc164 PROCESS_HEAP_ENTRY heap_entry; in WinHeapMemoryDumpImpl() local
165 heap_entry.lpData = nullptr; in WinHeapMemoryDumpImpl()
167 while (::HeapWalk(crt_heap, &heap_entry) != FALSE) { in WinHeapMemoryDumpImpl()
168 if ((heap_entry.wFlags & PROCESS_HEAP_ENTRY_BUSY) != 0) { in WinHeapMemoryDumpImpl()
169 crt_heap_info->allocated_size += heap_entry.cbData; in WinHeapMemoryDumpImpl()
171 } else if ((heap_entry.wFlags & PROCESS_HEAP_REGION) != 0) { in WinHeapMemoryDumpImpl()
172 crt_heap_info->committed_size += heap_entry.Region.dwCommittedSize; in WinHeapMemoryDumpImpl()
173 crt_heap_info->uncommitted_size += heap_entry.Region.dwUnCommittedSize; in WinHeapMemoryDumpImpl()
/external/v8/src/profiler/
Dheap-snapshot-generator.cc1804 HeapEntry* heap_entry = GetEntry(obj); in IterateAndExtractSinglePass() local
1805 int entry = heap_entry->index(); in IterateAndExtractSinglePass()