Home
last modified time | relevance | path

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

/external/llvm-project/lldb/test/API/functionalities/signal/raise/
DTestRaise.py51 return_obj = lldb.SBCommandReturnObject()
54 (signal, pass_signal, stop_at_signal, notify_signal), return_obj)
56 return_obj.Succeeded(),
73 return_obj = lldb.SBCommandReturnObject()
75 "process handle %s " % signal, return_obj)
78 return_obj.GetOutput(),
/external/llvm-project/lldb/examples/python/
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)
/external/autotest/client/common_lib/test_utils/
Dmock.py135 def __init__(self, symbol, return_obj, *args, **dargs): argument
136 self.return_obj = return_obj
177 def and_return(self, return_obj): argument
178 self.return_obj = return_obj
488 return func_call.return_obj
/external/llvm-project/lldb/source/Commands/
DCommandObjectExpression.cpp497 CommandReturnObject return_obj( in IOHandlerInputComplete() local
499 EvaluateExpression(line.c_str(), *output_sp, *error_sp, return_obj); in IOHandlerInputComplete()