Searched refs:unix_socket_name (Results 1 - 6 of 6) sorted by relevance

/external/lldb/tools/darwin-debug/
H A Ddarwin-debug.cpp187 std::string unix_socket_name; local
248 unix_socket_name.assign (optarg);
271 if (show_usage || argc <= 0 || unix_socket_name.empty())
290 ::strncpy(saddr_un.sun_path, unix_socket_name.c_str(), sizeof(saddr_un.sun_path) - 1);
/external/lldb/tools/debugserver/source/
H A Ddebugserver.cpp638 const char *unix_socket_name = (const char *)baton; local
640 if (unix_socket_name && unix_socket_name[0])
653 ::strncpy(saddr_un.sun_path, unix_socket_name, sizeof(saddr_un.sun_path) - 1);
688 StartListening (RNBRemote *remote, const char *listen_host, int listen_port, const char *unix_socket_name) argument
694 if (remote->Comm().Listen(listen_host, listen_port, PortWasBoundCallback, unix_socket_name) != rnb_success)
841 std::string unix_socket_name; // If we need to handshake with our parent process, an option will be passed down that specifies a unix socket name to use local
1082 unix_socket_name.assign (optarg);
1301 if (!StartListening (remote, listen_host.c_str(), listen_port, unix_socket_name.c_str()))
1414 if (!StartListening (remote, listen_host.c_str(), listen_port, unix_socket_name
[all...]
/external/lldb/source/Plugins/Process/gdb-remote/
H A DGDBRemoteCommunicationServer.cpp680 char unix_socket_name[PATH_MAX] = "/tmp/XXXXXX";
681 if (::mktemp (unix_socket_name) == NULL)
687 ::snprintf (connect_url, sizeof(connect_url), "unix-accept://%s", unix_socket_name);
690 lldb::thread_t accept_thread = Host::ThreadCreate (unix_socket_name,
700 unix_socket_name,
721 ::unlink (unix_socket_name);
H A DGDBRemoteCommunication.cpp516 const char *unix_socket_name, // For handshaking
575 if (unix_socket_name && unix_socket_name[0])
578 debugserver_args.AppendArgument(unix_socket_name);
H A DGDBRemoteCommunication.h113 const char *unix_socket_name,
/external/lldb/source/Plugins/Process/MacOSX-Kernel/
H A DCommunicationKDP.h151 const char *unix_socket_name,

Completed in 101 milliseconds