Home
last modified time | relevance | path

Searched refs:GetInstructions (Results 1 – 24 of 24) sorted by relevance

/openbsd-src/gnu/llvm/lldb/bindings/interface/
H A DSBFunction.i69 GetInstructions (lldb::SBTarget target);
72 GetInstructions (lldb::SBTarget target, const char *flavor);
119 return self.GetInstructions (target)
H A DSBSymbol.i41 GetInstructions (lldb::SBTarget target);
44 GetInstructions (lldb::SBTarget target, const char *flavor_string);
82 return self.GetInstructions (target)
H A DSBTarget.i921 GetInstructions;
923 GetInstructions (lldb::SBAddress base_addr, const void *buf, size_t size);
/openbsd-src/gnu/llvm/lldb/include/lldb/API/
H A DSBFunction.h38 lldb::SBInstructionList GetInstructions(lldb::SBTarget target);
40 lldb::SBInstructionList GetInstructions(lldb::SBTarget target,
H A DSBSymbol.h39 lldb::SBInstructionList GetInstructions(lldb::SBTarget target);
41 lldb::SBInstructionList GetInstructions(lldb::SBTarget target,
H A DSBTarget.h808 lldb::SBInstructionList GetInstructions(lldb::SBAddress base_addr,
819 lldb::SBInstructionList GetInstructions(lldb::addr_t base_addr,
/openbsd-src/gnu/llvm/lldb/source/API/
H A DSBSymbol.cpp107 SBInstructionList SBSymbol::GetInstructions(SBTarget target) { in GetInstructions() function in SBSymbol
110 return GetInstructions(target, nullptr); in GetInstructions()
113 SBInstructionList SBSymbol::GetInstructions(SBTarget target, in GetInstructions() function in SBSymbol
H A DSBFunction.cpp110 SBInstructionList SBFunction::GetInstructions(SBTarget target) { in GetInstructions() function in SBFunction
113 return GetInstructions(target, nullptr); in GetInstructions()
116 SBInstructionList SBFunction::GetInstructions(SBTarget target, in GetInstructions() function in SBFunction
H A DSBTarget.cpp1968 lldb::SBInstructionList SBTarget::GetInstructions(lldb::SBAddress base_addr, in GetInstructions() function in SBTarget
2001 lldb::SBInstructionList SBTarget::GetInstructions(lldb::addr_t base_addr, in GetInstructions() function in SBTarget
/openbsd-src/gnu/llvm/lldb/examples/python/
H A Ddisasm.py85 insts = function.GetInstructions(target)
97 insts = symbol.GetInstructions(target)
H A Ddisasm-stress-test.py220 inst_list = target.GetInstructions(fake_address, inst_bytes)
H A Dsymbolication.py89 return function.GetInstructions(self.target)
90 return sym_ctx.GetSymbol().GetInstructions(self.target)
/openbsd-src/gnu/llvm/lldb/include/lldb/Symbol/
H A DSymbol.h235 lldb::DisassemblerSP GetInstructions(const ExecutionContext &exe_ctx,
H A DFunction.h626 lldb::DisassemblerSP GetInstructions(const ExecutionContext &exe_ctx,
/openbsd-src/gnu/llvm/lldb/source/Symbol/
H A DFunction.cpp422 lldb::DisassemblerSP Function::GetInstructions(const ExecutionContext &exe_ctx, in GetInstructions() function in Function
438 GetInstructions(exe_ctx, flavor, prefer_file_cache); in GetDisassembly()
H A DSymbol.cpp541 lldb::DisassemblerSP Symbol::GetInstructions(const ExecutionContext &exe_ctx, in GetInstructions() function in Symbol
556 GetInstructions(exe_ctx, flavor, prefer_file_cache); in GetDisassembly()
/openbsd-src/gnu/llvm/lldb/tools/lldb-vscode/
H A DJSONUtils.cpp634 insts = function.GetInstructions(g_vsc.target); in CreateSource()
647 insts = symbol.GetInstructions(g_vsc.target); in CreateSource()
/openbsd-src/gnu/llvm/lldb/bindings/lua/
H A Dlua-typemaps.swig184 // Typemap for handling SBProcess::WriteMemory, SBTarget::GetInstructions...
/openbsd-src/gnu/llvm/lldb/utils/lui/
H A Dlldbutil.py56 insts = function_or_symbol.GetInstructions(target)
/openbsd-src/gnu/llvm/lldb/source/Target/
H A DTraceDumper.cpp501 symbol_info.sc.function->GetInstructions(exe_ctx, nullptr)) { in CalculateDisass()
/openbsd-src/gnu/llvm/lldb/bindings/python/
H A Dpython-typemaps.swig172 // For SBProcess::WriteMemory, SBTarget::GetInstructions and SBDebugger::DispatchInput.
/openbsd-src/gnu/llvm/lldb/packages/Python/lldbsuite/test/
H A Dlldbutil.py112 insts = function_or_symbol.GetInstructions(target)
/openbsd-src/gnu/llvm/lldb/source/Core/
H A DIOHandlerCursesGUI.cpp6916 m_disassembly_sp = m_sc.function->GetInstructions( in WindowDelegateDraw()
6930 m_disassembly_sp = m_sc.symbol->GetInstructions( in WindowDelegateDraw()
/openbsd-src/gnu/llvm/lldb/docs/use/
H A Dpython-reference.rst830 insts = function.GetInstructions(target)