Home
last modified time | relevance | path

Searched refs:sbytes (Results 1 – 6 of 6) sorted by relevance

/third_party/curl/lib/
Dtftp.c137 int sbytes; member
428 size_t sbytes; in tftp_send_first() local
480 sbytes = 4 + strlen(filename) + strlen(mode); in tftp_send_first()
492 result = tftp_option_add(state, &sbytes, in tftp_send_first()
493 (char *)state->spacket.data + sbytes, in tftp_send_first()
496 result = tftp_option_add(state, &sbytes, in tftp_send_first()
497 (char *)state->spacket.data + sbytes, buf); in tftp_send_first()
502 result = tftp_option_add(state, &sbytes, in tftp_send_first()
503 (char *)state->spacket.data + sbytes, in tftp_send_first()
506 result = tftp_option_add(state, &sbytes, in tftp_send_first()
[all …]
/third_party/gstreamer/gstplugins_good/gst/rtp/
Dgstrtpceltpay.c133 rtpceltpay->sbytes = 0; in gst_rtp_celt_pay_clear_queued()
142 rtpceltpay->sbytes += ssize; in gst_rtp_celt_pay_add_queued()
331 payload_len = rtpceltpay->bytes + rtpceltpay->sbytes; in gst_rtp_celt_pay_flush_queued()
348 payload = spayload + rtpceltpay->sbytes; in gst_rtp_celt_pay_flush_queued()
378 rtpceltpay->sbytes = 0; in gst_rtp_celt_pay_flush_queued()
434 payload_len = ssize + map.size + rtpceltpay->bytes + rtpceltpay->sbytes; in gst_rtp_celt_pay_handle_buffer()
Dgstrtpceltpay.h46 guint sbytes; /* bytes queued for sizes */ member
/third_party/openssl/engines/
De_afalg.c413 ssize_t sbytes; in afalg_start_cipher_sk() local
450 sbytes = sendmsg(actx->sfd, &msg, 0); in afalg_start_cipher_sk()
451 if (sbytes < 0) { in afalg_start_cipher_sk()
477 sbytes = sendmsg(actx->sfd, &msg, 0); in afalg_start_cipher_sk()
478 if (sbytes < 0) { in afalg_start_cipher_sk()
484 if (sbytes != (ssize_t) inl) { in afalg_start_cipher_sk()
485 ALG_WARN("Cipher operation send bytes %zd != inlen %zd\n", sbytes, in afalg_start_cipher_sk()
/third_party/python/Modules/
Dposixmodule.c9779 Py_off_t sbytes, PyObject *headers, PyObject *trailers, in os_sendfile_impl() argument
9825 off_t sbytes; in os_sendfile_impl() local
9856 if (sbytes >= OFF_T_MAX - blen) { in os_sendfile_impl()
9861 sbytes += blen; in os_sendfile_impl()
9894 ret = sendfile(in_fd, out_fd, offset, &sbytes, &sf, flags); in os_sendfile_impl()
9896 ret = sendfile(in_fd, out_fd, offset, count, &sf, &sbytes, flags); in os_sendfile_impl()
9909 if (sbytes != 0) { in os_sendfile_impl()
9925 return Py_BuildValue("l", sbytes); in os_sendfile_impl()
9927 return Py_BuildValue("L", sbytes); in os_sendfile_impl()
/third_party/python/Modules/clinic/
Dposixmodule.c.h5059 Py_off_t sbytes, PyObject *headers, PyObject *trailers,
5073 Py_off_t sbytes; in os_sendfile() local
5093 if (!Py_off_t_converter(args[3], &sbytes)) { in os_sendfile()
5116 … return_value = os_sendfile_impl(module, out_fd, in_fd, offset, sbytes, headers, trailers, flags); in os_sendfile()