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 32 const int InputStreamImpl::kBufferSize = 4096;
35 const InputStreamImpl* InputStreamImpl::FromInputStream(
37 return static_cast<const InputStreamImpl*>(input_stream);
43 InputStreamImpl::InputStreamImpl() {
46 InputStreamImpl::InputStreamImpl(const JavaRef<jobject>& stream)
51 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;
intercepted_request_data_impl.cc 32 return make_scoped_ptr<InputStream>(new InputStreamImpl(jstream));
android_protocol_handler.cc 27 using android_webview::InputStreamImpl;
154 return make_scoped_ptr<InputStream>(new InputStreamImpl(stream));
178 const InputStreamImpl* stream_impl =
179 InputStreamImpl::FromInputStream(stream);
  /external/apache-harmony/archive/src/test/java/org/apache/harmony/archive/tests/java/util/jar/
ManifestTest.java 436 InputStream is = new InputStreamImpl();
446 private class InputStreamImpl extends InputStream {
447 public InputStreamImpl() {

Completed in 191 milliseconds