Home
last modified time | relevance | path

Searched refs:remote_url (Results 1 – 8 of 8) sorted by relevance

/external/chromium-trace/trace-viewer/hooks/
Dpre_push22 remote_url = sys.argv[2] if len(sys.argv) >= 2 else ''
23 if 'github.com' not in remote_url:
/external/lldb/source/Plugins/Process/MacOSX-Kernel/
DProcessKDP.cpp242 ProcessKDP::DoConnectRemote (Stream *strm, const char *remote_url) in DoConnectRemote() argument
251 if (remote_url == NULL || remote_url[0] == '\0') in DoConnectRemote()
253 error.SetErrorStringWithFormat ("invalid connection URL '%s'", remote_url); in DoConnectRemote()
265 if (conn_ap->Connect(remote_url, &error) == eConnectionStatusSuccess) in DoConnectRemote()
348 error.SetErrorStringWithFormat ("failed to connect to '%s'", remote_url); in DoConnectRemote()
DProcessKDP.h97 DoConnectRemote (lldb_private::Stream *strm, const char *remote_url);
/external/lldb/source/Plugins/Process/gdb-remote/
DProcessGDBRemote.h101 DoConnectRemote (lldb_private::Stream *strm, const char *remote_url);
DProcessGDBRemote.cpp536 ProcessGDBRemote::DoConnectRemote (Stream *strm, const char *remote_url) in DoConnectRemote() argument
543 error = ConnectToDebugserver (remote_url); in DoConnectRemote()
570 …eported after connecting to '%s', but state was not stopped: %s", pid, remote_url, StateAsCString … in DoConnectRemote()
573 … " was reported after connecting to '%s', but no stop reply packet was received", pid, remote_url); in DoConnectRemote()
/external/lldb/source/Commands/
DCommandObjectProcess.cpp1168 const char *remote_url = command.GetArgumentAtIndex(0); in DoExecute() local
1173 …error = process->ConnectRemote (&process->GetTarget().GetDebugger().GetOutputStream(), remote_url); in DoExecute()
1186 remote_url); in DoExecute()
/external/lldb/include/lldb/Target/
DProcess.h1800 ConnectRemote (Stream *strm, const char *remote_url);
2043 DoConnectRemote (Stream *strm, const char *remote_url) in DoConnectRemote() argument
/external/lldb/source/Target/
DProcess.cpp3233 Process::ConnectRemote (Stream *strm, const char *remote_url) in ConnectRemote() argument
3241 Error error (DoConnectRemote (strm, remote_url)); in ConnectRemote()