HomeSort by relevance Sort by last modified time
    Searched defs:read_bytes (Results 1 - 20 of 20) 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...]
  /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;
  /hardware/ti/omap4xxx/libtiutils/
MessageQueue.cpp 118 size_t read_bytes = 0; local
120 while( read_bytes < sizeof(*msg) )
122 int err = read(this->fd_read, p, sizeof(*msg) - read_bytes);
131 read_bytes += err;
  /ndk/sources/host-tools/ndk-stack/elff/
mapfile.c 114 DWORD read_bytes; local
115 if (ReadFile(handle, buf, nbyte, &read_bytes, NULL)) {
116 ret_bytes = (ssize_t)read_bytes;
elf_file.cc 100 const ssize_t read_bytes = mapfile_read(file_handle, &header, sizeof(header)); local
102 assert(read_bytes != -1 && read_bytes == sizeof(header));
103 if (read_bytes == -1 || read_bytes != sizeof(header)) {
104 if (read_bytes != -1) {
  /external/openssh/
roaming_common.c 46 static u_int64_t read_bytes = 0; variable
93 return read_bytes;
99 read_bytes += num;
111 read_bytes = recvd;
167 read_bytes += ret;
191 read_bytes += ret;
  /external/qemu/elff/
elf_file.cc 100 const ssize_t read_bytes = mapfile_read(file_handle, &header, sizeof(header)); local
102 assert(read_bytes != -1 && read_bytes == sizeof(header));
103 if (read_bytes == -1 || read_bytes != sizeof(header)) {
104 if (read_bytes != -1) {
  /frameworks/compile/mclinker/lib/Support/
MemoryArea.cpp 357 ssize_t read_bytes = sys::fs::detail::pread(m_FileDescriptor, pBuf, local
359 if (static_cast<size_t>(read_bytes) != pSize) {
361 if (read_bytes < 0) {
364 else if (static_cast<size_t>(read_bytes) < pSize) {
376 return read_bytes;
  /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
  /prebuilts/gcc/linux-x86/host/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
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/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
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/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/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...]
  /prebuilts/gcc/linux-x86/host/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
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/sysroot/usr/include/linux/
taskstats.h 149 __u64 read_bytes; /* bytes of read I/O */ member in struct:taskstats
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/sysroot/usr/include/linux/
taskstats.h 149 __u64 read_bytes; /* bytes of read I/O */ member in struct:taskstats
  /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 997 int read_bytes = local
    [all...]
  /external/qemu/
qemu-char.c 921 int read_bytes; member in struct:__anon11248
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...]
  /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...]

Completed in 294 milliseconds