Searched defs:num_bytes_read (Results 1 - 8 of 8) sorted by relevance

/external/webrtc/webrtc/tools/frame_editing/
H A Dframe_editing_lib.cc54 size_t num_bytes_read; local
56 while ((num_bytes_read = fread(temp_buffer.get(), 1, frame_length, in_fid))
80 if (num_bytes_read > 0 && num_bytes_read < frame_length) {
/external/libmojo/mojo/public/cpp/system/
H A Ddata_pipe.h126 uint32_t num_bytes_read) {
127 return MojoEndReadData(data_pipe_consumer.value(), num_bytes_read);
125 EndReadDataRaw(DataPipeConsumerHandle data_pipe_consumer, uint32_t num_bytes_read) argument
/external/avb/libavb_ab/
H A Davb_ab_flow.c87 size_t num_bytes_read; local
94 &num_bytes_read);
98 num_bytes_read != sizeof(AvbABData)) {
/external/libmojo/mojo/android/system/
H A Dcore_impl.cc279 jint num_bytes_read) {
280 return MojoEndReadData(mojo_handle, num_bytes_read);
276 EndReadData(JNIEnv* env, const JavaParamRef<jobject>& jcaller, jint mojo_handle, jint num_bytes_read) argument
/external/libmojo/mojo/edk/system/
H A Ddata_pipe_consumer_dispatcher.cc240 MojoResult DataPipeConsumerDispatcher::EndReadData(uint32_t num_bytes_read) { argument
252 if (num_bytes_read > two_phase_max_bytes_read_ ||
253 num_bytes_read % options_.element_num_bytes != 0) {
258 (read_offset_ + num_bytes_read) % options_.capacity_num_bytes;
260 DCHECK_GE(bytes_available_, num_bytes_read);
261 bytes_available_ -= num_bytes_read;
264 NotifyRead(num_bytes_read);
H A Ddata_pipe_unittest.cc100 MojoResult EndReadData(uint32_t num_bytes_read) { argument
101 return MojoEndReadData(consumer_, num_bytes_read);
H A Ddispatcher.cc75 MojoResult Dispatcher::EndReadData(uint32_t num_bytes_read) { argument
H A Dcore.cc885 uint32_t num_bytes_read) {
892 return dispatcher->EndReadData(num_bytes_read);
884 EndReadData(MojoHandle data_pipe_consumer_handle, uint32_t num_bytes_read) argument

Completed in 268 milliseconds