/llvm-project/lldb/examples/python/ |
H A D | pytracer.py | 27 def __init__(self, frame): argument 75 def __init__(self, frame, arginfo): argument 129 def __init__(self, frame): argument 162 def callEvent(self, frame): argument 165 def lineEvent(self, frame): argument 168 def returnEvent(self, frame, retval): argument 171 def exceptionEvent(self, frame, exception, value, traceback): argument 174 def cCallEvent(self, frame, cfunct): argument 177 def cReturnEvent(self, frame, cfunct): argument 180 def cExceptionEvent(self, frame, cfunct): argument [all …]
|
H A D | in_call_stack.py | 10 def in_call_stack(frame, bp_loc, arg_dict, _): argument
|
H A D | jump.py | 5 def parse_linespec(linespec, frame, result): argument
|
/llvm-project/lldb/test/API/functionalities/breakpoint/breakpoint_command/ |
H A D | bktptcmd.py | 8 def function(frame, bp_loc, dict): argument 12 def another_function(frame, bp_loc, extra_args, dict): argument 18 def a_third_function(frame, bp_loc, extra_args, dict): argument 24 def a_list_function(frame, bp_loc, extra_args, dict): argument 30 def empty_extra_args(frame, bp_loc, extra_args, dict): argument
|
/llvm-project/compiler-rt/test/asan/TestCases/ |
H A D | stack-oob-frames.cpp | 12 NOINLINE static void Frame0(int frame, char *a, char *b, char *c) { in Frame0() 23 NOINLINE static void Frame1(int frame, char *a, char *b) { in Frame1() 27 NOINLINE static void Frame2(int frame, char *a) { in Frame2() 31 NOINLINE static void Frame3(int frame) { in Frame3()
|
H A D | uar_and_exceptions.cpp | 24 char frame[FRAME_SIZE]; in Func() local
|
/llvm-project/lldb/source/API/ |
H A D | SBFrame.cpp | 127 if (StackFrame *frame = exe_ctx.GetFramePtr()) GetSymbolContext() local 143 StackFrame *frame = nullptr; GetModule() local 167 StackFrame *frame = nullptr; GetCompileUnit() local 191 StackFrame *frame = nullptr; GetFunction() local 215 StackFrame *frame = nullptr; GetSymbol() local 238 StackFrame *frame = nullptr; GetBlock() local 259 StackFrame *frame = nullptr; GetFrameBlock() local 280 StackFrame *frame = nullptr; GetLineEntry() local 304 StackFrame *frame = exe_ctx.GetFramePtr(); GetFrameID() local 317 StackFrame *frame = exe_ctx.GetFramePtr(); GetCFA() local 330 StackFrame *frame = nullptr; GetPC() local 359 if (StackFrame *frame = exe_ctx.GetFramePtr()) { SetPC() local 382 if (StackFrame *frame = exe_ctx.GetFramePtr()) { GetSP() local 405 if (StackFrame *frame = exe_ctx.GetFramePtr()) { GetFP() local 423 StackFrame *frame = exe_ctx.GetFramePtr(); GetPCAddress() local 450 StackFrame *frame = exe_ctx.GetFramePtr(); GetValueForVariablePath() local 472 StackFrame *frame = nullptr; GetValueForVariablePath() local 501 StackFrame *frame = exe_ctx.GetFramePtr(); FindVariable() local 526 StackFrame *frame = nullptr; FindVariable() local 552 StackFrame *frame = exe_ctx.GetFramePtr(); FindValue() local 576 StackFrame *frame = nullptr; FindValue() local 721 if (auto *frame = exe_ctx.GetFramePtr()) Disassemble() local 736 StackFrame *frame = exe_ctx.GetFramePtr(); GetVariables() local 786 StackFrame *frame = nullptr; GetVariables() local 897 StackFrame *frame = nullptr; GetRegisters() local 928 StackFrame *frame = nullptr; FindRegister() local 958 StackFrame *frame = nullptr; GetDescriptionWithFormat() local 993 StackFrame *frame; GetDescription() local 1018 StackFrame *frame = exe_ctx.GetFramePtr(); EvaluateExpression() local 1054 StackFrame *frame = exe_ctx.GetFramePtr(); EvaluateExpression() local 1077 StackFrame *frame = exe_ctx.GetFramePtr(); EvaluateExpression() local 1105 StackFrame *frame = nullptr; EvaluateExpression() local 1168 StackFrame *frame = nullptr; IsInlined() local 1198 StackFrame *frame = exe_ctx.GetFramePtr(); IsArtificial() local 1217 StackFrame *frame = nullptr; GuessLanguage() local 1239 StackFrame *frame = nullptr; GetFunctionName() local 1282 StackFrame *frame = nullptr; GetDisplayFunctionName() local [all...] |
/llvm-project/lldb/test/API/commands/frame/recognizer/ |
H A D | recognizer.py | 7 def get_recognized_arguments(self, frame): argument 37 def get_recognized_arguments(self, frame) argument [all...] |
/llvm-project/compiler-rt/test/sanitizer_common/TestCases/Linux/ |
H A D | internal_symbolizer.cpp | 87 std::string Symbolize(FrameInfo frame) { in Symbolize() 96 std::string GetRegex(const FrameInfo &frame) { in GetRegex() 102 auto frame = InlineFunction(); in TestInline() local 111 auto frame = NoInlineFunction(); in TestNoInline() local 118 auto frame = A<10>().RecursiveTemplateFunction(0); in TestLongFunctionNames() local
|
/llvm-project/lldb/test/API/lang/c/register_variables/ |
H A D | TestRegisterVariables.py | 164 def is_variable_in_register(self, frame, var_name): argument 208 def is_struct_pointer_in_register(self, frame, var_name, trace): argument
|
/llvm-project/cross-project-tests/debuginfo-tests/llgdb-tests/ |
H A D | llgdb.py | 142 frame = thread.GetFrameAtIndex(0) variable 147 frame = thread.GetFrameAtIndex(0) variable
|
/llvm-project/lldb/source/Target/ |
H A D | StackFrameRecognizer.cpp | 34 RecognizeFrame(lldb::StackFrameSP frame) RecognizeFrame() argument 108 GetRecognizerForFrame(StackFrameSP frame) GetRecognizerForFrame() argument 149 RecognizeFrame(StackFrameSP frame) RecognizeFrame() argument
|
H A D | ThreadPlanShouldStopHere.cpp | 62 StackFrame *frame = current_plan->GetThread().GetStackFrameAtIndex(0).get(); in DefaultShouldStopHereCallback() local 104 StackFrame *frame = current_plan->GetThread().GetStackFrameAtIndex(0).get(); in DefaultStepFromHereCallback() local
|
/llvm-project/clang/test/CodeGen/ |
H A D | 2003-08-21-BinOp-Type-Mismatch.c | 7 unsigned int frame, focus; in foo() local
|
/llvm-project/lldb/test/API/functionalities/conditional_break/ |
H A D | conditional_break.py | 4 def stop_if_called_from_a(frame, bp_loc, dict): argument
|
/llvm-project/lldb/utils/lui/ |
H A D | lldbutil.py | 866 def get_parent_frame(frame): argument 882 def get_args_as_string(frame, showFuncName=True): argument 906 def print_registers(frame, string_buffer=False): argument 933 def get_registers(frame, kind): argument 946 def get_GPRs(frame): argument 960 def get_FPRs(frame): argument 974 def get_ESRs(frame): argument
|
/llvm-project/lldb/source/Plugins/ExpressionParser/Clang/ |
H A D | ClangExpressionUtil.cpp | 17 lldb::ValueObjectSP GetLambdaValueObject(StackFrame *frame) { in GetLambdaValueObject() argument
|
/llvm-project/lldb/test/API/commands/watchpoints/watchpoint_commands/command/ |
H A D | watchpoint_command.py | 6 def watchpoint_command(frame, wp, dict): argument
|
/llvm-project/clang/test/CodeGenObjCXX/ |
H A D | property-objects.mm | 21 @property CGRect frame; property 23 - (CGRect)frame; method 44 - (CGRect)frame {return bounds;} method
|
/llvm-project/lldb/source/Plugins/Trace/common/ |
H A D | ThreadPostMortemTrace.cpp | 32 ThreadPostMortemTrace::CreateRegisterContextForFrame(StackFrame *frame) { in CreateRegisterContextForFrame()
|
/llvm-project/lldb/test/API/macosx/tbi-honored/ |
H A D | TestTBIHonored.py | 12 def do_variable_access_tests(self, frame): argument
|
/llvm-project/lldb/test/API/lang/cpp/global_operators/ |
H A D | TestCppGlobalOperators.py | 68 def do_new_test(self, frame, expr, expected_value_name): argument
|
/llvm-project/cross-project-tests/debuginfo-tests/dexter/dex/debugger/dbgeng/ |
H A D | probe_process.py | 14 def __init__(self, frame, idx, Symbols): argument
|
/llvm-project/lldb/source/Commands/ |
H A D | CommandObjectDisassemble.cpp | 287 StackFrame *frame = m_exe_ctx.GetFramePtr(); GetCurrentFunctionRanges() local 319 StackFrame *frame = m_exe_ctx.GetFramePtr(); GetCurrentLineRanges() local 388 StackFrame *frame = m_exe_ctx.GetFramePtr(); GetPCRanges() local [all...] |
/llvm-project/lldb/test/API/functionalities/var_path/ |
H A D | TestVarPath.py | 22 def verify_point(self, frame, var_name, var_typename, x_value, y_value): argument
|