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

1 2 3 4 56 7 8 91011>>

  /external/chromium_org/third_party/leveldatabase/src/db/
db_impl.h 180 int64_t bytes_read; member in struct:leveldb::DBImpl::CompactionStats
183 CompactionStats() : micros(0), bytes_read(0), bytes_written(0) { }
187 this->bytes_read += c.bytes_read;
  /external/chromium_org/third_party/sfntly/cpp/src/test/
file_io_test.cc 41 size_t bytes_read = fread(&(b1[0]), 1, length, file_handle); local
42 EXPECT_EQ(bytes_read, length);
102 size_t bytes_read = fread(&(b1[0]), 1, length, file_handle); local
103 EXPECT_EQ(bytes_read, length);
  /external/chromium_org/third_party/tcmalloc/chromium/src/
symbolize.cc 243 int bytes_read = read(child_out[1], symbol_buffer_ + total_bytes_read,
245 if (bytes_read < 0) {
249 } else if (bytes_read == 0) {
254 total_bytes_read += bytes_read;
  /external/chromium_org/third_party/tcmalloc/vendor/src/
symbolize.cc 243 int bytes_read = read(child_out[1], symbol_buffer_ + total_bytes_read,
245 if (bytes_read < 0) {
249 } else if (bytes_read == 0) {
254 total_bytes_read += bytes_read;
  /external/chromium_org/webkit/browser/fileapi/
file_system_dir_url_request_job.h 38 int* bytes_read) OVERRIDE;
  /external/sfntly/cpp/src/test/
file_io_test.cc 41 size_t bytes_read = fread(&(b1[0]), 1, length, file_handle); local
42 EXPECT_EQ(bytes_read, length);
102 size_t bytes_read = fread(&(b1[0]), 1, length, file_handle); local
103 EXPECT_EQ(bytes_read, length);
  /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/
screenshot_source.cc 48 int bytes_read = 0; local
49 if (!(bytes_read = file_util::ReadFile(file,
  /external/chromium_org/android_webview/browser/net/
android_stream_reader_url_request_job.h 82 int* bytes_read) OVERRIDE;
109 void OnReaderReadCompleted(int bytes_read);
  /external/chromium_org/chrome/browser/extensions/api/serial/
serial_io_handler.h 97 void ReadCompleted(int bytes_read, api::serial::ReceiveError error);
107 void QueueReadCompleted(int bytes_read, api::serial::ReceiveError error);
  /external/chromium_org/chrome/utility/media_galleries/
iapps_xml_utils.cc 96 int bytes_read = local
98 if (bytes_read != file_info.size)
  /external/chromium_org/components/nacl/loader/
nacl_ipc_adapter_unittest.cc 89 int bytes_read = BlockingReceive(buf, kBufSize); local
91 static_cast<size_t>(bytes_read));
195 int bytes_read = BlockingReceive(buf, bytes_requested); local
196 ASSERT_EQ(bytes_requested, bytes_read);
199 bytes_read += BlockingReceive(&buf[bytes_requested],
202 static_cast<size_t>(bytes_read));
212 bytes_read = BlockingReceive(buf, kBufSize);
214 static_cast<size_t>(bytes_read));
  /external/chromium_org/content/browser/loader/
layered_resource_handler.cc 67 bool LayeredResourceHandler::OnReadCompleted(int request_id, int bytes_read,
70 return next_handler_->OnReadCompleted(request_id, bytes_read, defer);
resource_loader.cc 342 void ResourceLoader::OnReadCompleted(net::URLRequest* unused, int bytes_read) {
345 << " bytes_read = " << bytes_read;
347 // bytes_read == -1 always implies an error.
348 if (bytes_read == -1 || !request_->status().is_success()) {
353 CompleteRead(bytes_read);
358 if (request_->status().is_success() && bytes_read > 0) {
534 int bytes_read = 0; local
535 ReadMore(&bytes_read);
541 if (!is_continuation || bytes_read <= 0)
    [all...]
  /external/chromium_org/sync/engine/net/
server_connection_manager.cc 93 const int64 bytes_read = ReadResponse(buffer_out, local
95 if (bytes_read != response->content_length) {
105 const int64 bytes_read = ReadResponse(buffer_out, local
108 if (bytes_read != response->content_length) {
110 response->content_length << ", but sent " << bytes_read;
160 int bytes_read = buffer_.length(); local
161 CHECK(length <= bytes_read);
163 return bytes_read;
  /external/chromium_org/tools/gn/
function_exec_script.cc 125 DWORD bytes_read = 0; local
126 BOOL success = ReadFile(out_read, buffer, kBufferSize, &bytes_read, NULL);
127 if (!success || bytes_read == 0)
129 std_out->append(buffer, bytes_read);
215 ssize_t bytes_read = 0; local
218 bytes_read = HANDLE_EINTR(read(pipe_fd[0], buffer, sizeof(buffer)));
219 if (bytes_read <= 0)
221 std_out->append(buffer, bytes_read);
  /external/chromium_org/webkit/browser/blob/
blob_url_request_job.h 52 int* bytes_read) OVERRIDE;
74 bool ReadLoop(int* bytes_read);
  /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_org/net/base/
file_stream.cc 189 int bytes_read = ReadSync(buf, to_read); local
190 if (bytes_read <= 0) {
192 return bytes_read;
197 bytes_total += bytes_read;
198 buf += bytes_read;
199 to_read -= bytes_read;
  /external/chromium_org/net/socket/
tcp_server_socket_unittest.cc 231 size_t bytes_read = 0; local
232 while (bytes_read < message.size()) {
234 new net::IOBufferWithSize(message.size() - bytes_read));
240 ASSERT_TRUE(bytes_read + read_result <= message.size());
241 memmove(&buffer[bytes_read], read_buffer->data(), read_result);
242 bytes_read += read_result;
tcp_socket_unittest.cc 244 size_t bytes_read = 0; local
245 while (bytes_read < message.size()) {
247 new IOBufferWithSize(message.size() - bytes_read));
253 ASSERT_TRUE(bytes_read + read_result <= message.size());
254 memmove(&buffer[bytes_read], read_buffer->data(), read_result);
255 bytes_read += read_result;
  /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/chromium_org/net/quic/
quic_data_stream_test.cc 227 size_t bytes_read = stream_->Readv(&vec, 1); local
228 EXPECT_EQ(uncompressed_headers.length(), bytes_read);
229 EXPECT_EQ(uncompressed_headers, string(buffer, bytes_read));
231 bytes_read = stream_->Readv(&vec, 1);
232 EXPECT_EQ(body.length(), bytes_read);
233 EXPECT_EQ(body, string(buffer, bytes_read));
256 size_t bytes_read = stream_->Readv(&vec, 1); local
257 ASSERT_EQ(1u, bytes_read);
285 size_t bytes_read = stream_->Readv(vec, 2); local
286 ASSERT_EQ(2u, bytes_read) << i
    [all...]
  /external/chromium_org/third_party/openssl/openssl/apps/
s_time.c 134 static long bytes_read=0; variable
157 bytes_read=0;
396 bytes_read=0;
419 bytes_read+=i;
453 printf( "\n\n%d connections in %.2fs; %.2f connections/user sec, bytes read %ld\n", nConn, totalTime, ((double)nConn/totalTime),bytes_read);
454 printf( "%d connections in %ld real seconds, %ld bytes read per connection\n",nConn,(long)time(NULL)-finishtime+maxTime,bytes_read/nConn);
489 bytes_read=0;
512 bytes_read+=i;
543 printf( "\n\n%d connections in %.2fs; %.2f connections/user sec, bytes read %ld\n", nConn, totalTime, ((double)nConn/totalTime),bytes_read);
544 printf( "%d connections in %ld real seconds, %ld bytes read per connection\n",nConn,(long)time(NULL)-finishtime+maxTime,bytes_read/nConn)
    [all...]
  /external/openssl/apps/
s_time.c 134 static long bytes_read=0; variable
157 bytes_read=0;
396 bytes_read=0;
419 bytes_read+=i;
453 printf( "\n\n%d connections in %.2fs; %.2f connections/user sec, bytes read %ld\n", nConn, totalTime, ((double)nConn/totalTime),bytes_read);
454 printf( "%d connections in %ld real seconds, %ld bytes read per connection\n",nConn,(long)time(NULL)-finishtime+maxTime,bytes_read/nConn);
489 bytes_read=0;
512 bytes_read+=i;
543 printf( "\n\n%d connections in %.2fs; %.2f connections/user sec, bytes read %ld\n", nConn, totalTime, ((double)nConn/totalTime),bytes_read);
544 printf( "%d connections in %ld real seconds, %ld bytes read per connection\n",nConn,(long)time(NULL)-finishtime+maxTime,bytes_read/nConn)
    [all...]

Completed in 274 milliseconds

1 2 3 4 56 7 8 91011>>