/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_org/chrome/browser/chromeos/file_system_provider/fileapi/ |
buffering_file_stream_reader.cc | 79 const int read_bytes = std::min(buffer_length, preloaded_bytes_); local 83 read_bytes); 84 preloading_buffer_offset_ += read_bytes; 85 preloaded_bytes_ -= read_bytes; 87 return read_bytes;
|
buffering_file_stream_reader_unittest.cc | 187 const int read_bytes = kPreloadingBufferLength * 2; local 188 ASSERT_GT(kFileSize, read_bytes); 194 scoped_refptr<net::IOBuffer> buffer(new net::IOBuffer(read_bytes)); 197 buffer.get(), read_bytes, base::Bind(&LogValue<int>, &read_log)); 210 scoped_refptr<net::IOBuffer> buffer(new net::IOBuffer(read_bytes)); 213 buffer.get(), read_bytes, base::Bind(&LogValue<int>, &read_log)); 218 EXPECT_EQ(read_bytes, inner_read_log[0]); 220 EXPECT_EQ(read_bytes, read_log[0]); 278 const int read_bytes = 2; local 279 ASSERT_LT(read_bytes, kPreloadingBufferLength) 306 const int read_bytes = 2; local [all...] |
/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/third_party/webrtc/base/ |
bytebuffer_unittest.cc | 174 char read_bytes[3]; local 175 EXPECT_TRUE(buffer.ReadBytes(read_bytes, 3)); 177 EXPECT_EQ(write_bytes[i], read_bytes[i]); 184 memset(read_bytes, 0, 3); 185 EXPECT_TRUE(buffer.ReadBytes(read_bytes, 3)); 187 EXPECT_EQ(write_bytes[i], read_bytes[i]);
|
/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
|
/bionic/libc/kernel/uapi/linux/ |
taskstats.h | 69 __u64 read_bytes; member in struct:taskstats
|
/development/ndk/platforms/android-L/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/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,
|
/external/chromium_org/mojo/public/c/system/tests/ |
core_perftest.cc | 140 uint32_t read_bytes = self->num_bytes_; local 143 &read_bytes,
|
/external/chromium_org/net/socket/ |
ssl_server_socket_openssl.cc | 311 int read_bytes = BIO_read(transport_bio_, send_buffer_->data(), max_read); local 312 DCHECK_GT(read_bytes, 0); 313 CHECK_EQ(static_cast<int>(max_read), read_bytes); local
|
tcp_socket_libevent.cc | 570 base::StatsCounter read_bytes("tcp.read_bytes"); 571 read_bytes.Add(rv);
|
ssl_client_socket_openssl.cc | [all...] |
tcp_socket_win.cc | 896 base::StatsCounter read_bytes("tcp.read_bytes"); 898 read_bytes.Add(rv); [all...] |
/external/chromium_org/cloud_print/virtual_driver/win/port_monitor/ |
port_monitor.cc | 457 BOOL WINAPI Monitor2ReadPort(HANDLE, BYTE*, DWORD, DWORD* read_bytes) { 459 *read_bytes = 0;
|
/external/chromium_org/net/udp/ |
udp_socket_libevent.cc | 415 base::StatsCounter read_bytes("udp.read_bytes"); 416 read_bytes.Add(result);
|
udp_socket_win.cc | 585 base::StatsCounter read_bytes("udp.read_bytes"); 586 read_bytes.Add(result);
|
/external/chromium_org/third_party/protobuf/src/google/protobuf/ |
wire_format_lite_inl.h | 279 const int read_bytes = num_read * per_value_size; local 280 if (read_bytes > 0) { 281 input->Skip(read_bytes); [all...] |