Searched refs:bytes_requested (Results 1 - 6 of 6) sorted by relevance

/external/chromium_org/android_webview/native/
H A Dinput_stream_unittest.cc46 int bytes_requested,
54 scoped_refptr<IOBuffer> buffer = new IOBuffer(bytes_requested);
56 EXPECT_TRUE(input_stream->Read(buffer.get(), bytes_requested, bytes_read));
69 const int bytes_requested = 10; local
71 scoped_refptr<IOBuffer> buffer = new IOBuffer(bytes_requested);
73 EXPECT_TRUE(input_stream->Read(buffer.get(), bytes_requested, &bytes_read));
78 const int bytes_requested = 128; local
80 DoReadCountedStreamTest(bytes_requested * 2, bytes_requested, &bytes_read);
81 EXPECT_EQ(bytes_requested, bytes_rea
45 DoReadCountedStreamTest(int stream_size, int bytes_requested, int* bytes_read) argument
85 const int bytes_requested = 42; local
99 const int bytes_requested = 256; local
110 const int bytes_requested = 3 * InputStreamImpl::kBufferSize; local
117 const int bytes_requested = 3 * InputStreamImpl::kBufferSize; local
137 const int bytes_requested = 10; local
[all...]
/external/linux-tools-perf/perf-3.12.0/tools/perf/scripts/perl/
H A Drw-by-file.pl34 $reads{$fd}{bytes_requested} += $count;
54 printf("%6s %10s %10s\n", "fd", "# reads", "bytes_requested");
57 foreach my $fd (sort {$reads{$b}{bytes_requested} <=>
58 $reads{$a}{bytes_requested}} keys %reads) {
60 my $bytes_requested = $reads{$fd}{bytes_requested};
61 printf("%6u %10u %10u\n", $fd, $total_reads, $bytes_requested);
H A Drwtop.pl61 $reads{$common_pid}{bytes_requested} += $count;
140 my $bytes_requested = $reads{$pid}{bytes_requested} || 0;
144 $total_reads, $bytes_requested, $bytes_read);
H A Drw-by-pid.pl46 $reads{$common_pid}{bytes_requested} += $count;
78 "# reads", "bytes_requested", "bytes_read");
86 my $bytes_requested = $reads{$pid}{bytes_requested} || 0;
90 $total_reads, $bytes_requested, $bytes_read);
/external/flac/libFLAC/
H A Dogg_decoder_aspect.c108 const size_t bytes_requested = *bytes; local
137 while (*bytes < bytes_requested && !aspect->end_of_stream) {
140 size_t n = bytes_requested - *bytes;
213 const size_t ogg_bytes_to_read = max(bytes_requested - *bytes, OGG_BYTES_CHUNK);
/external/chromium_org/components/nacl/loader/
H A Dnacl_ipc_adapter_unittest.cc194 int bytes_requested = 7; local
195 int bytes_read = BlockingReceive(buf, bytes_requested);
196 ASSERT_EQ(bytes_requested, bytes_read);
199 bytes_read += BlockingReceive(&buf[bytes_requested],
200 kBufSize - bytes_requested);

Completed in 1997 milliseconds