HomeSort by relevance Sort by last modified time
    Searched refs:InputStreamImpl (Results 1 - 6 of 6) sorted by null

  /external/chromium_org/android_webview/native/
input_stream_impl.h 18 class InputStreamImpl : public InputStream {
23 static const InputStreamImpl* FromInputStream(
28 InputStreamImpl(const base::android::JavaRef<jobject>& stream);
29 virtual ~InputStreamImpl();
40 InputStreamImpl();
46 DISALLOW_COPY_AND_ASSIGN(InputStreamImpl);
input_stream_impl.cc 35 const int InputStreamImpl::kBufferSize = 4096;
38 const InputStreamImpl* InputStreamImpl::FromInputStream(
40 return static_cast<const InputStreamImpl*>(input_stream);
46 InputStreamImpl::InputStreamImpl() {
49 InputStreamImpl::InputStreamImpl(const JavaRef<jobject>& stream)
54 InputStreamImpl::~InputStreamImpl() {
    [all...]
input_stream_unittest.cc 18 using android_webview::InputStreamImpl;
53 new InputStreamImpl(counting_jstream));
68 scoped_ptr<InputStream> input_stream(new InputStreamImpl(empty_jstream));
92 const int buffer_size = 3 * InputStreamImpl::kBufferSize;
110 const int bytes_requested = 3 * InputStreamImpl::kBufferSize;
117 const int bytes_requested = 3 * InputStreamImpl::kBufferSize;
128 scoped_ptr<InputStream> input_stream(new InputStreamImpl(throw_jstream));
android_protocol_handler.cc 27 using android_webview::InputStreamImpl;
158 return make_scoped_ptr<InputStream>(new InputStreamImpl(stream));
182 const InputStreamImpl* stream_impl =
183 InputStreamImpl::FromInputStream(stream);
aw_web_resource_response_impl.cc 35 return make_scoped_ptr<InputStream>(new InputStreamImpl(jstream));
  /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/util/jar/
ManifestTest.java 436 InputStream is = new InputStreamImpl();
446 private class InputStreamImpl extends InputStream {
447 public InputStreamImpl() {

Completed in 148 milliseconds