Lines Matching refs:m_temporary_allocation
416 m_temporary_allocation(LLDB_INVALID_ADDRESS), in EntityVariable()
513 if (m_temporary_allocation != LLDB_INVALID_ADDRESS) { in Materialize()
550 m_temporary_allocation = map.Malloc( in Materialize()
569 map.WriteMemory(m_temporary_allocation, data.GetDataStart(), in Materialize()
581 map.WritePointerToMemory(load_addr, m_temporary_allocation, in Materialize()
607 if (m_temporary_allocation != LLDB_INVALID_ADDRESS) { in Dematerialize()
627 map.GetMemoryData(data, m_temporary_allocation, in Dematerialize()
661 map.Free(m_temporary_allocation, free_error); in Dematerialize()
671 m_temporary_allocation = LLDB_INVALID_ADDRESS; in Dematerialize()
711 if (m_temporary_allocation == LLDB_INVALID_ADDRESS) { in DumpToLog()
722 map.ReadMemory(data.GetBytes(), m_temporary_allocation, in DumpToLog()
739 if (m_temporary_allocation != LLDB_INVALID_ADDRESS) { in Wipe()
742 map.Free(m_temporary_allocation, free_error); in Wipe()
744 m_temporary_allocation = LLDB_INVALID_ADDRESS; in Wipe()
752 lldb::addr_t m_temporary_allocation; member in EntityVariable
772 m_temporary_allocation(LLDB_INVALID_ADDRESS), in EntityResultVariable()
783 if (m_temporary_allocation != LLDB_INVALID_ADDRESS) { in Materialize()
814 m_temporary_allocation = map.Malloc( in Materialize()
829 map.WritePointerToMemory(load_addr, m_temporary_allocation, in Materialize()
941 if (m_temporary_allocation != LLDB_INVALID_ADDRESS) { in Dematerialize()
943 map.Free(m_temporary_allocation, free_error); in Dematerialize()
949 m_temporary_allocation = LLDB_INVALID_ADDRESS; in Dematerialize()
989 if (m_temporary_allocation == LLDB_INVALID_ADDRESS) { in DumpToLog()
1000 map.ReadMemory(data.GetBytes(), m_temporary_allocation, in DumpToLog()
1017 if (!m_keep_in_memory && m_temporary_allocation != LLDB_INVALID_ADDRESS) { in Wipe()
1020 map.Free(m_temporary_allocation, free_error); in Wipe()
1023 m_temporary_allocation = LLDB_INVALID_ADDRESS; in Wipe()
1032 lldb::addr_t m_temporary_allocation; member in EntityResultVariable