• Home
  • Raw
  • Download

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()
812 m_temporary_allocation = map.Malloc( in Materialize()
827 map.WritePointerToMemory(load_addr, m_temporary_allocation, in Materialize()
939 if (m_temporary_allocation != LLDB_INVALID_ADDRESS) { in Dematerialize()
941 map.Free(m_temporary_allocation, free_error); in Dematerialize()
947 m_temporary_allocation = LLDB_INVALID_ADDRESS; in Dematerialize()
987 if (m_temporary_allocation == LLDB_INVALID_ADDRESS) { in DumpToLog()
998 map.ReadMemory(data.GetBytes(), m_temporary_allocation, in DumpToLog()
1015 if (!m_keep_in_memory && m_temporary_allocation != LLDB_INVALID_ADDRESS) { in Wipe()
1018 map.Free(m_temporary_allocation, free_error); in Wipe()
1021 m_temporary_allocation = LLDB_INVALID_ADDRESS; in Wipe()
1030 lldb::addr_t m_temporary_allocation; member in EntityResultVariable