/third_party/curl/lib/ |
H A D | tftp.c | 138 int sbytes; member 429 size_t sbytes; in tftp_send_first() local 481 sbytes = 4 + strlen(filename) + strlen(mode); in tftp_send_first() 493 result = tftp_option_add(state, &sbytes, in tftp_send_first() 494 (char *)state->spacket.data + sbytes, in tftp_send_first() 497 result = tftp_option_add(state, &sbytes, in tftp_send_first() 498 (char *)state->spacket.data + sbytes, buf); in tftp_send_first() 503 result = tftp_option_add(state, &sbytes, in tftp_send_first() 504 (char *)state->spacket.data + sbytes, in tftp_send_first() 507 result = tftp_option_add(state, &sbytes, in tftp_send_first() 583 ssize_t sbytes; tftp_rx() local 706 ssize_t sbytes; tftp_tx() local [all...] |
/third_party/node/deps/openssl/openssl/engines/ |
H A D | e_afalg.c | 470 ssize_t sbytes; in afalg_start_cipher_sk() local 508 sbytes = sendmsg(actx->sfd, &msg, 0); in afalg_start_cipher_sk() 509 if (sbytes < 0) { in afalg_start_cipher_sk() 535 sbytes = sendmsg(actx->sfd, &msg, 0); in afalg_start_cipher_sk() 536 if (sbytes < 0) { in afalg_start_cipher_sk() 542 if (sbytes != (ssize_t) inl) { in afalg_start_cipher_sk() 543 ALG_WARN("Cipher operation send bytes %zd != inlen %zd\n", sbytes, in afalg_start_cipher_sk()
|
/third_party/openssl/engines/ |
H A D | e_afalg.c | 470 ssize_t sbytes; in afalg_start_cipher_sk() local 508 sbytes = sendmsg(actx->sfd, &msg, 0); in afalg_start_cipher_sk() 509 if (sbytes < 0) { in afalg_start_cipher_sk() 535 sbytes = sendmsg(actx->sfd, &msg, 0); in afalg_start_cipher_sk() 536 if (sbytes < 0) { in afalg_start_cipher_sk() 542 if (sbytes != (ssize_t) inl) { in afalg_start_cipher_sk() 543 ALG_WARN("Cipher operation send bytes %zd != inlen %zd\n", sbytes, in afalg_start_cipher_sk()
|
/third_party/node/deps/openssl/openssl/include/internal/ |
H A D | ktls.h | 191 off_t sbytes = 0; in ktls_sendfile() local 194 ret = sendfile(fd, s, off, size, NULL, &sbytes, flags); in ktls_sendfile() 195 if (ret == -1 && sbytes == 0) in ktls_sendfile() 197 return sbytes; in ktls_sendfile()
|
/third_party/openssl/include/internal/ |
H A D | ktls.h | 191 off_t sbytes = 0; in ktls_sendfile() local 194 ret = sendfile(fd, s, off, size, NULL, &sbytes, flags); in ktls_sendfile() 195 if (ret == -1 && sbytes == 0) in ktls_sendfile() 197 return sbytes; in ktls_sendfile()
|
/third_party/mbedtls/3rdparty/p256-m/p256-m/ |
H A D | p256-m.c | 1173 * out: sbytes the big-endian bytes representation of the scalar 1177 * sbytes, s, x, y must be discarded when returning non-zero. 1179 static int scalar_gen_with_pub(uint8_t sbytes[32], uint32_t s[8], in scalar_gen_with_pub() argument 1189 ret = p256_generate_random(sbytes, 32); in scalar_gen_with_pub() 1190 CT_POISON(sbytes, 32); in scalar_gen_with_pub() 1194 ret = scalar_from_bytes(s, sbytes); in scalar_gen_with_pub()
|
/third_party/python/Modules/ |
H A D | posixmodule.c | 9931 count as sbytes: Py_off_t 9941 Py_off_t sbytes, PyObject *headers, PyObject *trailers, in os_sendfile_impl() 9987 off_t sbytes; in os_sendfile_impl() local 10018 if (sbytes >= OFF_T_MAX - blen) { in os_sendfile_impl() 10023 sbytes += blen; in os_sendfile_impl() 10056 ret = sendfile(in_fd, out_fd, offset, &sbytes, &sf, flags); in os_sendfile_impl() 10058 ret = sendfile(in_fd, out_fd, offset, count, &sf, &sbytes, flags); in os_sendfile_impl() 10071 if (sbytes != 0) { in os_sendfile_impl() 10087 return Py_BuildValue("l", sbytes); in os_sendfile_impl() 10089 return Py_BuildValue("L", sbytes); in os_sendfile_impl() 9940 os_sendfile_impl(PyObject *module, int out_fd, int in_fd, Py_off_t offset, Py_off_t sbytes, PyObject *headers, PyObject *trailers, int flags) os_sendfile_impl() argument [all...] |
/third_party/python/Modules/clinic/ |
H A D | posixmodule.c.h | 5135 Py_off_t sbytes, PyObject *headers, PyObject *trailers, 5149 Py_off_t sbytes; in os_sendfile() local 5169 if (!Py_off_t_converter(args[3], &sbytes)) { in os_sendfile() 5192 return_value = os_sendfile_impl(module, out_fd, in_fd, offset, sbytes, headers, trailers, flags); in os_sendfile()
|
/third_party/rust/crates/libc/src/unix/bsd/freebsdlike/ |
H A D | mod.rs | 1653 sbytes: *mut ::off_t, in sendfile()
|