Home
last modified time | relevance | path

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

/external/libchrome/base/trace_event/
Dmalloc_dump_provider.cc47 PROCESS_HEAP_ENTRY heap_entry; in WinHeapMemoryDumpImpl() local
48 heap_entry.lpData = nullptr; in WinHeapMemoryDumpImpl()
50 while (::HeapWalk(crt_heap, &heap_entry) != FALSE) { in WinHeapMemoryDumpImpl()
51 if ((heap_entry.wFlags & PROCESS_HEAP_ENTRY_BUSY) != 0) { in WinHeapMemoryDumpImpl()
52 crt_heap_info->allocated_size += heap_entry.cbData; in WinHeapMemoryDumpImpl()
54 } else if ((heap_entry.wFlags & PROCESS_HEAP_REGION) != 0) { in WinHeapMemoryDumpImpl()
55 crt_heap_info->committed_size += heap_entry.Region.dwCommittedSize; in WinHeapMemoryDumpImpl()
56 crt_heap_info->uncommitted_size += heap_entry.Region.dwUnCommittedSize; in WinHeapMemoryDumpImpl()
/external/autotest/site_utils/rpm_control_system/
Dfrontend_server.py282 heap_entry = heapq.heappop(self._dispatcher_minheap)
288 dispatcher_uri = heap_entry[DISPATCHER_URI]
290 heap_entry[RPM_COUNT] = heap_entry[RPM_COUNT] + 1
291 heapq.heappush(self._dispatcher_minheap, heap_entry)
309 heap_entry = [DEFAULT_RPM_COUNT, dispatcher_uri]
310 heapq.heappush(self._dispatcher_minheap, heap_entry)
311 self._entry_dict[dispatcher_uri] = heap_entry
331 heap_entry = self._entry_dict.get(uri_to_unregister)
332 if not heap_entry:
336 heap_entry[RPM_COUNT] = TERMINATED