| /llvm-project-15.0.7/lldb/test/API/functionalities/unwind/noreturn/ |
| H A D | TestNoreturnUnwind.py | 44 if f.GetFunctionName() in ["abort", "__GI_abort"]: 51 print(" %d %s" % (f.GetFrameID(), f.GetFunctionName())) 61 func_c_frame_number).GetFunctionName() != "func_c": 70 1).GetFunctionName() == "func_b": 76 func_a_frame_number).GetFunctionName() != "func_a": 82 main_frame_number).GetFunctionName() != "main":
|
| /llvm-project-15.0.7/lldb/test/API/functionalities/unwind/sigtramp/ |
| H A D | TestSigtrampUnwind.py | 68 if f.GetFunctionName() == "handler": 70 if f.GetFunctionName() == "_sigtramp": 72 if f.GetFunctionName() == "__kill": 74 if f.GetFunctionName() == "main": 80 print(" %d %s" % (f.GetFrameID(), f.GetFunctionName()))
|
| /llvm-project-15.0.7/lldb/test/API/macosx/indirect_symbol/ |
| H A D | TestIndirectSymbols.py | 59 curr_function = thread.GetFrameAtIndex(0).GetFunctionName() 75 curr_function = thread.GetFrameAtIndex(0).GetFunctionName() 90 curr_function = thread.GetFrameAtIndex(0).GetFunctionName() 108 curr_function = thread.GetFrameAtIndex(0).GetFunctionName()
|
| /llvm-project-15.0.7/lldb/test/API/lang/c/stepping/ |
| H A D | TestStepAndBreakpoints.py | 167 self.assertEqual(thread.GetFrameAtIndex(0).GetFunctionName(), "a") 173 self.assertEqual(thread.GetFrameAtIndex(0).GetFunctionName(), "main") 202 func_name = thread.GetFrameAtIndex(0).GetFunctionName() 244 self.assertEqual(thread.GetFrameAtIndex(0).GetFunctionName(), "b") 256 0).GetFunctionName() == "complex") 283 self.assertEqual(thread.GetFrameAtIndex(0).GetFunctionName(), "b") 294 self.assertEqual(thread.GetFrameAtIndex(0).GetFunctionName(), "main")
|
| /llvm-project-15.0.7/lldb/test/API/functionalities/step_scripted/ |
| H A D | TestStepScripted.py | 37 self.assertEqual("foo", frame.GetFunctionName()) 43 self.assertEqual("main", frame.GetFunctionName()) 79 self.assertEqual("foo", frame.GetFunctionName()) 104 self.assertEqual("foo", frame.GetFunctionName())
|
| /llvm-project-15.0.7/lldb/test/API/api/multiple-debuggers/ |
| H A D | multi-process-driver.cpp | 76 if (strcmp (frame.GetFunctionName(), "main") == 0) in walk_stack_to_main() 144 … if (strcmp (process.GetThreadAtIndex(0).GetFrameAtIndex(0).GetFunctionName(), "foo") != 0) in do_one_debugger() 147 …d stopped at '%s'\n", threadnum, process.GetThreadAtIndex(0).GetFrameAtIndex(0).GetFunctionName()); in do_one_debugger() 172 … if (strcmp (process.GetThreadAtIndex(0).GetFrameAtIndex(0).GetFunctionName(), "bar") != 0) in do_one_debugger()
|
| /llvm-project-15.0.7/lldb/test/API/functionalities/return-value/ |
| H A D | TestReturnValue.py | 67 fun_name = frame.GetFunctionName() 88 fun_name = frame.GetFunctionName() 98 fun_name = frame.GetFunctionName() 128 fun_name = frame.GetFunctionName() 270 fun_name = frame.GetFunctionName()
|
| /llvm-project-15.0.7/lldb/test/API/lang/objc/direct-dispatch-step/ |
| H A D | TestObjCDirectDispatchStepping.py | 36 func_name = thread.GetFrameAtIndex(0).GetFunctionName() 43 func_name = thread.GetFrameAtIndex(0).GetFunctionName()
|
| /llvm-project-15.0.7/lldb/bindings/interface/ |
| H A D | SBFrame.i | 127 See also IsInlined().") GetFunctionName; 129 GetFunctionName(); 135 GetFunctionName() const; 352 …name = property(GetFunctionName, None, doc='''A read only property that retuns the name for the fu…
|
| /llvm-project-15.0.7/lldb/test/API/macosx/lc-note/addrable-bits/ |
| H A D | TestAddrableBitsCorefile.py | 36 if f.GetFunctionName() == "main": 54 if f.GetFunctionName() == "main":
|
| /llvm-project-15.0.7/lldb/test/API/functionalities/thread/num_threads/ |
| H A D | TestNumThreads.py | 95 if frame.GetFunctionName() is None: 97 if "thread3" in frame.GetFunctionName(): return True
|
| /llvm-project-15.0.7/lldb/source/Target/ |
| H A D | ThreadPlanStepInRange.cpp | 340 sc.GetFunctionName(Mangled::ePreferDemangledWithoutArguments) in FrameMatchesAvoidCriteria() 382 if (step_in_range_plan->m_step_into_target == sc.GetFunctionName()) { in DefaultShouldStopHereCallback() 387 const char *function_name = sc.GetFunctionName().AsCString(); in DefaultShouldStopHereCallback() 398 sc.GetFunctionName().AsCString(), in DefaultShouldStopHereCallback()
|
| /llvm-project-15.0.7/lldb/test/API/functionalities/breakpoint/breakpoint_hit_count/ |
| H A D | TestBreakpointHitCount.py | 39 … self.assertTrue(frame0.GetFunctionName() == "a(int)" or frame0.GetFunctionName() == "int a(int)");
|
| /llvm-project-15.0.7/lldb/include/lldb/API/ |
| H A D | SBFrame.h | 75 const char *GetFunctionName(); 81 const char *GetFunctionName() const;
|
| /llvm-project-15.0.7/lldb/test/Shell/Driver/Inputs/ |
| H A D | convenience.in | 12 script lldb.frame.GetFunctionName()
|
| /llvm-project-15.0.7/lldb/test/API/python_api/default-constructor/ |
| H A D | sb_frame.py | 21 obj.GetFunctionName()
|
| /llvm-project-15.0.7/lldb/test/API/lang/objc/exceptions/ |
| H A D | TestObjCExceptions.py | 157 self.assertEqual(len([f for f in history_thread.frames if f.GetFunctionName() == n]), 1) 180 self.assertEqual(len([f for f in history_thread.frames if f.GetFunctionName() == n]), 1)
|
| /llvm-project-15.0.7/lldb/test/API/functionalities/unwind/aarch64_unwind_pac/ |
| H A D | TestAArch64UnwindPAC.py | 42 self.assertEqual(frame.GetFunctionName(), backtrace[frame_idx])
|
| /llvm-project-15.0.7/lldb/test/API/functionalities/breakpoint/debugbreak/ |
| H A D | TestDebugBreak.py | 37 function_name = frame.GetFunctionName()
|
| /llvm-project-15.0.7/lldb/test/API/functionalities/inferior-assert/ |
| H A D | TestInferiorAssert.py | 241 frame.GetFunctionName()) 243 if 'main' == frame.GetFunctionName():
|
| /llvm-project-15.0.7/lldb/source/Expression/ |
| H A D | ExpressionVariable.cpp | 54 jitted_function.m_name != execution_unit_sp->GetFunctionName() && in RegisterExecutionUnit()
|
| /llvm-project-15.0.7/lldb/test/Shell/Driver/ |
| H A D | TestConvenienceVariables.test | 25 CHECK: script lldb.frame.GetFunctionName()
|
| /llvm-project-15.0.7/lldb/test/API/lang/objc/print-obj/ |
| H A D | TestPrintObj.py | 80 name = frame.GetFunctionName()
|
| /llvm-project-15.0.7/lldb/test/API/macosx/function-starts/ |
| H A D | TestFunctionStarts.py | 75 name = thread.frame[1].GetFunctionName()
|
| /llvm-project-15.0.7/lldb/examples/python/ |
| H A D | diagnose_unwind.py | 249 …print("Disassembly of %s, frame %d, address 0x%x" % (frame.GetFunctionName(), frame.GetFrameID(), … 285 … print("Unwind instructions for %s, frame %d" % (frame.GetFunctionName(), frame.GetFrameID()))
|