Home
last modified time | relevance | path

Searched refs:return_obj (Results 1 – 6 of 6) sorted by relevance

/llvm-project-15.0.7/lldb/test/API/functionalities/module_cache/debug_index/
H A DTestDebugIndexCache.py36 return_obj = lldb.SBCommandReturnObject()
40 self.ci.HandleCommand(command, return_obj, False)
41 metrics_json = return_obj.GetOutput()
/llvm-project-15.0.7/lldb/examples/python/
H A Dprocess_events.py66 return_obj = lldb.SBCommandReturnObject()
68 command_interpreter.HandleCommand(command, return_obj)
69 if return_obj.Succeeded():
70 print(return_obj.GetOutput())
72 print(return_obj)
/llvm-project-15.0.7/lldb/test/API/functionalities/signal/raise/
H A DTestRaise.py53 return_obj = lldb.SBCommandReturnObject()
56 (signal, pass_signal, stop_at_signal, notify_signal), return_obj)
58 return_obj.Succeeded(),
/llvm-project-15.0.7/lldb/test/API/commands/statistics/basic/
H A DTestStats.py69 return_obj = lldb.SBCommandReturnObject()
75 self.ci.HandleCommand(command, return_obj, False)
76 metrics_json = return_obj.GetOutput()
/llvm-project-15.0.7/lldb/packages/Python/lldbsuite/test/
H A Dlldbutil.py1547 return_obj = lldb.SBCommandReturnObject()
1552 command, return_obj)
1555 return_obj.GetOutput(),
1568 return_obj = lldb.SBCommandReturnObject()
1577 testcase.dbg.GetCommandInterpreter().HandleCommand(command, return_obj)
1579 return_obj.Succeeded(),
/llvm-project-15.0.7/lldb/source/Commands/
H A DCommandObjectExpression.cpp476 CommandReturnObject return_obj( in IOHandlerInputComplete() local
478 EvaluateExpression(line.c_str(), *output_sp, *error_sp, return_obj); in IOHandlerInputComplete()