Lines Matching refs:m_temporary_allocation

427         m_temporary_allocation(LLDB_INVALID_ADDRESS),  in EntityVariable()
523 if (m_temporary_allocation != LLDB_INVALID_ADDRESS) { in Materialize()
556 m_temporary_allocation = map.Malloc( in Materialize()
575 map.WriteMemory(m_temporary_allocation, data.GetDataStart(), in Materialize()
587 map.WritePointerToMemory(load_addr, m_temporary_allocation, in Materialize()
612 if (m_temporary_allocation != LLDB_INVALID_ADDRESS) { in Dematerialize()
632 map.GetMemoryData(data, m_temporary_allocation, valobj_sp->GetByteSize(), in Dematerialize()
666 map.Free(m_temporary_allocation, free_error); in Dematerialize()
676 m_temporary_allocation = LLDB_INVALID_ADDRESS; in Dematerialize()
716 if (m_temporary_allocation == LLDB_INVALID_ADDRESS) { in DumpToLog()
727 map.ReadMemory(data.GetBytes(), m_temporary_allocation, in DumpToLog()
744 if (m_temporary_allocation != LLDB_INVALID_ADDRESS) { in Wipe()
747 map.Free(m_temporary_allocation, free_error); in Wipe()
749 m_temporary_allocation = LLDB_INVALID_ADDRESS; in Wipe()
757 lldb::addr_t m_temporary_allocation; member in EntityVariable
777 m_temporary_allocation(LLDB_INVALID_ADDRESS), in EntityResultVariable()
788 if (m_temporary_allocation != LLDB_INVALID_ADDRESS) { in Materialize()
812 m_temporary_allocation = map.Malloc( in Materialize()
827 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