HomeSort by relevance Sort by last modified time
    Searched refs:return_obj (Results 1 - 3 of 3) sorted by null

  /external/lldb/test/expression_command/call-restarts/
TestCallThatRestarts.py 69 return_obj = lldb.SBCommandReturnObject()
70 self.dbg.GetCommandInterpreter().HandleCommand("process handle SIGCHLD -s 0 -p 1 -n 0", return_obj)
71 self.assertTrue (return_obj.Succeeded() == True, "Set SIGCHLD to pass, no-stop")
109 self.dbg.GetCommandInterpreter().HandleCommand("process handle SIGCHLD -s 0 -p 1 -n 1", return_obj)
110 self.assertTrue (return_obj.Succeeded() == True, "Set SIGCHLD to pass, no-stop, notify")
129 self.dbg.GetCommandInterpreter().HandleCommand("process handle SIGCHLD -s 1 -p 1 -n 1", return_obj)
130 self.assertTrue (return_obj.Succeeded() == True, "Set SIGCHLD to pass, stop, notify")
136 self.dbg.GetCommandInterpreter().HandleCommand("process handle SIGCHLD -s 0 -p 1 -n 1", return_obj)
137 self.assertTrue (return_obj.Succeeded() == True, "Set SIGCHLD to pass, no-stop, notify")
  /external/lldb/examples/python/
process_events.py 57 return_obj = lldb.SBCommandReturnObject()
59 command_interpreter.HandleCommand( command, return_obj )
60 if return_obj.Succeeded():
61 print return_obj.GetOutput()
63 print return_obj
  /external/chromium_org/components/cloud_devices/tools/prototype/
prototype.py 825 return_obj = {
831 response_func(200, return_obj)

Completed in 390 milliseconds