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()
675 size_t &total_bytes_read) { in ReadCStringFromMemory() argument683 total_bytes_read = 0; in ReadCStringFromMemory()698 total_bytes_read = in ReadCStringFromMemory()704 total_bytes_read += bytes_read; in ReadCStringFromMemory()710 string_size = total_bytes_read - 1; in ReadCStringFromMemory()715 total_bytes_read--; in ReadCStringFromMemory()
1638 uint64_t total_bytes_read = 0; in DownloadModuleSlice() local1639 while (total_bytes_read < src_size) { in DownloadModuleSlice()1641 src_size - total_bytes_read); in DownloadModuleSlice()1651 total_bytes_read += n_read; in DownloadModuleSlice()
1998 size_t total_bytes_read = 0; in ReadStringFromMemory() local2025 size_t aligned_start = total_bytes_read - total_bytes_read % type_width; in ReadStringFromMemory()2027 i + type_width <= total_bytes_read + bytes_read; i += type_width) in ReadStringFromMemory()2033 total_bytes_read += bytes_read; in ReadStringFromMemory()2038 return total_bytes_read; in ReadStringFromMemory()
131 size_t &total_bytes_read);
888 size_t total_bytes_read = 0; in ReadPointedString() local947 total_bytes_read = bytes_read; in ReadPointedString()966 total_bytes_read += bytes_read; in ReadPointedString()1005 return {total_bytes_read, was_capped}; in ReadPointedString()