Home
last modified time | relevance | path

Searched refs:AllocationMap (Results 1 – 12 of 12) sorted by relevance

/external/chromium_org/base/memory/
Ddiscardable_memory_manager.cc23 : allocations_(AllocationMap::NO_AUTO_EVICT), in DiscardableMemoryManager()
93 AllocationMap::iterator it = allocations_.Peek(allocation); in Unregister()
111 AllocationMap::iterator it = allocations_.Get(allocation); in AcquireLock()
148 AllocationMap::iterator it = allocations_.Get(allocation); in ReleaseLock()
169 AllocationMap::const_iterator it = allocations_.Peek(allocation); in IsRegisteredForTest()
176 AllocationMap::const_iterator it = allocations_.Peek(allocation); in CanBePurgedForTest()
224 for (AllocationMap::reverse_iterator it = allocations_.rbegin(); in PurgeIfNotUsedSinceTimestampUntilUsageIsWithinLimitWithLockAcquired()
Ddiscardable_memory_manager.h142 typedef HashingMRUCache<Allocation*, AllocationInfo> AllocationMap;
175 AllocationMap allocations_;
/external/chromium_org/third_party/tcmalloc/vendor/src/
Dheap-profile-table.h248 typedef AddressMap<AllocValue> AllocationMap; typedef
278 void DeallocateAllocationMap(AllocationMap* allocation);
337 AllocationMap* allocations);
364 AllocationMap* alloc_address_map_;
365 AllocationMap* mmap_address_map_;
399 AllocationMap map_;
Dheap-profile-table.cc142 new(alloc_(sizeof(AllocationMap))) AllocationMap(alloc_, dealloc_); in HeapProfileTable()
157 void HeapProfileTable::DeallocateAllocationMap(AllocationMap* allocation) { in DeallocateAllocationMap()
159 alloc_address_map_->~AllocationMap(); in DeallocateAllocationMap()
369 new(alloc_(sizeof(AllocationMap))) AllocationMap(alloc_, dealloc_); in RefreshMMapData()
393 mmap_address_map_->~AllocationMap(); in ClearMMapData()
505 AllocationMap* allocations) { in WriteProfile()
/external/lldb/include/lldb/Expression/
DIRMemoryMap.h115 typedef std::map<lldb::addr_t, Allocation> AllocationMap; typedef
116 AllocationMap m_allocations;
120 AllocationMap::iterator FindAllocation (lldb::addr_t addr, size_t size);
/external/lldb/source/Expression/
DIRMemoryMap.cpp34 AllocationMap::iterator iter; in ~IRMemoryMap()
105 IRMemoryMap::AllocationMap::iterator
111 AllocationMap::iterator iter = m_allocations.lower_bound (addr); in FindAllocation()
133 AllocationMap::iterator iter = m_allocations.lower_bound (addr); in IntersectsAllocation()
359 AllocationMap::iterator iter = m_allocations.find(process_address); in Leak()
378 AllocationMap::iterator iter = m_allocations.find(process_address); in Free()
428 AllocationMap::iterator iter = FindAllocation(process_address, size); in WriteMemory()
549 AllocationMap::iterator iter = FindAllocation(process_address, size); in ReadMemory()
697 AllocationMap::iterator iter = FindAllocation(process_address, size); in GetMemoryData()
/external/chromium_org/third_party/tcmalloc/chromium/src/
Dheap-profile-table.h280 typedef AddressMap<AllocValue> AllocationMap; typedef
446 AllocationMap* allocations);
468 AllocationMap* address_map_;
502 AllocationMap map_;
Ddeep-heap-profile.h82 typedef HeapProfileTable::AllocationMap AllocationMap; typedef
Dheap-profile-table.cc146 new(alloc_(sizeof(AllocationMap))) AllocationMap(alloc_, dealloc_); in HeapProfileTable()
155 address_map_->~AllocationMap(); in ~HeapProfileTable()
561 AllocationMap* allocations) { in WriteProfile()
/external/chromium_org/third_party/libjingle/source/talk/p2p/base/
Dturnserver.h123 typedef std::map<Connection, Allocation*> AllocationMap; typedef
182 AllocationMap allocations_;
Dturnserver.cc215 for (AllocationMap::iterator it = allocations_.begin(); in ~TurnServer()
511 AllocationMap::const_iterator it = allocations_.find(*conn); in FindAllocation()
582 AllocationMap::iterator it = allocations_.find(*(allocation->conn())); in OnAllocationDestroyed()
/external/chromium_org/net/disk_cache/blockfile/
Dblock_files_unittest.cc303 TEST_F(DiskCacheTest, AllocationMap) { in TEST_F() argument