Searched refs:total_bytes_read (Results 1 – 7 of 7) sorted by relevance
215 nub_size_t total_bytes_read = 0; in Read() local218 while (total_bytes_read < data_count) { in Read()220 MaxBytesLeftInPage(task, curr_addr, data_count - total_bytes_read); in Read()243 total_bytes_read += curr_bytes_read; in Read()250 return total_bytes_read; in Read()
587 size_t total_bytes_read = 0; in DoReadMemory() local590 while (total_bytes_read < size) { in DoReadMemory()591 size_t bytes_to_read_this_request = size - total_bytes_read; in DoReadMemory()596 addr + total_bytes_read, data_buffer + total_bytes_read, in DoReadMemory()598 total_bytes_read += bytes_read; in DoReadMemory()600 return total_bytes_read; in DoReadMemory()604 return total_bytes_read; in DoReadMemory()
657 size_t &total_bytes_read) { in ReadCStringFromMemory() argument665 total_bytes_read = 0; in ReadCStringFromMemory()680 total_bytes_read = in ReadCStringFromMemory()686 total_bytes_read += bytes_read; in ReadCStringFromMemory()692 string_size = total_bytes_read - 1; in ReadCStringFromMemory()697 total_bytes_read--; in ReadCStringFromMemory()
1637 uint64_t total_bytes_read = 0; in DownloadModuleSlice() local1638 while (total_bytes_read < src_size) { in DownloadModuleSlice()1640 src_size - total_bytes_read); in DownloadModuleSlice()1650 total_bytes_read += n_read; in DownloadModuleSlice()
1952 size_t total_bytes_read = 0; in ReadStringFromMemory() local1979 size_t aligned_start = total_bytes_read - total_bytes_read % type_width; in ReadStringFromMemory()1981 i + type_width <= total_bytes_read + bytes_read; i += type_width) in ReadStringFromMemory()1987 total_bytes_read += bytes_read; in ReadStringFromMemory()1992 return total_bytes_read; in ReadStringFromMemory()
130 size_t &total_bytes_read);
879 size_t total_bytes_read = 0; in ReadPointedString() local938 total_bytes_read = bytes_read; in ReadPointedString()957 total_bytes_read += bytes_read; in ReadPointedString()996 return {total_bytes_read, was_capped}; in ReadPointedString()