Searched refs:bytes_read (Results 326 - 350 of 426) sorted by relevance

<<1112131415161718

/external/chromium_org/content/browser/appcache/
H A Dappcache_url_request_job.h141 int *bytes_read) OVERRIDE;
H A Dappcache_url_request_job.cc422 int *bytes_read) {
425 DCHECK(bytes_read);
421 ReadRawData(net::IOBuffer* buf, int buf_size, int *bytes_read) argument
H A Dappcache_url_request_job_unittest.cc140 int bytes_read) OVERRIDE {
141 if (bytes_read > 0) {
142 amount_received_ += bytes_read;
168 int bytes_read = 0; local
170 request->Read(wrapped_buffer.get(), kBlockSize, &bytes_read));
171 EXPECT_EQ(0, bytes_read);
/external/chromium_org/extensions/browser/api/serial/
H A Dserial_connection.h144 void OnAsyncReadComplete(int bytes_read, device::serial::ReceiveError error);
/external/chromium_org/media/blink/
H A Dbuffered_resource_loader.h237 void DoneRead(Status status, int bytes_read);
/external/chromium_org/native_client_sdk/src/tests/nacl_io_test/
H A Dfilesystem_test.cc387 int bytes_read = 0; local
389 0, dev_urandom->Read(attrs, &buffer[0], kSampleBatchSize, &bytes_read));
390 EXPECT_EQ(kSampleBatchSize, bytes_read);
392 for (int i = 0; i < bytes_read; ++i) {
/external/chromium_org/net/base/
H A Dnetwork_change_notifier.h232 static void NotifyDataReceived(const URLRequest& request, int bytes_read);
/external/chromium_org/third_party/webrtc/base/
H A Dstream.h564 virtual StreamResult Read(void* buffer, size_t bytes, size_t* bytes_read,
644 size_t* bytes_read);
656 size_t* bytes_read, int* error);
670 size_t* bytes_read);
/external/e2fsprogs/lib/ext2fs/
H A Dext2_io.h67 unsigned long long bytes_read; member in struct:struct_io_stats
/external/lldb/source/Host/common/
H A DFileSpec.cpp793 size_t bytes_read = 0; local
802 bytes_read = dst_len;
803 error = file.Read(dst, bytes_read, file_offset_after_seek);
812 return bytes_read;
/external/stressapptest/src/
H A Dos.cc311 ssize_t bytes_read = read(hpfile, buf, 64); local
314 if (bytes_read <= 0) {
320 if (bytes_read == 64) {
327 buf[bytes_read] = '\0';
/external/chromium_org/android_webview/browser/net/
H A Dandroid_stream_reader_url_request_job.cc239 int* bytes_read) {
245 *bytes_read = 0;
237 ReadRawData(net::IOBuffer* dest, int dest_size, int* bytes_read) argument
/external/chromium_org/extensions/browser/api/bluetooth_socket/
H A Dbluetooth_socket_event_dispatcher.cc187 int bytes_read,
194 receive_info.data = std::string(io_buffer->data(), bytes_read);
185 ReceiveCallback( const SocketParams& params, int bytes_read, scoped_refptr<net::IOBuffer> io_buffer) argument
/external/chromium_org/extensions/browser/api/cast_channel/
H A Dlogger_unittest.cc211 EXPECT_EQ(80, aggregated_socket_event.bytes_read());
219 EXPECT_EQ(100, aggregated_socket_event.bytes_read());
/external/chromium_org/net/spdy/
H A Dbuffered_spdy_framer_unittest.cc145 size_t bytes_read = local
148 buffered_spdy_framer_.ProcessInput(input_ptr, bytes_read);
/external/chromium_org/net/url_request/
H A Durl_request_test_util.h186 int bytes_read) OVERRIDE;
309 int bytes_read) OVERRIDE;
/external/chromium_org/third_party/android_crazy_linker/src/src/
H A Dcrazy_linker_shared_library.cpp201 const ssize_t bytes_read = fd.Read(buffer.Get(), bytes); local
202 if (static_cast<size_t>(bytes_read) != bytes) {
/external/chromium_org/testing/gtest/src/
H A Dgtest-port.cc991 size_t bytes_read = 0; // # of bytes read so far
998 bytes_last_read = fread(buffer+bytes_read, 1, file_size-bytes_read, file);
999 bytes_read += bytes_last_read;
1000 } while (bytes_last_read > 0 && bytes_read < file_size);
1002 const std::string content(buffer, bytes_read);
H A Dgtest-death-test.cc427 int bytes_read; local
434 bytes_read = posix::Read(read_fd(), &flag, 1);
435 } while (bytes_read == -1 && errno == EINTR);
437 if (bytes_read == 0) {
439 } else if (bytes_read == 1) {
/external/lldb/source/Core/
H A DAddress.cpp184 size_t bytes_read; local
187 while ((bytes_read = ReadBytes (exe_scope, curr_address, buf, k_buf_len)) > 0)
192 if (len > bytes_read)
193 len = bytes_read;
206 total_len += bytes_read;
210 curr_address.SetOffset (curr_address.GetOffset() + bytes_read);
H A DDisassembler.cpp1082 const size_t bytes_read = target->ReadMemory (range.GetBaseAddress(), local
1089 if (bytes_read > 0)
1091 if (bytes_read != heap_buffer->GetByteSize())
1092 heap_buffer->SetByteSize (bytes_read);
1138 const size_t bytes_read = target->ReadMemory (start, local
1147 if (bytes_read == 0)
/external/lldb/source/Target/
H A DProcess.cpp2407 size_t bytes_read = ReadMemory (curr_addr, curr_dst, bytes_to_read, error);
2409 if (bytes_read == 0)
2412 // Search for a null terminator of correct size and alignment in bytes_read
2414 for (size_t i = aligned_start; i + type_width <= total_bytes_read + bytes_read; i += type_width)
2421 total_bytes_read += bytes_read;
2422 curr_dst += bytes_read;
2423 curr_addr += bytes_read;
2424 bytes_left -= bytes_read;
2456 size_t bytes_read = ReadMemory (curr_addr, curr_dst, bytes_to_read, error);
2458 if (bytes_read
[all...]
/external/chromium_org/net/dns/
H A Dmdns_client_impl.cc192 int bytes_read) {
194 DCHECK_GT(bytes_read, 0);
195 delegate_->HandlePacket(response, bytes_read);
223 int bytes_read) {
230 if (!response->InitParseWithoutQuery(bytes_read)) {
189 OnDatagramReceived( DnsResponse* response, const IPEndPoint& recv_addr, int bytes_read) argument
222 HandlePacket(DnsResponse* response, int bytes_read) argument
/external/chromium_org/third_party/mesa/src/src/gtest/src/
H A Dgtest-death-test.cc387 int bytes_read; local
394 bytes_read = posix::Read(read_fd(), &flag, 1);
395 } while (bytes_read == -1 && errno == EINTR);
397 if (bytes_read == 0) {
399 } else if (bytes_read == 1) {
/external/gtest/src/
H A Dgtest-death-test.cc427 int bytes_read; local
434 bytes_read = posix::Read(read_fd(), &flag, 1);
435 } while (bytes_read == -1 && errno == EINTR);
437 if (bytes_read == 0) {
439 } else if (bytes_read == 1) {

Completed in 652 milliseconds

<<1112131415161718