Home
last modified time | relevance | path

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

/third_party/libuv/test/
Dbenchmark-pump.c64 static int64_t nsent = 0; variable
95 gbit(nsent, STATS_INTERVAL)); in show_stats()
123 nsent = 0; in show_stats()
195 nsent += sizeof write_buffer; in write_cb()
/third_party/libuv/src/unix/
Dfs.c820 ssize_t nsent; in uv__fs_sendfile_emul() local
860 for (nsent = 0; (size_t) nsent < len; ) { in uv__fs_sendfile_emul()
861 buflen = len - nsent; in uv__fs_sendfile_emul()
877 if (use_pread && nsent == 0 && (errno == EIO || errno == ESPIPE)) { in uv__fs_sendfile_emul()
882 if (nsent == 0) in uv__fs_sendfile_emul()
883 nsent = -1; in uv__fs_sendfile_emul()
899 nsent = -1; in uv__fs_sendfile_emul()
913 nsent = -1; in uv__fs_sendfile_emul()
919 nsent += nread; in uv__fs_sendfile_emul()
923 if (nsent != -1) in uv__fs_sendfile_emul()
[all …]
/third_party/libxml2/
Dnanohttp.c471 int nsent = send(ctxt->fd, SEND_ARG2_CAST (xmt_ptr + total_sent), in xmlNanoHTTPSend() local
474 if (nsent > 0) in xmlNanoHTTPSend()
475 total_sent += nsent; in xmlNanoHTTPSend()
476 else if ((nsent == -1) && in xmlNanoHTTPSend()
/third_party/rust/crates/rustix/src/backend/libc/fs/
Dsyscalls.rs1318 let nsent = ret_ssize_t(c::sendfile64( in sendfile() localVariable
1324 Ok(nsent as usize) in sendfile()