OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:BytesAvailable
(Results
1 - 6
of
6
) sorted by null
/external/chromium_org/android_webview/browser/
input_stream.h
29
virtual bool
BytesAvailable
(int* bytes_available) const = 0;
/external/chromium_org/android_webview/browser/net/
input_stream_reader_unittest.cc
35
MOCK_CONST_METHOD1(
BytesAvailable
, bool(int* bytes_available));
62
EXPECT_CALL(input_stream_,
BytesAvailable
(NotNull()))
72
EXPECT_CALL(input_stream_,
BytesAvailable
(NotNull()))
86
EXPECT_CALL(input_stream_,
BytesAvailable
(NotNull()))
101
EXPECT_CALL(input_stream_,
BytesAvailable
(NotNull()))
128
EXPECT_CALL(input_stream_,
BytesAvailable
(NotNull()))
136
const int
bytesAvailable
= 256;
137
EXPECT_CALL(input_stream_,
BytesAvailable
(NotNull()))
138
.WillOnce(DoAll(SetArgPointee<0>(
bytesAvailable
),
141
ASSERT_GT(0, SeekRange(
bytesAvailable
, 2 * bytesAvailable))
[
all
...]
input_stream_reader.cc
58
if (!stream_->
BytesAvailable
(&size))
android_stream_reader_url_request_job_unittest.cc
52
virtual bool
BytesAvailable
(int* bytes_available) const OVERRIDE {
/external/chromium_org/android_webview/native/
input_stream_impl.h
35
virtual bool
BytesAvailable
(int* bytes_available) const OVERRIDE;
input_stream_impl.cc
56
bool InputStreamImpl::
BytesAvailable
(int* bytes_available) const {
Completed in 911 milliseconds