Lines Matching refs:m_temporary_allocation
524 if (m_temporary_allocation != LLDB_INVALID_ADDRESS) { in Materialize()
558 m_temporary_allocation = map.Malloc( in Materialize()
577 map.WriteMemory(m_temporary_allocation, data.GetDataStart(), in Materialize()
589 map.WritePointerToMemory(load_addr, m_temporary_allocation, in Materialize()
614 if (m_temporary_allocation != LLDB_INVALID_ADDRESS) { in Dematerialize()
633 map.GetMemoryData(data, m_temporary_allocation, in Dematerialize()
667 map.Free(m_temporary_allocation, free_error); in Dematerialize()
677 m_temporary_allocation = LLDB_INVALID_ADDRESS; in Dematerialize()
717 if (m_temporary_allocation == LLDB_INVALID_ADDRESS) { in DumpToLog()
728 map.ReadMemory(data.GetBytes(), m_temporary_allocation, in DumpToLog()
745 if (m_temporary_allocation != LLDB_INVALID_ADDRESS) { in Wipe()
748 map.Free(m_temporary_allocation, free_error); in Wipe()
750 m_temporary_allocation = LLDB_INVALID_ADDRESS; in Wipe()
793 lldb::addr_t m_temporary_allocation = LLDB_INVALID_ADDRESS; member in EntityVariableBase
925 if (m_temporary_allocation != LLDB_INVALID_ADDRESS) { in Materialize()
956 m_temporary_allocation = map.Malloc( in Materialize()
971 map.WritePointerToMemory(load_addr, m_temporary_allocation, in Materialize()
1083 if (m_temporary_allocation != LLDB_INVALID_ADDRESS) { in Dematerialize()
1085 map.Free(m_temporary_allocation, free_error); in Dematerialize()
1091 m_temporary_allocation = LLDB_INVALID_ADDRESS; in Dematerialize()
1131 if (m_temporary_allocation == LLDB_INVALID_ADDRESS) { in DumpToLog()
1142 map.ReadMemory(data.GetBytes(), m_temporary_allocation, in DumpToLog()
1159 if (!m_keep_in_memory && m_temporary_allocation != LLDB_INVALID_ADDRESS) { in Wipe()
1162 map.Free(m_temporary_allocation, free_error); in Wipe()
1165 m_temporary_allocation = LLDB_INVALID_ADDRESS; in Wipe()
1174 lldb::addr_t m_temporary_allocation = LLDB_INVALID_ADDRESS; member in EntityResultVariable