Home
last modified time | relevance | path

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

/llvm-project-15.0.7/lldb/bindings/interface/
H A DSBSymbol.i53 GetPrologueByteSize ();
85 …prologue_size = property(GetPrologueByteSize, None, doc='''A read only property that returns the s…
H A DSBFunction.i84 GetPrologueByteSize ();
127 …prologue_size = property(GetPrologueByteSize, None, doc='''A read only property that returns the s…
/llvm-project-15.0.7/lldb/source/API/
H A DSBSymbol.cpp165 uint32_t SBSymbol::GetPrologueByteSize() { in GetPrologueByteSize() function in SBSymbol
169 return m_opaque_ptr->GetPrologueByteSize(); in GetPrologueByteSize()
H A DSBFunction.cpp184 uint32_t SBFunction::GetPrologueByteSize() { in GetPrologueByteSize() function in SBFunction
188 return m_opaque_ptr->GetPrologueByteSize(); in GetPrologueByteSize()
/llvm-project-15.0.7/lldb/test/API/python_api/default-constructor/
H A Dsb_symbol.py14 obj.GetPrologueByteSize()
H A Dsb_function.py18 obj.GetPrologueByteSize
/llvm-project-15.0.7/lldb/source/Plugins/Architecture/PPC64/
H A DArchitecturePPC64.cpp51 return func.GetPrologueByteSize(); in GetBytesToSkip()
/llvm-project-15.0.7/lldb/include/lldb/API/
H A DSBSymbol.h48 uint32_t GetPrologueByteSize();
H A DSBFunction.h49 uint32_t GetPrologueByteSize();
/llvm-project-15.0.7/lldb/source/Target/
H A DThreadPlanStepInRange.cpp254 bytes_to_skip = sc.function->GetPrologueByteSize(); in ShouldStop()
258 bytes_to_skip = sc.symbol->GetPrologueByteSize(); in ShouldStop()
/llvm-project-15.0.7/lldb/source/Breakpoint/
H A DBreakpointResolverName.cpp351 const uint32_t prologue_byte_size = sc.function->GetPrologueByteSize(); in SearchCallback()
368 const uint32_t prologue_byte_size = sc.symbol->GetPrologueByteSize(); in SearchCallback()
H A DBreakpointResolver.cpp316 const uint32_t prologue_byte_size = sc.function->GetPrologueByteSize(); in AddLocation()
/llvm-project-15.0.7/lldb/include/lldb/Symbol/
H A DSymbol.h197 uint32_t GetPrologueByteSize();
H A DFunction.h568 uint32_t GetPrologueByteSize();
/llvm-project-15.0.7/lldb/source/Symbol/
H A DSymbol.cpp260 uint32_t Symbol::GetPrologueByteSize() { in GetPrologueByteSize() function in Symbol
271 m_type_data = function->GetPrologueByteSize(); in GetPrologueByteSize()
H A DFunction.cpp528 uint32_t Function::GetPrologueByteSize() { in GetPrologueByteSize() function in Function
/llvm-project-15.0.7/lldb/source/Plugins/LanguageRuntime/RenderScript/RenderScriptRuntime/
H A DRenderScriptRuntime.cpp475 const uint32_t offset = sc.function->GetPrologueByteSize(); in SkipPrologue()