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

  /external/freetype/src/base/
ftstream.c 125 FT_ULong read_bytes; local
138 read_bytes = stream->read( stream, pos, buffer, count );
141 read_bytes = stream->size - pos;
142 if ( read_bytes > count )
143 read_bytes = count;
145 FT_MEM_COPY( buffer, stream->base + pos, read_bytes );
148 stream->pos = pos + read_bytes;
150 if ( read_bytes < count )
154 count, read_bytes ));
168 FT_ULong read_bytes = 0 local
238 FT_ULong read_bytes; local
    [all...]
  /bootable/recovery/
encryptedfs_provisioning.c 49 int read_bytes; local
57 read_bytes = fread(buffer, 1, buf_size, in_file);
59 if (read_bytes != buf_size) {
66 *out_size = read_bytes;
  /prebuilt/linux-x86/toolchain/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/linux/
taskstats.h 149 __u64 read_bytes; /* bytes of read I/O */ member in struct:taskstats
  /development/host/windows/usb/adb_winapi_test/
adb_winapi_test.cpp 382 ULONG read_bytes = 0;
383 bool read_res = AdbReadEndpointSync(adb_read, &msg_rcv, sizeof(msg_rcv), &read_bytes, 512);
391 printf("\n Read handshake: %u bytes received", read_bytes);
403 read_res = AdbReadEndpointSync(adb_read, buf, msg_rcv.data_length, &read_bytes, 512);
412 for (ULONG n = 0; n < read_bytes; n++) {
381 ULONG read_bytes = 0; local
  /external/qemu/elff/
elf_file.cc 95 const ssize_t read_bytes = mapfile_read(file_handle, &header, sizeof(header)); local
97 assert(read_bytes != -1 && read_bytes == sizeof(header));
98 if (read_bytes == -1 || read_bytes != sizeof(header)) {
99 if (read_bytes != -1) {
  /external/qemu/android/utils/
mapfile.c 114 DWORD read_bytes; local
115 if (ReadFile(handle, buf, nbyte, &read_bytes, NULL)) {
116 ret_bytes = (ssize_t)read_bytes;
  /external/bluetooth/glib/gio/
ginputstream.c 354 gssize ret, read_bytes; local
374 read_bytes = 0;
383 if (read_bytes > 0 &&
388 return read_bytes;
396 read_bytes += ret;
399 return read_bytes;
    [all...]
  /external/chromium/net/socket/
tcp_client_socket_win.cc 471 static StatsCounter read_bytes("tcp.read_bytes");
472 read_bytes.Add(num);
604 static StatsCounter read_bytes("tcp.read_bytes");
605 read_bytes.Add(rv);
  /prebuilt/linux-x86/toolchain/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/alsa/
control_external.h 191 int (*read_bytes)(snd_ctl_ext_t *ext, snd_ctl_ext_key_t key, unsigned char *data, member in struct:snd_ctl_ext_callback
  /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);
  /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...]
  /external/qemu/
qemu-char-android.c 857 int read_bytes; member in struct:__anon6370
881 s->read_bytes = qemu_chr_can_read(chr);
882 return s->read_bytes;
893 if (len > s->read_bytes)
894 len = s->read_bytes;
    [all...]
qemu-char.c 825 int read_bytes; member in struct:__anon6377
849 s->read_bytes = qemu_chr_can_read(chr);
850 return s->read_bytes;
861 if (len > s->read_bytes)
862 len = s->read_bytes;
    [all...]

Completed in 406 milliseconds