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/curl/lib/vtls/
Dschannel_verify.c92 DWORD total_bytes_read = 0; in add_certs_to_store() local
153 while(total_bytes_read < ca_file_bufsize) { in add_certs_to_store()
154 DWORD bytes_to_read = (DWORD)(ca_file_bufsize - total_bytes_read); in add_certs_to_store()
157 if(!ReadFile(ca_file_handle, ca_file_buffer + total_bytes_read, in add_certs_to_store()
168 ca_file_bufsize = total_bytes_read; in add_certs_to_store()
171 total_bytes_read += bytes_read; in add_certs_to_store()
/external/libchrome/mojo/core/
Dchannel_fuchsia.cc333 size_t total_bytes_read = 0; in OnZxHandleSignalled() local
350 total_bytes_read += bytes_read; in OnZxHandleSignalled()
367 } while (total_bytes_read < kMaxBatchReadCapacity && next_read_size > 0); in OnZxHandleSignalled()
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.c5571 size_t total_bytes_read = 0; in av1_convert_sect5obus_to_annexb() local
5576 while (total_bytes_read < *frame_size) { in av1_convert_sect5obus_to_annexb()
5616 total_bytes_read += obu_bytes_read; in av1_convert_sect5obus_to_annexb()