/external/chromium_org/android_webview/native/ |
input_stream_unittest.cc | 46 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_read) 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 [all...] |
/external/linux-tools-perf/scripts/perl/ |
rw-by-file.pl | 34 $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);
|
rw-by-pid.pl | 46 $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);
|
rwtop.pl | 60 $reads{$common_pid}{bytes_requested} += $count; 136 my $bytes_requested = $reads{$pid}{bytes_requested} || 0; 140 $total_reads, $bytes_requested, $bytes_read);
|
/external/flac/libFLAC/ |
ogg_decoder_aspect.c | 108 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/ |
nacl_ipc_adapter_unittest.cc | 194 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);
|
/external/chromium_org/ppapi/native_client/src/trusted/plugin/ |
service_runtime.h | 133 bytes_requested(quota_bytes_requested), 139 int64_t bytes_requested; member in struct:plugin::QuotaRequest
|