Home
last modified time | relevance | path

Searched refs:total_bytes_read (Results 1 – 5 of 5) sorted by relevance

/external/puffin/src/
Dfile_stream.cc63 size_t total_bytes_read = 0; in Read() local
64 while (total_bytes_read < length) { in Read()
66 read(fd_, c_bytes + total_bytes_read, length - total_bytes_read); in Read()
69 total_bytes_read += bytes_read; in Read()
/external/protobuf/php/src/Google/Protobuf/Internal/
DCodedInputStream.php49 private $total_bytes_read; variable in Google\\Protobuf\\Internal\\CodedInputStream
68 $this->total_bytes_read = $end - $start;
83 return $this->total_bytes_read -
97 if ($closest_limit < $this->total_bytes_read) {
100 $this->buffer_size_after_limit = $this->total_bytes_read -
272 $current_position = $this->total_bytes_read -
/external/curl/lib/vtls/
Dschannel_verify.c229 DWORD total_bytes_read = 0; in add_certs_file_to_store() local
290 while(total_bytes_read < ca_file_bufsize) { in add_certs_file_to_store()
291 DWORD bytes_to_read = (DWORD)(ca_file_bufsize - total_bytes_read); in add_certs_file_to_store()
294 if(!ReadFile(ca_file_handle, ca_file_buffer + total_bytes_read, in add_certs_file_to_store()
306 ca_file_bufsize = total_bytes_read; in add_certs_file_to_store()
309 total_bytes_read += bytes_read; in add_certs_file_to_store()
/external/libchrome/mojo/core/
Dchannel_posix.cc448 size_t total_bytes_read = 0; in OnFileCanReadWithoutBlocking() local
463 total_bytes_read += bytes_read; in OnFileCanReadWithoutBlocking()
475 total_bytes_read < kMaxBatchReadCapacity && next_read_size > 0); in OnFileCanReadWithoutBlocking()
/external/libaom/libaom/av1/encoder/
Dencoder.c4706 size_t total_bytes_read = 0; local
4711 while (total_bytes_read < *frame_size) {
4751 total_bytes_read += obu_bytes_read;