Lines Matching refs:m_temporary_allocation
412 m_temporary_allocation(LLDB_INVALID_ADDRESS), in EntityVariable()
487 if (m_temporary_allocation != LLDB_INVALID_ADDRESS) in Materialize()
511 …m_temporary_allocation = map.Malloc(data.GetByteSize(), byte_align, lldb::ePermissionsReadable | l… in Materialize()
522 … map.WriteMemory(m_temporary_allocation, data.GetDataStart(), data.GetByteSize(), write_error); in Materialize()
532 map.WritePointerToMemory(load_addr, m_temporary_allocation, pointer_write_error); in Materialize()
559 if (m_temporary_allocation != LLDB_INVALID_ADDRESS) in Dematerialize()
578 … map.GetMemoryData(data, m_temporary_allocation, valobj_sp->GetByteSize(), extract_error); in Dematerialize()
598 map.Free(m_temporary_allocation, free_error); in Dematerialize()
606 m_temporary_allocation = LLDB_INVALID_ADDRESS; in Dematerialize()
647 if (m_temporary_allocation == LLDB_INVALID_ADDRESS) in DumpToLog()
664 … map.ReadMemory(data.GetBytes(), m_temporary_allocation, m_temporary_allocation_size, err); in DumpToLog()
685 if (m_temporary_allocation != LLDB_INVALID_ADDRESS) in Wipe()
689 map.Free(m_temporary_allocation, free_error); in Wipe()
691 m_temporary_allocation = LLDB_INVALID_ADDRESS; in Wipe()
699 lldb::addr_t m_temporary_allocation; member in EntityVariable
721 m_temporary_allocation(LLDB_INVALID_ADDRESS), in EntityResultVariable()
733 if (m_temporary_allocation != LLDB_INVALID_ADDRESS) in Materialize()
747 …m_temporary_allocation = map.Malloc(byte_size, byte_align, lldb::ePermissionsReadable | lldb::ePer… in Materialize()
758 map.WritePointerToMemory(load_addr, m_temporary_allocation, pointer_write_error); in Materialize()
864 if (m_temporary_allocation != LLDB_INVALID_ADDRESS) in Dematerialize()
867 map.Free(m_temporary_allocation, free_error); in Dematerialize()
875 m_temporary_allocation = LLDB_INVALID_ADDRESS; in Dematerialize()
916 if (m_temporary_allocation == LLDB_INVALID_ADDRESS) in DumpToLog()
933 … map.ReadMemory(data.GetBytes(), m_temporary_allocation, m_temporary_allocation_size, err); in DumpToLog()
954 if (!m_keep_in_memory && m_temporary_allocation != LLDB_INVALID_ADDRESS) in Wipe()
958 map.Free(m_temporary_allocation, free_error); in Wipe()
961 m_temporary_allocation = LLDB_INVALID_ADDRESS; in Wipe()
969 lldb::addr_t m_temporary_allocation; member in EntityResultVariable