Home
last modified time | relevance | path

Searched refs:left_to_send (Results 1 – 9 of 9) sorted by relevance

/dports/graphics/libgphoto2/libgphoto2-2.5.26/camlibs/minolta/dimagev/
H A Dupload.c32 int left_to_send=0; in dimagev_put_file() local
138 left_to_send = ( size - 992 ); in dimagev_put_file()
141 if ( left_to_send > 993 ) { in dimagev_put_file()
148 left_to_send-=993; in dimagev_put_file()
151 left_to_send, sent_packets) ) == NULL ) { in dimagev_put_file()
/dports/net/mpich2/mpich2-1.5/src/mpid/ch3/channels/nemesis/netmod/wintcp/
H A Dwintcp_lmt.c195 int left_to_send; in MPID_nem_tcp_module_lmt_start_send() local
198 left_to_send = last - req->dev.segment_first; in MPID_nem_tcp_module_lmt_start_send()
205 while (left_to_send) in MPID_nem_tcp_module_lmt_start_send()
207 if (left_to_send > CHUNK) in MPID_nem_tcp_module_lmt_start_send()
210 l = left_to_send; in MPID_nem_tcp_module_lmt_start_send()
217 left_to_send -= nb; in MPID_nem_tcp_module_lmt_start_send()
231 left_to_send -= nb; in MPID_nem_tcp_module_lmt_start_send()
232 while (left_to_send) in MPID_nem_tcp_module_lmt_start_send()
246 left_to_send -= nb; in MPID_nem_tcp_module_lmt_start_send()
/dports/www/chromium-legacy/chromium-88.0.4324.182/chromecast/media/cma/backend/android/
H A Daudio_sink_android_audiotrack_impl.cc311 int left_to_send = in FeedDataContinue() local
313 LOG(INFO) << __func__ << "(" << this << "): send remaining " << left_to_send in FeedDataContinue()
318 left_to_send); in FeedDataContinue()
322 left_to_send); in FeedDataContinue()
324 DCHECK(written == left_to_send); in FeedDataContinue()
/dports/www/trafficserver/trafficserver-9.1.1/iocore/net/
H A DNetVCTest.cc279 int left_to_send = bytes_to_send - actual_bytes_sent; in write_handler() local
280 ink_assert(left_to_send >= 0); in write_handler()
281 int to_fill = std::min(left_to_send, write_bytes_to_add_per); in write_handler()
/dports/databases/p5-MongoDB/MongoDB-v2.2.2/lib/MongoDB/Op/
H A D_BulkWrite.pm177 my @left_to_send = ($docs);
183 while (@left_to_send) {
184 my $chunk = shift @left_to_send;
246 unshift @left_to_send, $self->_split_chunk( $chunk, $error->size );
/dports/security/py-openssl/pyOpenSSL-20.0.1/build/lib/OpenSSL/
H A DSSL.py1673 left_to_send = len(buf)
1676 while left_to_send:
1680 self._ssl, data + total_sent, min(left_to_send, 2147483647)
1684 left_to_send -= result
/dports/security/py-openssl/pyOpenSSL-20.0.1/src/OpenSSL/
H A DSSL.py1673 left_to_send = len(buf)
1676 while left_to_send:
1680 self._ssl, data + total_sent, min(left_to_send, 2147483647)
1684 left_to_send -= result
/dports/security/py-openssl/stage/usr/local/lib/python3.8/site-packages/OpenSSL/
H A DSSL.py1673 left_to_send = len(buf)
1676 while left_to_send:
1680 self._ssl, data + total_sent, min(left_to_send, 2147483647)
1684 left_to_send -= result
/dports/www/libmicrohttpd/libmicrohttpd-0.9.74/src/microhttpd/
H A Dconnection.c1136 uint64_t left_to_send; in try_ready_chunked_body() local
1173 left_to_send = MHD_SIZE_UNKNOWN; in try_ready_chunked_body()
1175 left_to_send = response->total_size - connection->response_write_position; in try_ready_chunked_body()
1181 if (left_to_send < size_to_fill) in try_ready_chunked_body()
1182 size_to_fill = (size_t) left_to_send; in try_ready_chunked_body()
1184 if (0 == left_to_send) in try_ready_chunked_body()