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

  /external/lldb/test/python_api/default-constructor/
sb_process.py 19 obj.RemoteLaunch(None, None, None, None, None, None, 0, False, error)
  /external/lldb/include/lldb/API/
SBProcess.h 98 RemoteLaunch (char const **argv,
  /external/lldb/scripts/Python/interface/
SBProcess.i 122 ) RemoteLaunch;
124 RemoteLaunch (char const **argv,
  /external/lldb/test/python_api/process/
TestProcessAPI.py 62 """Test SBProcess.RemoteLaunch() API with a process not in eStateConnected, and it should fail."""
301 """Test SBProcess.RemoteLaunch() API with a process not in eStateConnected, and it should fail."""
316 success = process.RemoteLaunch(None, None, None, None, None, None, 0, False, error)
317 self.assertTrue(not success, "RemoteLaunch() should fail for process state != eStateConnected")
  /external/lldb/source/API/
SBProcess.cpp 136 SBProcess::RemoteLaunch (char const **argv,
148 log->Printf ("SBProcess(%p)::RemoteLaunch (argv=%p, envp=%p, stdin=%s, stdout=%s, stderr=%s, working-dir=%s, launch_flags=0x%x, stop_at_entry=%i, &error (%p))...",
185 error.SetErrorString ("must be in eStateConnected to call RemoteLaunch");
196 log->Printf ("SBProcess(%p)::RemoteLaunch (...) => SBError (%p): %s", process_sp.get(), error.get(), sstr.GetData());
    [all...]

Completed in 686 milliseconds