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

1 2

  /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/pdfium/third_party/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...]
  /hardware/ti/omap4-aah/libtiutils/
MessageQueue.cpp 119 size_t read_bytes = 0; local
121 while( read_bytes < sizeof(*msg) )
123 int err = read(this->fd_read, p, sizeof(*msg) - read_bytes);
132 read_bytes += err;
  /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;
  /external/openssh/
roaming_common.c 44 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;
  /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
  /ndk/sources/host-tools/ndk-stack/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) {
mapfile.c 114 DWORD read_bytes; local
115 if (ReadFile(handle, buf, nbyte, &read_bytes, NULL)) {
116 ret_bytes = (ssize_t)read_bytes;
  /frameworks/compile/mclinker/lib/Support/
FileHandle.cpp 168 ssize_t read_bytes =
171 if (read_bytes == -1) {
  /bionic/libc/kernel/uapi/linux/
taskstats.h 69 __u64 read_bytes; member in struct:taskstats
  /development/ndk/platforms/android-21/include/linux/
taskstats.h 69 __u64 read_bytes; member in struct:taskstats
  /external/kernel-headers/original/uapi/linux/
taskstats.h 151 __u64 read_bytes; /* bytes of read I/O */ member in struct:taskstats
  /external/squashfs-tools/squashfs-tools/
mksquashfs.h 152 extern int read_bytes(int, void *, int);
action.h 321 extern int read_bytes(int, void *, int);
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/sysroot/usr/include/linux/
taskstats.h 151 __u64 read_bytes; /* bytes of read I/O */ member in struct:taskstats
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/linux/
taskstats.h 151 __u64 read_bytes; /* bytes of read I/O */ member in struct:taskstats
  /prebuilts/ndk/9/platforms/android-21/arch-arm/usr/include/linux/
taskstats.h 69 __u64 read_bytes; member in struct:taskstats
  /prebuilts/ndk/9/platforms/android-21/arch-arm64/usr/include/linux/
taskstats.h 69 __u64 read_bytes; member in struct:taskstats
  /prebuilts/ndk/9/platforms/android-21/arch-mips/usr/include/linux/
taskstats.h 69 __u64 read_bytes; member in struct:taskstats
  /prebuilts/ndk/9/platforms/android-21/arch-mips64/usr/include/linux/
taskstats.h 69 __u64 read_bytes; member in struct:taskstats
  /prebuilts/ndk/9/platforms/android-21/arch-x86/usr/include/linux/
taskstats.h 69 __u64 read_bytes; member in struct:taskstats
  /prebuilts/ndk/9/platforms/android-21/arch-x86_64/usr/include/linux/
taskstats.h 69 __u64 read_bytes; member in struct:taskstats
  /hardware/qcom/wlan/qcwcn/wifi_hal/
rb_wrapper.cpp 79 rbs->read_bytes = rb_stats.total_bytes_read;
  /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,
  /hardware/libhardware_legacy/include/hardware_legacy/
wifi_logger.h 248 * written_bytes and read_bytes implement a producer consumer API
249 * hence written_bytes >= read_bytes
262 u32 read_bytes; // number of bytes that was read from the buffer by user land, member in struct:__anon25011

Completed in 603 milliseconds

1 2