HomeSort by relevance Sort by last modified time
    Searched refs:max_num_bytes_to_read (Results 1 - 4 of 4) sorted by null

  /external/chromium_org/mojo/system/
local_data_pipe.cc 179 uint32_t max_num_bytes_to_read,
181 DCHECK_EQ(max_num_bytes_to_read % element_num_bytes(), 0u);
183 DCHECK_GT(max_num_bytes_to_read, 0u);
193 std::min(static_cast<size_t>(max_num_bytes_to_read), current_num_bytes_);
254 size_t max_num_bytes_to_read = GetMaxNumBytesToReadNoLock(); local
255 if (min_num_bytes_to_read > max_num_bytes_to_read) {
263 if (max_num_bytes_to_read == 0) {
269 buffer_num_bytes.Put(static_cast<uint32_t>(max_num_bytes_to_read));
271 static_cast<uint32_t>(max_num_bytes_to_read));
local_data_pipe.h 51 uint32_t max_num_bytes_to_read,
data_pipe.cc 270 uint32_t max_num_bytes_to_read = num_bytes.Get();
271 if (max_num_bytes_to_read % element_num_bytes_ != 0)
274 if (max_num_bytes_to_read == 0)
277 uint32_t min_num_bytes_to_read = all_or_none ? max_num_bytes_to_read : 0;
282 elements, num_bytes, max_num_bytes_to_read, min_num_bytes_to_read);
data_pipe.h 122 uint32_t max_num_bytes_to_read,

Completed in 562 milliseconds