/external/llvm-project/lldb/bindings/interface/ |
D | SBBreakpointLocation.i | 77 The function takes three arguments (frame, bp_loc, dict).") SetScriptCallbackFunction; 79 SetScriptCallbackFunction (const char *callback_function_name); 84 …akpoint is hit the extra_args will be passed to the callback function.") SetScriptCallbackFunction; 86 SetScriptCallbackFunction (const char *callback_function_name,
|
D | SBBreakpoint.i | 181 …e name of the script function to be called when the breakpoint is hit.") SetScriptCallbackFunction; 183 SetScriptCallbackFunction (const char *callback_function_name); 188 …akpoint is hit the extra_args will be passed to the callback function.") SetScriptCallbackFunction; 190 SetScriptCallbackFunction (const char *callback_function_name,
|
D | SBBreakpointName.i | 85 void SetScriptCallbackFunction(const char *callback_function_name); 88 SetScriptCallbackFunction (const char *callback_function_name,
|
/external/llvm-project/lldb/test/API/functionalities/breakpoint/breakpoint_command/ |
D | TestBreakpointCommandsFromPython.py | 99 func_bkpt.SetScriptCallbackFunction("bktptcmd.function") 105 error = fancy_bkpt.SetScriptCallbackFunction("bktptcmd.another_function", extra_args) 118 error = not_so_fancy_bkpt.SetScriptCallbackFunction("bktptcmd.empty_extra_args", empty_args) 168 error = bkpt.SetScriptCallbackFunction("bktptcmd.function", extra_args) 171 error = bkpt.SetScriptCallbackFunction("bktptcmd.useless_function", extra_args) 174 error = bkpt.SetScriptCallbackFunction("bktptcmd.nosuch_function", extra_args)
|
/external/llvm-project/lldb/include/lldb/API/ |
D | SBBreakpointLocation.h | 56 void SetScriptCallbackFunction(const char *callback_function_name); 58 SBError SetScriptCallbackFunction(const char *callback_function_name,
|
D | SBBreakpointName.h | 86 void SetScriptCallbackFunction(const char *callback_function_name); 88 SBError SetScriptCallbackFunction(const char *callback_function_name,
|
D | SBBreakpoint.h | 97 void SetScriptCallbackFunction(const char *callback_function_name); 99 SBError SetScriptCallbackFunction(const char *callback_function_name,
|
/external/llvm-project/lldb/source/API/ |
D | SBBreakpointLocation.cpp | 211 void SBBreakpointLocation::SetScriptCallbackFunction( in SetScriptCallbackFunction() function in SBBreakpointLocation 213 LLDB_RECORD_METHOD(void, SBBreakpointLocation, SetScriptCallbackFunction, in SetScriptCallbackFunction() 217 SBError SBBreakpointLocation::SetScriptCallbackFunction( in SetScriptCallbackFunction() function in SBBreakpointLocation 220 LLDB_RECORD_METHOD(SBError, SBBreakpointLocation, SetScriptCallbackFunction, in SetScriptCallbackFunction() 500 LLDB_REGISTER_METHOD(void, SBBreakpointLocation, SetScriptCallbackFunction, in RegisterMethods() 502 LLDB_REGISTER_METHOD(SBError, SBBreakpointLocation, SetScriptCallbackFunction, in RegisterMethods()
|
D | SBBreakpointName.cpp | 570 void SBBreakpointName::SetScriptCallbackFunction( in SetScriptCallbackFunction() function in SBBreakpointName 572 LLDB_RECORD_METHOD(void, SBBreakpointName, SetScriptCallbackFunction, in SetScriptCallbackFunction() 575 SetScriptCallbackFunction(callback_function_name, empty_args); in SetScriptCallbackFunction() 578 SBError SBBreakpointName::SetScriptCallbackFunction( in SetScriptCallbackFunction() function in SBBreakpointName 581 LLDB_RECORD_METHOD(SBError, SBBreakpointName, SetScriptCallbackFunction, in SetScriptCallbackFunction() 749 LLDB_REGISTER_METHOD(void, SBBreakpointName, SetScriptCallbackFunction, in RegisterMethods() 751 LLDB_REGISTER_METHOD(SBError, SBBreakpointName, SetScriptCallbackFunction, in RegisterMethods()
|
D | SBBreakpoint.cpp | 619 void SBBreakpoint::SetScriptCallbackFunction( in SetScriptCallbackFunction() function in SBBreakpoint 621 LLDB_RECORD_METHOD(void, SBBreakpoint, SetScriptCallbackFunction, in SetScriptCallbackFunction() 624 SetScriptCallbackFunction(callback_function_name, empty_args); in SetScriptCallbackFunction() 627 SBError SBBreakpoint::SetScriptCallbackFunction( in SetScriptCallbackFunction() function in SBBreakpoint 630 LLDB_RECORD_METHOD(SBError, SBBreakpoint, SetScriptCallbackFunction, in SetScriptCallbackFunction() 1048 LLDB_REGISTER_METHOD(void, SBBreakpoint, SetScriptCallbackFunction, in RegisterMethods() 1050 LLDB_REGISTER_METHOD(lldb::SBError, SBBreakpoint, SetScriptCallbackFunction, in RegisterMethods()
|
/external/llvm-project/lldb/test/API/python_api/default-constructor/ |
D | sb_breakpoint.py | 31 obj.SetScriptCallbackFunction(None)
|
D | sb_breakpointname.py | 29 obj.SetScriptCallbackFunction("AFunction")
|
/external/llvm-project/clang/utils/ |
D | clangdiag.py | 145 bp.SetScriptCallbackFunction('clangdiag.setDiagBreakpoint')
|