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

  /external/libmojo/mojo/common/
data_pipe_utils.cc 71 uint32_t buffer_num_bytes = 0; local
73 BeginWriteDataRaw(destination.get(), &buffer, &buffer_num_bytes,
78 while (it != source.end() && byte_index < buffer_num_bytes) {
  /external/libmojo/mojo/public/cpp/system/
data_pipe.h 92 uint32_t* buffer_num_bytes,
95 data_pipe_producer.value(), buffer, buffer_num_bytes, flags);
117 uint32_t* buffer_num_bytes,
120 data_pipe_consumer.value(), buffer, buffer_num_bytes, flags);
  /external/libmojo/mojo/public/c/system/
data_pipe.h 179 // the caller can write |*buffer_num_bytes| bytes of data. If flags has
181 // |*buffer_num_bytes| will be at least as large as its input value, which must
183 // is not set, the input value of |*buffer_num_bytes| is ignored).
204 // |*buffer_num_bytes| is not a multiple of the element size).
209 // (specified by |*buffer_num_bytes|) cannot be written contiguously at
220 uint32_t* buffer_num_bytes, // In/out.
227 // to the value of |*buffer_num_bytes| output by |MojoBeginWriteData()| and must
300 // which the caller can read |*buffer_num_bytes| bytes of data. If flags has
302 // |*buffer_num_bytes| will be at least as large as its input value, which must
304 // is not set, the input value of |*buffer_num_bytes| is ignored). |flags| mus
    [all...]
  /external/libmojo/mojo/edk/system/
dispatcher.cc 70 uint32_t* buffer_num_bytes,
86 uint32_t* buffer_num_bytes,
dispatcher.h 112 uint32_t* buffer_num_bytes,
124 uint32_t* buffer_num_bytes,
data_pipe_consumer_dispatcher.h 54 uint32_t* buffer_num_bytes,
data_pipe_producer_dispatcher.h 54 uint32_t* buffer_num_bytes,
core.h 220 uint32_t* buffer_num_bytes,
230 uint32_t* buffer_num_bytes,
core_test_base.cc 80 uint32_t* buffer_num_bytes,
99 uint32_t* buffer_num_bytes,
data_pipe_producer_dispatcher.cc 191 uint32_t* buffer_num_bytes,
207 *buffer_num_bytes = std::min(options_.capacity_num_bytes - write_offset_,
209 DCHECK_GT(*buffer_num_bytes, 0u);
data_pipe_consumer_dispatcher.cc 206 uint32_t* buffer_num_bytes,
237 *buffer_num_bytes = bytes_to_read;
core.cc 852 uint32_t* buffer_num_bytes,
860 return dispatcher->BeginWriteData(buffer, buffer_num_bytes, flags);
889 uint32_t* buffer_num_bytes,
897 return dispatcher->BeginReadData(buffer, buffer_num_bytes, flags);
    [all...]

Completed in 148 milliseconds