Searched refs:inst_sp (Results 1 - 5 of 5) sorted by relevance

/external/lldb/include/lldb/API/
H A DSBInstruction.h81 SBInstruction (const lldb::InstructionSP &inst_sp);
84 SetOpaque (const lldb::InstructionSP &inst_sp);
/external/lldb/source/API/
H A DSBInstruction.cpp35 SBInstruction::SBInstruction (const lldb::InstructionSP& inst_sp) : argument
36 m_opaque_sp (inst_sp)
163 SBInstruction::SetOpaque (const lldb::InstructionSP &inst_sp) argument
165 m_opaque_sp = inst_sp;
/external/lldb/source/Plugins/Disassembler/llvm/
H A DDisassemblerLLVMC.cpp714 InstructionSP inst_sp(new InstructionLLVMC(*this,
718 if (!inst_sp)
721 uint32_t inst_size = inst_sp->Decode(*this, data, data_cursor);
726 m_instruction_list.Append(inst_sp);
/external/lldb/source/Core/
H A DDisassembler.cpp991 InstructionSP inst_sp; local
993 inst_sp = m_instructions[idx];
994 return inst_sp;
1023 InstructionList::Append (lldb::InstructionSP &inst_sp) argument
1025 if (inst_sp)
1026 m_instructions.push_back(inst_sp);
/external/lldb/include/lldb/Core/
H A DDisassembler.h182 Append (lldb::InstructionSP &inst_sp);

Completed in 1291 milliseconds