| /external/libpcap/ |
| sf-pcap-ng.c | 231 read_bytes(FILE *fp, void *buf, size_t bytes_to_read, int fail_on_eof, function 261 status = read_bytes(fp, &bhdr, sizeof(bhdr), 0, errbuf); 316 if (read_bytes(fp, p->buffer + sizeof(bhdr), 817 if (read_bytes(fp,
|
| /external/pdfium/core/src/fxcodec/codec/ |
| fx_codec_flate.cpp | 712 int read_bytes = m_PredictPitch > bytes_to_go ? bytes_to_go : m_PredictPitch;
local 713 FXSYS_memcpy32(m_pScanline + m_Pitch - bytes_to_go, m_pPredictBuffer, read_bytes);
714 m_LeftOver += m_PredictPitch - read_bytes;
715 bytes_to_go -= read_bytes;
[all...] |
| /external/protobuf/src/google/protobuf/ |
| wire_format_lite_inl.h | 280 const int read_bytes = num_read * per_value_size; local 281 if (read_bytes > 0) { 282 input->Skip(read_bytes);
|
| /external/qemu/android/camera/ |
| camera-capture-linux.c | 994 int read_bytes = local [all...] |
| /external/qemu/ |
| qemu-char.c | 921 int read_bytes; member in struct:__anon33796 945 s->read_bytes = qemu_chr_can_read(chr); 946 return s->read_bytes; 957 if (len > s->read_bytes) 958 len = s->read_bytes; [all...] |
| /hardware/qcom/media/mm-video-v4l2/vidc/venc/test/ |
| venc_test.cpp | 1443 int bytes = 0, read_bytes = 0; local [all...] |
| /system/core/adb/ |
| sysdeps_win32.c | 230 DWORD read_bytes; local 232 if ( !ReadFile( f->fh_handle, buf, (DWORD)len, &read_bytes, NULL ) ) { 236 } else if (read_bytes < (DWORD)len) { 239 return (int)read_bytes; [all...] |