Searched refs:pid_str_len (Results 1 - 3 of 3) sorted by relevance

/external/lldb/tools/darwin-debug/
H A Ddarwin-debug.cpp303 const int pid_str_len = ::snprintf (pid_str, sizeof(pid_str), "%i", ::getpid()); local
304 const int bytes_sent = ::send (s, pid_str, pid_str_len, 0);
306 if (pid_str_len != bytes_sent)
308 perror("error: send (s, pid_str, pid_str_len, 0)");
/external/lldb/source/Plugins/Process/gdb-remote/
H A DGDBRemoteCommunicationServer.cpp524 const size_t pid_str_len = file_conn.Read (pid_str, sizeof(pid_str), 0, status, NULL);
525 if (pid_str_len > 0)
/external/lldb/tools/debugserver/source/
H A Ddebugserver.cpp671 const int pid_str_len = ::snprintf (pid_str, sizeof(pid_str), "%u", port); local
672 const int bytes_sent = ::send (s, pid_str, pid_str_len, 0);
674 if (pid_str_len != bytes_sent)
676 perror("error: send (s, pid_str, pid_str_len, 0)");

Completed in 108 milliseconds