Searched refs:iov_index (Results 1 - 2 of 2) sorted by relevance

/external/chromium_org/net/quic/
H A Dquic_data_stream.cc68 size_t iov_index = 0; local
69 while (iov_index < iov_len &&
71 size_t bytes_to_read = min(iov[iov_index].iov_len,
73 char* iov_ptr = static_cast<char*>(iov[iov_index].iov_base);
77 ++iov_index;
H A Dquic_stream_sequencer.cc160 size_t iov_index = 0; local
165 while (iov_index < iov_len &&
168 int bytes_to_read = min(iov[iov_index].iov_len - iov_offset,
171 char* iov_ptr = static_cast<char*>(iov[iov_index].iov_base) + iov_offset;
177 if (iov[iov_index].iov_len == iov_offset) {
180 ++iov_index;

Completed in 550 milliseconds