Home
last modified time | relevance | path

Searched refs:GetPrologueByteSize (Results 1 – 18 of 18) sorted by relevance

/external/llvm-project/lldb/source/API/
DSBSymbol.cpp173 uint32_t SBSymbol::GetPrologueByteSize() { in GetPrologueByteSize() function in SBSymbol
174 LLDB_RECORD_METHOD_NO_ARGS(uint32_t, SBSymbol, GetPrologueByteSize); in GetPrologueByteSize()
177 return m_opaque_ptr->GetPrologueByteSize(); in GetPrologueByteSize()
230 LLDB_REGISTER_METHOD(uint32_t, SBSymbol, GetPrologueByteSize, ()); in RegisterMethods()
DSBFunction.cpp192 uint32_t SBFunction::GetPrologueByteSize() { in GetPrologueByteSize() function in SBFunction
193 LLDB_RECORD_METHOD_NO_ARGS(uint32_t, SBFunction, GetPrologueByteSize); in GetPrologueByteSize()
196 return m_opaque_ptr->GetPrologueByteSize(); in GetPrologueByteSize()
267 LLDB_REGISTER_METHOD(uint32_t, SBFunction, GetPrologueByteSize, ()); in RegisterMethods()
/external/llvm-project/lldb/bindings/interface/
DSBSymbol.i55 GetPrologueByteSize ();
87 …prologue_size = property(GetPrologueByteSize, None, doc='''A read only property that returns the s…
DSBFunction.i84 GetPrologueByteSize ();
127 …prologue_size = property(GetPrologueByteSize, None, doc='''A read only property that returns the s…
/external/llvm-project/lldb/test/API/python_api/default-constructor/
Dsb_symbol.py14 obj.GetPrologueByteSize()
Dsb_function.py18 obj.GetPrologueByteSize
/external/llvm-project/lldb/source/Core/
DAddressResolverName.cpp147 sc.function->GetPrologueByteSize(); in SearchCallback()
170 const uint32_t prologue_byte_size = sc.symbol->GetPrologueByteSize(); in SearchCallback()
/external/llvm-project/lldb/include/lldb/API/
DSBSymbol.h48 uint32_t GetPrologueByteSize();
DSBFunction.h49 uint32_t GetPrologueByteSize();
/external/llvm-project/lldb/source/Plugins/Architecture/PPC64/
DArchitecturePPC64.cpp58 return func.GetPrologueByteSize(); in GetBytesToSkip()
/external/llvm-project/lldb/source/Target/
DThreadPlanStepInRange.cpp253 bytes_to_skip = sc.function->GetPrologueByteSize(); in ShouldStop()
257 bytes_to_skip = sc.symbol->GetPrologueByteSize(); in ShouldStop()
/external/llvm-project/lldb/source/Breakpoint/
DBreakpointResolverName.cpp349 const uint32_t prologue_byte_size = sc.function->GetPrologueByteSize(); in SearchCallback()
366 const uint32_t prologue_byte_size = sc.symbol->GetPrologueByteSize(); in SearchCallback()
DBreakpointResolver.cpp317 const uint32_t prologue_byte_size = sc.function->GetPrologueByteSize(); in AddLocation()
/external/llvm-project/lldb/include/lldb/Symbol/
DSymbol.h189 uint32_t GetPrologueByteSize();
DFunction.h572 uint32_t GetPrologueByteSize();
/external/llvm-project/lldb/source/Symbol/
DSymbol.cpp260 uint32_t Symbol::GetPrologueByteSize() { in GetPrologueByteSize() function in Symbol
271 m_type_data = function->GetPrologueByteSize(); in GetPrologueByteSize()
DFunction.cpp530 uint32_t Function::GetPrologueByteSize() { in GetPrologueByteSize() function in Function
/external/llvm-project/lldb/source/Plugins/LanguageRuntime/RenderScript/RenderScriptRuntime/
DRenderScriptRuntime.cpp475 const uint32_t offset = sc.function->GetPrologueByteSize(); in SkipPrologue()