Home
last modified time | relevance | path

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

/external/lldb/source/Target/
DMemory.cpp216 m_offset_to_chunk_size () in AllocatedBlock()
235 if (m_offset_to_chunk_size.empty()) in ReserveBlock()
237 m_offset_to_chunk_size[0] = needed_chunks; in ReserveBlock()
245 OffsetToChunkSize::const_iterator pos = m_offset_to_chunk_size.begin(); in ReserveBlock()
246 OffsetToChunkSize::const_iterator end = m_offset_to_chunk_size.end(); in ReserveBlock()
255 m_offset_to_chunk_size[last_offset] = needed_chunks; in ReserveBlock()
271 m_offset_to_chunk_size[last_offset] = needed_chunks; in ReserveBlock()
342 OffsetToChunkSize::iterator pos = m_offset_to_chunk_size.find (offset); in FreeBlock()
344 if (pos != m_offset_to_chunk_size.end()) in FreeBlock()
346 m_offset_to_chunk_size.erase (pos); in FreeBlock()
/external/lldb/include/lldb/Target/
DMemory.h142 OffsetToChunkSize m_offset_to_chunk_size; variable