Home
last modified time | relevance | path

Searched refs:GetFunctionName (Results 1 – 25 of 62) sorted by relevance

123

/llvm-project-15.0.7/lldb/test/API/functionalities/unwind/noreturn/
H A DTestNoreturnUnwind.py44 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 DTestSigtrampUnwind.py68 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 DTestIndirectSymbols.py59 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 DTestStepAndBreakpoints.py167 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 DTestStepScripted.py37 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 Dmulti-process-driver.cpp76 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 DTestReturnValue.py67 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 DTestObjCDirectDispatchStepping.py36 func_name = thread.GetFrameAtIndex(0).GetFunctionName()
43 func_name = thread.GetFrameAtIndex(0).GetFunctionName()
/llvm-project-15.0.7/lldb/bindings/interface/
H A DSBFrame.i127 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 DTestAddrableBitsCorefile.py36 if f.GetFunctionName() == "main":
54 if f.GetFunctionName() == "main":
/llvm-project-15.0.7/lldb/test/API/functionalities/thread/num_threads/
H A DTestNumThreads.py95 if frame.GetFunctionName() is None:
97 if "thread3" in frame.GetFunctionName(): return True
/llvm-project-15.0.7/lldb/source/Target/
H A DThreadPlanStepInRange.cpp340 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 DTestBreakpointHitCount.py39 … self.assertTrue(frame0.GetFunctionName() == "a(int)" or frame0.GetFunctionName() == "int a(int)");
/llvm-project-15.0.7/lldb/include/lldb/API/
H A DSBFrame.h75 const char *GetFunctionName();
81 const char *GetFunctionName() const;
/llvm-project-15.0.7/lldb/test/Shell/Driver/Inputs/
H A Dconvenience.in12 script lldb.frame.GetFunctionName()
/llvm-project-15.0.7/lldb/test/API/python_api/default-constructor/
H A Dsb_frame.py21 obj.GetFunctionName()
/llvm-project-15.0.7/lldb/test/API/lang/objc/exceptions/
H A DTestObjCExceptions.py157 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 DTestAArch64UnwindPAC.py42 self.assertEqual(frame.GetFunctionName(), backtrace[frame_idx])
/llvm-project-15.0.7/lldb/test/API/functionalities/breakpoint/debugbreak/
H A DTestDebugBreak.py37 function_name = frame.GetFunctionName()
/llvm-project-15.0.7/lldb/test/API/functionalities/inferior-assert/
H A DTestInferiorAssert.py241 frame.GetFunctionName())
243 if 'main' == frame.GetFunctionName():
/llvm-project-15.0.7/lldb/source/Expression/
H A DExpressionVariable.cpp54 jitted_function.m_name != execution_unit_sp->GetFunctionName() && in RegisterExecutionUnit()
/llvm-project-15.0.7/lldb/test/Shell/Driver/
H A DTestConvenienceVariables.test25 CHECK: script lldb.frame.GetFunctionName()
/llvm-project-15.0.7/lldb/test/API/lang/objc/print-obj/
H A DTestPrintObj.py80 name = frame.GetFunctionName()
/llvm-project-15.0.7/lldb/test/API/macosx/function-starts/
H A DTestFunctionStarts.py75 name = thread.frame[1].GetFunctionName()
/llvm-project-15.0.7/lldb/examples/python/
H A Ddiagnose_unwind.py249 …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()))

123