HomeSort by relevance Sort by last modified time
    Searched refs:bytes_read (Results 226 - 250 of 450) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/e2fsprogs/e2fsck/
util.c 293 track->bytes_read = 0;
298 track->bytes_read = io_start->bytes_read;
363 unsigned long long bytes_read = 0; local
371 bytes_read = delta->bytes_read - track->bytes_read;
376 mbytes(bytes_read), mbytes(bytes_written),
377 (double)mbytes(bytes_read + bytes_written) /
  /frameworks/av/media/libstagefright/chromium_http/
support.cpp 457 void SfDelegate::OnReadCompleted(net::URLRequest *request, int bytes_read) {
458 if (bytes_read == -1) {
467 MY_LOGV(StringPrintf("OnReadCompleted, read %d bytes", bytes_read).c_str());
469 if (bytes_read < 0) {
476 } else if (bytes_read == 0) {
482 CHECK_GT(bytes_read, 0);
483 CHECK_LE(mNumBytesRead + bytes_read, mNumBytesTotal);
487 bytes_read);
489 mNumBytesRead += bytes_read;
  /external/chromium/testing/gtest/src/
gtest-port.cc 567 size_t bytes_read = 0; // # of bytes read so far
574 bytes_last_read = fread(buffer+bytes_read, 1, file_size-bytes_read, file);
575 bytes_read += bytes_last_read;
576 } while (bytes_last_read > 0 && bytes_read < file_size);
578 const String content(buffer, bytes_read);
  /external/chromium_org/base/process/
launch_posix.cc 574 ssize_t bytes_read = 1; // A lie to properly handle |max_output == 0| local
578 bytes_read = HANDLE_EINTR(read(pipe_fd[0], buffer,
580 if (bytes_read <= 0)
582 output->append(buffer, bytes_read);
583 output_buf_left -= static_cast<size_t>(bytes_read);
593 if (!output_buf_left && bytes_read > 0)
  /external/chromium_org/net/base/
network_change_notifier.cc 250 void NotifyDataReceived(const URLRequest& request, int bytes_read) {
262 bytes_read_since_last_connection_change_ += bytes_read;
267 if (bytes_read > 10000 &&
270 int32 kbps = bytes_read * 8 / request_duration.InMilliseconds();
520 int bytes_read) {
524 bytes_read);
upload_data_stream_unittest.cc 49 const int bytes_read = local
51 data_read.append(buf->data(), bytes_read);
164 int bytes_read = local
166 ASSERT_LE(0, bytes_read); // Not an error.
239 int bytes_read = read_callback.WaitForResult(); local
240 ASSERT_LE(0, bytes_read); // Not an error.
241 read_counter += bytes_read;
357 const int bytes_read = local
359 ASSERT_LE(0, bytes_read); // Not an error.
378 int bytes_read local
469 int bytes_read = stream.Read(buf.get(), kTestDataSize, CompletionCallback()); local
470 ASSERT_EQ(static_cast<int>(kTestDataSize), bytes_read); \/\/ Not an error. local
    [all...]
  /external/chromium_org/third_party/mesa/src/src/gtest/src/
gtest-port.cc 567 size_t bytes_read = 0; // # of bytes read so far
574 bytes_last_read = fread(buffer+bytes_read, 1, file_size-bytes_read, file);
575 bytes_read += bytes_last_read;
576 } while (bytes_last_read > 0 && bytes_read < file_size);
578 const String content(buffer, bytes_read);
  /external/chromium_org/tools/android/forwarder2/
socket.cc 304 int bytes_read = 0; local
306 while (bytes_read < num_bytes && ret > 0) {
307 ret = Read(static_cast<char*>(buffer) + bytes_read, num_bytes - bytes_read);
309 bytes_read += ret;
311 return bytes_read;
  /external/gtest/src/
gtest-port.cc 591 size_t bytes_read = 0; // # of bytes read so far
598 bytes_last_read = fread(buffer+bytes_read, 1, file_size-bytes_read, file);
599 bytes_read += bytes_last_read;
600 } while (bytes_last_read > 0 && bytes_read < file_size);
602 const String content(buffer, bytes_read);
  /external/llvm/utils/unittest/googletest/
gtest-port.cc 571 size_t bytes_read = 0; // # of bytes read so far
578 bytes_last_read = fread(buffer+bytes_read, 1, file_size-bytes_read, file);
579 bytes_read += bytes_last_read;
580 } while (bytes_last_read > 0 && bytes_read < file_size);
582 const String content(buffer, bytes_read);
  /external/mesa3d/src/gtest/src/
gtest-port.cc 567 size_t bytes_read = 0; // # of bytes read so far
574 bytes_last_read = fread(buffer+bytes_read, 1, file_size-bytes_read, file);
575 bytes_read += bytes_last_read;
576 } while (bytes_last_read > 0 && bytes_read < file_size);
578 const String content(buffer, bytes_read);
  /external/open-vcdiff/gtest/src/
gtest-port.cc 521 size_t bytes_read = 0; // # of bytes read so far
528 bytes_last_read = fread(buffer+bytes_read, 1, file_size-bytes_read, file);
529 bytes_read += bytes_last_read;
530 } while (bytes_last_read > 0 && bytes_read < file_size);
532 const String content(buffer, bytes_read);
  /external/protobuf/gtest/src/
gtest-port.cc 521 size_t bytes_read = 0; // # of bytes read so far
528 bytes_last_read = fread(buffer+bytes_read, 1, file_size-bytes_read, file);
529 bytes_read += bytes_last_read;
530 } while (bytes_last_read > 0 && bytes_read < file_size);
532 const String content(buffer, bytes_read);
  /external/jpeg/
jdmarker.c 103 unsigned int bytes_read; /* data bytes read so far in marker */ member in struct:__anon22345
752 unsigned int bytes_read, data_length; local
781 marker->bytes_read = 0;
782 bytes_read = 0;
786 bytes_read = data_length = 0;
791 bytes_read = marker->bytes_read;
793 data = cur_marker->data + bytes_read;
796 while (bytes_read < data_length) {
798 marker->bytes_read = bytes_read
    [all...]
  /external/qemu/distrib/jpeg-6b/
jdmarker.c 103 unsigned int bytes_read; /* data bytes read so far in marker */ member in struct:__anon27610
744 unsigned int bytes_read, data_length; local
773 marker->bytes_read = 0;
774 bytes_read = 0;
778 bytes_read = data_length = 0;
783 bytes_read = marker->bytes_read;
785 data = cur_marker->data + bytes_read;
788 while (bytes_read < data_length) {
790 marker->bytes_read = bytes_read
    [all...]
  /development/host/windows/usb/api/
adb_api.h 501 @param[out] bytes_read Number of bytes read. Can be NULL.
514 unsigned long* bytes_read,
547 @param[out] bytes_read Number of bytes read. Can be NULL.
557 unsigned long* bytes_read,
  /external/bluetooth/bluedroid/hci/src/
hci_mct.c 725 uint16_t bytes_read = 0; local
740 bytes_read++;
840 bytes_read += len;
890 return (bytes_read);
905 uint16_t bytes_read = 0; local
920 bytes_read++;
    [all...]
  /external/chromium/chrome/browser/debugger/
devtools_http_protocol_handler.cc 416 int bytes_read = 0; local
423 request->Read(buffer, kBufferSize, &bytes_read);
424 OnReadCompleted(request, bytes_read);
428 int bytes_read) {
437 if (!request->status().is_success() || bytes_read <= 0)
439 std::string chunk_size = StringPrintf("%X\r\n", bytes_read);
441 server_->Send(connection_id, buffer->data(), bytes_read);
443 } while (request->Read(buffer, kBufferSize, &bytes_read));
  /external/chromium/chrome/browser/prerender/
prerender_resource_handler.cc 171 int* bytes_read) {
172 return next_handler_->OnReadCompleted(request_id, bytes_read);
  /external/chromium/chrome/browser/
process_singleton_linux.cc 185 size_t bytes_read = 0; local
187 ssize_t rv = HANDLE_EINTR(read(fd, buf + bytes_read, bufsize - bytes_read));
194 return bytes_read;
198 return bytes_read;
200 bytes_read += rv;
202 } while (bytes_read < bufsize);
204 return bytes_read;
    [all...]
  /external/chromium/chrome/browser/renderer_host/
offline_resource_handler.cc 128 bool OfflineResourceHandler::OnReadCompleted(int request_id, int* bytes_read) {
129 return next_handler_->OnReadCompleted(request_id, bytes_read);
  /external/chromium/net/url_request/
url_request_test_util.h 147 virtual void OnReadCompleted(net::URLRequest* request, int bytes_read);
205 virtual void OnReadCompleted(net::URLRequest* request, int bytes_read);
  /external/chromium_org/chrome/browser/chromeos/drive/
drive_url_request_job.cc 146 net::IOBuffer* buf, int buf_size, int* bytes_read) {
167 *bytes_read = result;
  /external/chromium_org/chrome/test/security_tests/
ipc_security_tests.cc 127 DWORD bytes_read = 0; local
138 ::ReadFile(server_pipe, buffer, 1, &bytes_read, NULL);
  /external/chromium_org/content/browser/loader/
detachable_resource_handler.cc 152 bool DetachableResourceHandler::OnReadCompleted(int request_id, int bytes_read,
160 next_handler_->OnReadCompleted(request_id, bytes_read, &is_deferred_);

Completed in 656 milliseconds

1 2 3 4 5 6 7 8 91011>>