/external/puffin/src/ |
D | file_stream.cc | 63 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/ |
D | CodedInputStream.php | 49 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/llvm-project/lldb/tools/debugserver/source/MacOSX/ |
D | MachVMMemory.cpp | 169 nub_size_t total_bytes_read = 0; in Read() local 172 while (total_bytes_read < data_count) { in Read() 174 MaxBytesLeftInPage(task, curr_addr, data_count - total_bytes_read); in Read() 197 total_bytes_read += curr_bytes_read; in Read() 204 return total_bytes_read; in Read()
|
/external/curl/lib/vtls/ |
D | schannel_verify.c | 92 DWORD total_bytes_read = 0; in add_certs_to_store() local 156 while(total_bytes_read < ca_file_bufsize) { in add_certs_to_store() 157 DWORD bytes_to_read = (DWORD)(ca_file_bufsize - total_bytes_read); in add_certs_to_store() 160 if(!ReadFile(ca_file_handle, ca_file_buffer + total_bytes_read, in add_certs_to_store() 172 ca_file_bufsize = total_bytes_read; in add_certs_to_store() 175 total_bytes_read += bytes_read; in add_certs_to_store()
|
/external/llvm-project/lldb/source/Plugins/Process/MacOSX-Kernel/ |
D | ProcessKDP.cpp | 602 size_t total_bytes_read = 0; in DoReadMemory() local 605 while (total_bytes_read < size) { in DoReadMemory() 606 size_t bytes_to_read_this_request = size - total_bytes_read; in DoReadMemory() 611 addr + total_bytes_read, data_buffer + total_bytes_read, in DoReadMemory() 613 total_bytes_read += bytes_read; in DoReadMemory() 615 return total_bytes_read; in DoReadMemory() 619 return total_bytes_read; in DoReadMemory()
|
/external/llvm-project/lldb/source/Host/common/ |
D | NativeProcessProtocol.cpp | 669 size_t &total_bytes_read) { in ReadCStringFromMemory() argument 677 total_bytes_read = 0; in ReadCStringFromMemory() 692 total_bytes_read = in ReadCStringFromMemory() 698 total_bytes_read += bytes_read; in ReadCStringFromMemory() 704 string_size = total_bytes_read - 1; in ReadCStringFromMemory() 709 total_bytes_read--; in ReadCStringFromMemory()
|
/external/libchrome/mojo/core/ |
D | channel_posix.cc | 448 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/llvm-project/lldb/include/lldb/Host/common/ |
D | NativeProcessProtocol.h | 111 size_t &total_bytes_read);
|
/external/llvm-project/lldb/source/Target/ |
D | Platform.cpp | 1677 uint64_t total_bytes_read = 0; in DownloadModuleSlice() local 1678 while (total_bytes_read < src_size) { in DownloadModuleSlice() 1680 src_size - total_bytes_read); in DownloadModuleSlice() 1690 total_bytes_read += n_read; in DownloadModuleSlice()
|
D | Process.cpp | 2093 size_t total_bytes_read = 0; in ReadStringFromMemory() local 2122 size_t aligned_start = total_bytes_read - total_bytes_read % type_width; in ReadStringFromMemory() 2124 i + type_width <= total_bytes_read + bytes_read; i += type_width) in ReadStringFromMemory() 2130 total_bytes_read += bytes_read; in ReadStringFromMemory() 2139 return total_bytes_read; in ReadStringFromMemory()
|
/external/llvm-project/lldb/source/Core/ |
D | ValueObject.cpp | 929 size_t total_bytes_read = 0; in ReadPointedString() local 988 total_bytes_read = bytes_read; in ReadPointedString() 1007 total_bytes_read += bytes_read; in ReadPointedString() 1046 return {total_bytes_read, was_capped}; in ReadPointedString()
|
/external/libaom/libaom/av1/encoder/ |
D | encoder.c | 6972 size_t total_bytes_read = 0; in av1_convert_sect5obus_to_annexb() local 6977 while (total_bytes_read < *frame_size) { in av1_convert_sect5obus_to_annexb() 7017 total_bytes_read += obu_bytes_read; in av1_convert_sect5obus_to_annexb()
|