Lines Matching refs:m_temporary_allocation
525 if (m_temporary_allocation != LLDB_INVALID_ADDRESS) { in Materialize()
559 m_temporary_allocation = map.Malloc( in Materialize()
578 map.WriteMemory(m_temporary_allocation, data.GetDataStart(), in Materialize()
590 map.WritePointerToMemory(load_addr, m_temporary_allocation, in Materialize()
615 if (m_temporary_allocation != LLDB_INVALID_ADDRESS) { in Dematerialize()
634 map.GetMemoryData(data, m_temporary_allocation, in Dematerialize()
668 map.Free(m_temporary_allocation, free_error); in Dematerialize()
678 m_temporary_allocation = LLDB_INVALID_ADDRESS; in Dematerialize()
718 if (m_temporary_allocation == LLDB_INVALID_ADDRESS) { in DumpToLog()
729 map.ReadMemory(data.GetBytes(), m_temporary_allocation, in DumpToLog()
746 if (m_temporary_allocation != LLDB_INVALID_ADDRESS) { in Wipe()
749 map.Free(m_temporary_allocation, free_error); in Wipe()
751 m_temporary_allocation = LLDB_INVALID_ADDRESS; in Wipe()
794 lldb::addr_t m_temporary_allocation = LLDB_INVALID_ADDRESS; member in EntityVariableBase
926 if (m_temporary_allocation != LLDB_INVALID_ADDRESS) { in Materialize()
957 m_temporary_allocation = map.Malloc( in Materialize()
972 map.WritePointerToMemory(load_addr, m_temporary_allocation, in Materialize()
1091 if (m_temporary_allocation != LLDB_INVALID_ADDRESS) { in Dematerialize()
1093 map.Free(m_temporary_allocation, free_error); in Dematerialize()
1099 m_temporary_allocation = LLDB_INVALID_ADDRESS; in Dematerialize()
1139 if (m_temporary_allocation == LLDB_INVALID_ADDRESS) { in DumpToLog()
1150 map.ReadMemory(data.GetBytes(), m_temporary_allocation, in DumpToLog()
1167 if (!m_keep_in_memory && m_temporary_allocation != LLDB_INVALID_ADDRESS) { in Wipe()
1170 map.Free(m_temporary_allocation, free_error); in Wipe()
1173 m_temporary_allocation = LLDB_INVALID_ADDRESS; in Wipe()
1182 lldb::addr_t m_temporary_allocation = LLDB_INVALID_ADDRESS; member in EntityResultVariable