HomeSort by relevance Sort by last modified time
    Searched defs:bytes_read (Results 76 - 100 of 213) sorted by null

1 2 34 5 6 7 8 9

  /external/chromium_org/net/spdy/
buffered_spdy_framer_unittest.cc 124 size_t bytes_read = local
127 buffered_spdy_framer_.ProcessInput(input_ptr, bytes_read);
  /external/chromium_org/net/tools/fetch/
fetch_client.cc 99 base::StatsCounter bytes_read("FetchClient.bytes_read");
100 bytes_read.Add(result);
196 int bytes_read = table.GetCounterValue("c:FetchClient.bytes_read"); local
201 printf("Bytes Read : %d\n", bytes_read);
204 double bps = static_cast<float>(bytes_read * 8) /
  /external/chromium_org/net/tools/flip_server/
ring_buffer.cc 139 int bytes_read = 0; local
145 memcpy(bytes + bytes_read, rptr, rsize);
146 bytes_read += rsize;
151 return bytes_read;
  /external/chromium_org/net/tools/quic/
quic_client.cc 260 int bytes_read = QuicSocketUtils::ReadPacket( local
264 if (bytes_read < 0) {
268 QuicEncryptedPacket packet(buf, bytes_read, false);
quic_server.cc 205 int bytes_read = local
210 if (bytes_read < 0) {
214 QuicEncryptedPacket packet(buf, bytes_read, false);
  /external/chromium_org/net/url_request/
url_request_test_job.cc 185 int *bytes_read) {
193 DCHECK(bytes_read);
194 *bytes_read = 0;
207 *bytes_read = to_read;
266 int bytes_read; local
267 if (!ReadRawData(async_buf_, async_buf_size_, &bytes_read))
275 NotifyReadComplete(bytes_read);
  /external/chromium_org/ppapi/tests/
test_flash_file.cc 59 DWORD bytes_read = 0; local
61 result = !!::ReadFile(file_handle, buffer, kBufferSize, &bytes_read, NULL);
62 if (result && bytes_read > 0)
63 contents->append(buffer, bytes_read);
64 } while (result && bytes_read > 0);
67 ssize_t bytes_read = 0; local
70 bytes_read = read(file_handle, buffer, kBufferSize);
71 } while (bytes_read == -1 && errno == EINTR);
72 result = bytes_read != -1;
73 if (bytes_read > 0
    [all...]
  /external/chromium_org/third_party/libjingle/source/talk/media/devices/
filevideocapturer.cc 268 size_t bytes_read; local
272 &bytes_read,
275 << ", bytes read = " << bytes_read << ", error = " << error;
277 if (CapturedFrame::kFrameHeaderSize != bytes_read) {
  /external/chromium_org/tools/win/split_link/
split_link.cc 193 DWORD bytes_read = 0; local
194 if (!ReadFile(file, buffer, *length, &bytes_read, NULL))
  /external/chromium_org/v8/test/cctest/
test-sockets.cc 89 int bytes_read = 0; local
90 while (bytes_read < data_size_) {
91 bytes_read += client_->Receive(data_ + bytes_read, data_size_ - bytes_read);
  /external/qemu/slirp/
tftp.c 105 int bytes_read = 0; local
123 bytes_read = read(fd, buf, len);
128 return bytes_read;
  /external/qemu/slirp-android/
tftp.c 105 int bytes_read = 0; local
123 bytes_read = read(fd, buf, len);
128 return bytes_read;
  /external/tinyalsa/
tinycap.c 192 unsigned int bytes_read = 0; local
227 bytes_read += size;
232 return pcm_bytes_to_frames(pcm, bytes_read);
  /external/v8/test/cctest/
test-sockets.cc 64 int bytes_read = 0; local
65 while (bytes_read < data_size_) {
66 bytes_read += client_->Receive(data_ + bytes_read, data_size_ - bytes_read);
  /system/extras/tests/directiotest/
directiotest.c 73 size_t bytes_read = 0; local
78 ret = read(fd, (char *)buf + bytes_read, count - bytes_read);
86 bytes_read += ret;
87 } while (bytes_read < count);
89 return bytes_read;
  /external/bluetooth/bluedroid/stack/include/
goep_fs.h 112 UINT16 bytes_read; member in struct:__anon3810
347 ** bytes_read - total number of bytes read from the file.
354 UINT16 bytes_read, UINT16 event_id);
  /external/chromium/base/files/
file_path_watcher_linux.cc 190 ssize_t bytes_read = HANDLE_EINTR(read(inotify_fd_, &buffer[0], local
193 if (bytes_read < 0) {
199 while (i < bytes_read) {
202 DCHECK(i + event_size <= static_cast<size_t>(bytes_read));
  /external/chromium/chrome/browser/sync/engine/net/
server_connection_manager.cc 54 const int64 bytes_read = ReadResponse(buffer_out, local
56 if (bytes_read != response->content_length) {
66 const int64 bytes_read = ReadResponse(buffer_out, local
69 if (bytes_read != response->content_length) {
71 response->content_length << ", but sent " << bytes_read;
106 int bytes_read = buffer_.length(); local
107 CHECK(length <= bytes_read);
109 return bytes_read;
  /external/chromium/chrome/browser/ui/webui/
chrome_url_data_manager_backend.cc 80 int *bytes_read) OVERRIDE;
101 void CompleteRead(net::IOBuffer* buf, int buf_size, int* bytes_read);
329 int bytes_read; local
332 CompleteRead(pending_buf_, pending_buf_size_, &bytes_read);
334 NotifyReadComplete(bytes_read);
344 int* bytes_read) {
355 CompleteRead(buf, buf_size, bytes_read);
360 int* bytes_read) {
368 *bytes_read = buf_size;
  /external/chromium/net/base/
file_stream_posix.cc 390 int bytes_read = Read(buf, to_read, NULL); local
391 if (bytes_read <= 0) {
393 return bytes_read;
398 bytes_total += bytes_read;
399 buf += bytes_read;
400 to_read -= bytes_read;
file_stream_win.cc 68 DWORD bytes_read, DWORD error);
98 MessageLoopForIO::IOContext* context, DWORD bytes_read, DWORD error) {
107 int result = static_cast<int>(bytes_read);
111 if (bytes_read)
112 IncrementOffset(&context->overlapped, bytes_read);
239 DWORD bytes_read; local
240 if (!ReadFile(file_, buf, buf_len, &bytes_read, overlapped)) {
255 rv = static_cast<int>(bytes_read);
265 int bytes_read = Read(buf, to_read, NULL); local
266 if (bytes_read <= 0)
    [all...]
  /external/chromium/net/spdy/
spdy_http_stream.cc 113 int bytes_read = 0; local
117 memcpy(&(buf->data()[bytes_read]), data->data(), bytes_to_copy);
129 bytes_read += bytes_to_copy;
132 stream_->IncreaseRecvWindowSize(bytes_read);
133 return bytes_read;
  /external/chromium/net/tools/flip_server/
sm_connection.cc 414 ssize_t bytes_read = 0; local
416 bytes_read = SSL_read(ssl_, bytes, size);
417 if (bytes_read < 0) {
418 int err = SSL_get_error(ssl_, bytes_read);
434 bytes_read = recv(fd_, bytes, size, MSG_DONTWAIT);
437 if (bytes_read == -1) {
454 } else if (bytes_read > 0) {
455 VLOG(2) << log_prefix_ << ACCEPTOR_CLIENT_IDENT << "read " << bytes_read local
466 read_buffer_.AdvanceWritablePtr(bytes_read);
470 } else { // bytes_read ==
    [all...]
  /external/chromium/sdch/open-vcdiff/src/gtest/
gtest-port.cc 146 size_t bytes_read = 0; // # of bytes read so far local
153 bytes_last_read = fread(buffer+bytes_read, 1, file_size-bytes_read, file);
154 bytes_read += bytes_last_read;
155 } while (bytes_last_read > 0 && bytes_read < file_size);
157 const ::std::string content(buffer, buffer+bytes_read);
  /external/chromium/sdch/open-vcdiff/src/
vcdiff_main.cc 137 // into input_buffer_. If successful, returns true and sets *bytes_read
140 bool ReadInput(size_t* bytes_read);
311 bool VCDiffFileBasedCoder::ReadInput(size_t* bytes_read) {
313 *bytes_read = fread(&input_buffer_[0], 1, input_buffer_.size(), input_file_);
346 size_t bytes_read = fread(&compare_buffer_[0], local
355 if (bytes_read < output_size) {
360 if (output.compare(0, output_size, &compare_buffer_[0], bytes_read) != 0) {
410 size_t bytes_read = 0; local
411 if (!WriteOutput(output) || !ReadInput(&bytes_read)) {
416 if (bytes_read > 0)
467 size_t bytes_read = 0; local
531 size_t bytes_read = 0; local
    [all...]

Completed in 2639 milliseconds

1 2 34 5 6 7 8 9