Home
last modified time | relevance | path

Searched refs:bytes_sent (Results 1 – 4 of 4) sorted by relevance

/llvm-project-15.0.7/lldb/source/Host/common/
H A DSocket.cpp246 int bytes_sent = 0; in Write() local
248 bytes_sent = Send(buf, num_bytes); in Write()
249 } while (bytes_sent < 0 && IsInterrupted()); in Write()
251 if (bytes_sent < 0) { in Write()
255 num_bytes = bytes_sent; in Write()
265 static_cast<int64_t>(bytes_sent), error.AsCString()); in Write()
/llvm-project-15.0.7/lldb/tools/darwin-debug/
H A Ddarwin-debug.cpp298 const int bytes_sent = ::send(s, pid_str, pid_str_len, 0); in main() local
300 if (pid_str_len != bytes_sent) { in main()
/llvm-project-15.0.7/lldb/source/Host/posix/
H A DConnectionFileDescriptorPosix.cpp383 size_t bytes_sent = src_len; in Write() local
384 error = m_io_sp->Write(src, bytes_sent); in Write()
393 static_cast<uint64_t>(bytes_sent), error.AsCString()); in Write()
421 return bytes_sent; in Write()
/llvm-project-15.0.7/lldb/tools/debugserver/source/
H A Ddebugserver.cpp696 const ssize_t bytes_sent = ::send(s, pid_str, pid_str_len, 0); in PortWasBoundCallbackUnixSocket() local
698 if (pid_str_len != bytes_sent) { in PortWasBoundCallbackUnixSocket()