Searched refs:bytes_sent (Results 1 - 5 of 5) sorted by relevance

/openbsd-current/gnu/llvm/lldb/source/Host/common/
H A DSocket.cpp246 int bytes_sent = 0; local
248 bytes_sent = Send(buf, num_bytes);
249 } while (bytes_sent < 0 && IsInterrupted());
251 if (bytes_sent < 0) {
255 num_bytes = bytes_sent;
265 static_cast<int64_t>(bytes_sent), error.AsCString());
/openbsd-current/gnu/llvm/lldb/tools/darwin-debug/
H A Ddarwin-debug.cpp298 const int bytes_sent = ::send(s, pid_str, pid_str_len, 0); local
300 if (pid_str_len != bytes_sent) {
/openbsd-current/sys/dev/pci/drm/amd/amdgpu/
H A Dsmu_v11_0_i2c.c274 u32 bytes_sent, reg, ret = I2C_OK; local
277 bytes_sent = 0;
311 data[bytes_sent]);
322 if (bytes_sent == 0 && i2c_flag & I2C_X_RESTART)
332 bytes_sent++;
/openbsd-current/gnu/llvm/lldb/source/Host/posix/
H A DConnectionFileDescriptorPosix.cpp383 size_t bytes_sent = src_len; local
384 error = m_io_sp->Write(src, bytes_sent);
393 static_cast<uint64_t>(bytes_sent), error.AsCString());
421 return bytes_sent;
/openbsd-current/gnu/llvm/lldb/tools/debugserver/source/
H A Ddebugserver.cpp696 const ssize_t bytes_sent = ::send(s, pid_str, pid_str_len, 0); local
698 if (pid_str_len != bytes_sent) {

Completed in 174 milliseconds