HomeSort by relevance Sort by last modified time
    Searched refs:read_bytes (Results 1 - 8 of 8) 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...]
  /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...]
  /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:__anon4799
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:__anon4806
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 2539 milliseconds