Home
last modified time | relevance | path

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

/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/include/internal/
Dktls.h191 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/engines/
De_afalg.c470 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/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()
/third_party/rust/crates/libc/src/unix/bsd/freebsdlike/
Dmod.rs1653 sbytes: *mut ::off_t, in sendfile()