Searched refs:num_bytes_read (Results 1 - 22 of 22) sorted by relevance

/external/libnfc-nci/src/hal/int/
H A Dnfc_hal_nv_ci.h70 ** Parameters num_bytes_read - number of bytes read into the buffer
81 void nfc_hal_nv_ci_read (UINT16 num_bytes_read,
/external/chromium_org/third_party/zlib/google/
H A Dzip_reader.cc216 const int num_bytes_read = unzReadCurrentFile(zip_file_, buf, local
218 if (num_bytes_read == 0) {
221 } else if (num_bytes_read < 0) {
222 // If num_bytes_read < 0, then it's a specific UNZ_* error code.
225 } else if (num_bytes_read > 0) {
227 if (num_bytes_read != file.WriteAtCurrentPos(buf, num_bytes_read)) {
323 const int num_bytes_read = unzReadCurrentFile(zip_file_, buf, local
325 if (num_bytes_read == 0) {
328 } else if (num_bytes_read <
374 const int num_bytes_read = unzReadCurrentFile(zip_file_, buf, local
429 const int num_bytes_read = unzReadCurrentFile(zip_file_, local
[all...]
/external/libnfc-nci/src/nfa/hci/
H A Dnfa_hci_ci.c41 void nfa_nv_ci_read (UINT16 num_bytes_read, tNFA_NV_CO_STATUS status, UINT8 block) argument
50 &&(num_bytes_read != 0) )
55 p_msg->nv_read.size = num_bytes_read;
/external/chromium_org/third_party/webrtc/tools/frame_editing/
H A Dframe_editing_lib.cc53 int num_bytes_read; local
55 while ((num_bytes_read = fread(temp_buffer.get(), 1, frame_length, in_fid))
79 if (num_bytes_read > 0 && num_bytes_read < frame_length) {
/external/libnfc-nci/src/nfa/include/
H A Dnfa_nv_ci.h88 ** Parameters num_bytes_read - number of bytes read into the buffer
99 NFC_API extern void nfa_nv_ci_read (UINT16 num_bytes_read,
/external/libnfc-nci/halimpl/bcm2079x/hal/hal/
H A Dnfc_hal_hci_ci.c43 void nfc_hal_nv_ci_read (UINT16 num_bytes_read, tNFC_HAL_NV_CO_STATUS status, UINT8 block) argument
56 &&(num_bytes_read != 0) )
61 p_msg->nv_read.size = num_bytes_read;
/external/chromium_org/mojo/public/cpp/system/
H A Ddata_pipe.h103 uint32_t num_bytes_read) {
104 return MojoEndReadData(data_pipe_consumer.value(), num_bytes_read);
102 EndReadDataRaw(DataPipeConsumerHandle data_pipe_consumer, uint32_t num_bytes_read) argument
/external/chromium_org/mojo/system/
H A Ddata_pipe_consumer_dispatcher.cc96 uint32_t num_bytes_read) {
99 return data_pipe_->ConsumerEndReadData(num_bytes_read);
95 EndReadDataImplNoLock( uint32_t num_bytes_read) argument
H A Ddata_pipe_consumer_dispatcher.h46 virtual MojoResult EndReadDataImplNoLock(uint32_t num_bytes_read) OVERRIDE;
H A Dlocal_data_pipe.cc276 uint32_t num_bytes_read) {
277 DCHECK_LE(num_bytes_read, consumer_two_phase_max_num_bytes_read_no_lock());
278 DCHECK_LE(start_index_ + num_bytes_read, capacity_num_bytes());
279 MarkDataAsConsumedNoLock(num_bytes_read);
275 ConsumerEndReadDataImplNoLock( uint32_t num_bytes_read) argument
H A Ddata_pipe.h83 MojoResult ConsumerEndReadData(uint32_t num_bytes_read);
135 virtual MojoResult ConsumerEndReadDataImplNoLock(uint32_t num_bytes_read) = 0;
H A Dlocal_data_pipe.h64 uint32_t num_bytes_read) OVERRIDE;
H A Ddata_pipe.cc355 MojoResult DataPipe::ConsumerEndReadData(uint32_t num_bytes_read) { argument
365 if (num_bytes_read > consumer_two_phase_max_num_bytes_read_ ||
366 num_bytes_read % element_num_bytes_ != 0) {
370 rv = ConsumerEndReadDataImplNoLock(num_bytes_read);
H A Ddispatcher.h113 MojoResult EndReadData(uint32_t num_bytes_read);
260 virtual MojoResult EndReadDataImplNoLock(uint32_t num_bytes_read);
H A Dcore.h110 uint32_t num_bytes_read);
H A Ddispatcher.cc184 MojoResult Dispatcher::EndReadData(uint32_t num_bytes_read) { argument
189 return EndReadDataImplNoLock(num_bytes_read);
337 MojoResult Dispatcher::EndReadDataImplNoLock(uint32_t /*num_bytes_read*/) {
H A Dcore.cc449 uint32_t num_bytes_read) {
455 return dispatcher->EndReadData(num_bytes_read);
448 EndReadData(MojoHandle data_pipe_consumer_handle, uint32_t num_bytes_read) argument
/external/bluetooth/bluedroid/bta/include/
H A Dbta_fs_ci.h130 ** num_bytes_read - number of bytes read into the buffer
141 BTA_API extern void bta_fs_ci_read(int fd, UINT16 num_bytes_read,
/external/chromium_org/mojo/public/c/system/
H A Ddata_pipe.h339 // on the same handle. |num_bytes_read| should indicate the amount of data
358 uint32_t num_bytes_read);
/external/bluetooth/bluedroid/bta/fs/
H A Dbta_fs_ci.c76 ** num_bytes_read - number of bytes read into the buffer
85 void bta_fs_ci_read(int fd, UINT16 num_bytes_read, tBTA_FS_CO_STATUS status, UINT16 evt) argument
94 p_evt->num_read = num_bytes_read;
/external/chromium_org/mojo/android/system/
H A Dcore_impl.cc243 jint num_bytes_read) {
244 return MojoEndReadData(mojo_handle, num_bytes_read);
240 EndReadData(JNIEnv* env, jobject jcaller, jint mojo_handle, jint num_bytes_read) argument
/external/chromium_org/mojo/public/python/mojo/
H A Dc_core.pxd165 uint32_t num_bytes_read)

Completed in 2605 milliseconds