Home
last modified time | relevance | path

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

/openbsd-src/gnu/llvm/lldb/examples/python/
H A Dprocess_events.py64 return_obj = lldb.SBCommandReturnObject()
66 command_interpreter.HandleCommand(command, return_obj)
67 if return_obj.Succeeded():
68 print(return_obj.GetOutput())
70 print(return_obj)
/openbsd-src/gnu/llvm/lldb/packages/Python/lldbsuite/test/
H A Dlldbutil.py1474 return_obj = lldb.SBCommandReturnObject()
1479 command, return_obj)
1482 return_obj.GetOutput(),
1495 return_obj = lldb.SBCommandReturnObject()
1504 testcase.dbg.GetCommandInterpreter().HandleCommand(command, return_obj)
1506 return_obj.Succeeded(),
H A Dlldbtest.py1659 return_obj = lldb.SBCommandReturnObject()
1663 self.ci.HandleCommand(command, return_obj, False)
1664 metrics_json = return_obj.GetOutput()
/openbsd-src/gnu/llvm/lldb/source/Commands/
H A DCommandObjectExpression.cpp483 CommandReturnObject return_obj( in IOHandlerInputComplete() local
485 EvaluateExpression(line.c_str(), *output_sp, *error_sp, return_obj); in IOHandlerInputComplete()