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

1 2

  /external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/thirdparty/mod_pywebsocket/
_stream_base.py 115 read_bytes = self._request.connection.read(length)
116 if not read_bytes:
120 return read_bytes
157 read_bytes = []
160 read_bytes.append(new_read_bytes)
162 return ''.join(read_bytes)
172 read_bytes = []
177 read_bytes.append(ch)
178 return ''.join(read_bytes)
  /external/chromium/chrome/browser/ui/webui/
screenshot_source.cc 24 // Read the file from the screenshots directory into the read_bytes vector.
26 std::vector<unsigned char>* read_bytes,
28 read_bytes->clear();
46 read_bytes->resize(file_size);
51 &read_bytes->front()),
53 read_bytes->clear();
55 // We're done, if successful, read_bytes will have the data
  /external/chromium_org/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...]
  /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/chromium_org/chrome/browser/ui/webui/
screenshot_source.cc 226 ScreenshotDataPtr read_bytes(new ScreenshotData);
230 CacheAndSendScreenshot(screenshot_path, callback, read_bytes);
234 read_bytes->resize(file_size);
235 if (!file_util::ReadFile(file, reinterpret_cast<char*>(&read_bytes->front()),
237 read_bytes->clear();
239 CacheAndSendScreenshot(screenshot_path, callback, read_bytes);
249 ScreenshotDataPtr read_bytes(new ScreenshotData);
250 CacheAndSendScreenshot(screenshot_path, callback, read_bytes);
  /external/qemu/android/protocol/
core-connection.h 98 * read_bytes Upon success, contains number of bytes that have been actually
106 size_t* read_bytes);
core-connection.c 228 size_t* read_bytes)
246 if (read_bytes != NULL) {
247 *read_bytes = read_size;
  /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/chromium_org/third_party/libjingle/source/talk/base/
bytebuffer_unittest.cc 191 char read_bytes[3]; local
192 EXPECT_TRUE(buffer.ReadBytes(read_bytes, 3));
194 EXPECT_EQ(write_bytes[i], read_bytes[i]);
201 memset(read_bytes, 0, 3);
202 EXPECT_TRUE(buffer.ReadBytes(read_bytes, 3));
204 EXPECT_EQ(write_bytes[i], read_bytes[i]);
  /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;
  /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
  /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 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) {
  /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 174 ssize_t read_bytes = sys::fs::detail::pread(m_Handler,
179 if (-1 == read_bytes) {
  /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/chromium/net/socket/
tcp_client_socket_libevent.cc 393 base::StatsCounter read_bytes("tcp.read_bytes");
394 read_bytes.Add(nread);
627 base::StatsCounter read_bytes("tcp.read_bytes");
628 read_bytes.Add(bytes_transferred);
tcp_client_socket_win.cc 544 base::StatsCounter read_bytes("tcp.read_bytes");
545 read_bytes.Add(num);
798 base::StatsCounter read_bytes("tcp.read_bytes");
799 read_bytes.Add(num_bytes);
  /external/chromium_org/net/socket/
tcp_client_socket_libevent.cc 448 base::StatsCounter read_bytes("tcp.read_bytes");
449 read_bytes.Add(nread);
683 base::StatsCounter read_bytes("tcp.read_bytes");
684 read_bytes.Add(bytes_transferred);
  /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

Completed in 1536 milliseconds

1 2