HomeSort by relevance Sort by last modified time
    Searched full:inputstream (Results 1176 - 1200 of 2007) sorted by null

<<41424344454647484950>>

  /packages/apps/Bluetooth/tests/src/com/android/bluetooth/tests/
BluetoothMapbMessageTest.java 5 import java.io.InputStream;
194 // InputStream is = new ByteArrayInputStream(encodedBytes);
264 InputStream is = new ByteArrayInputStream(encodedBytes);
326 InputStream is = new ByteArrayInputStream(encoded.getBytes("UTF-8"));
357 InputStream is = new ByteArrayInputStream(encoded);
409 InputStream is = new ByteArrayInputStream(encoded.getBytes("UTF-8"));
  /packages/apps/Email/src/com/android/email/mail/store/
Pop3Store.java 47 import java.io.InputStream;
605 InputStream in = mTransport.getInputStream();
780 public void parse(InputStream in) throws IOException, MessagingException {
806 class Pop3ResponseInputStream extends InputStream {
807 private final InputStream mIn;
811 public Pop3ResponseInputStream(InputStream in) {
  /external/okhttp/src/test/java/com/squareup/okhttp/internal/spdy/
SpdyConnectionTest.java 22 import java.io.InputStream;
448 InputStream in = stream.getInputStream();
491 InputStream in = stream.getInputStream();
532 InputStream in = stream.getInputStream();
    [all...]
  /cts/libs/testserver/src/android/webkit/cts/
CtsTestServer.java 55 import java.io.InputStream;
199 InputStream is = connection.getInputStream();
555 InputStream in;
    [all...]
  /external/apache-harmony/logging/src/test/java/org/apache/harmony/logging/tests/java/util/logging/
LogManagerTest.java 24 import java.io.InputStream;
458 * Class under test for void readConfiguration(InputStream)
462 InputStream stream = EnvironmentHelper.PropertiesToInputStream(props);
502 InputStream stream = EnvironmentHelper.PropertiesToInputStream(props);
805 InputStream in = EnvironmentHelper.PropertiesToInputStream(props);
934 public void readConfiguration(InputStream ins) throws IOException {
    [all...]
  /external/javassist/src/main/javassist/
ClassPool.java 21 import java.io.InputStream;
630 InputStream openClassfile(String classname) throws NotFoundException {
689 * @see #makeClassIfNew(InputStream)
692 public CtClass makeClass(InputStream classfile)
712 public CtClass makeClass(InputStream classfile, boolean ifNotFrozen)
738 * @see #makeClass(InputStream)
742 public CtClass makeClassIfNew(InputStream classfile)
    [all...]
  /frameworks/base/tests/CoreTests/android/core/
SSLSocketTest.java 30 import java.io.InputStream;
345 InputStream stream = socket.getInputStream();
672 InputStream stream = clientSocket.getInputStream();
    [all...]
  /libcore/luni/src/main/java/java/net/
HttpURLConnection.java 21 import java.io.InputStream;
59 * InputStream in = new BufferedInputStream(urlConnection.getInputStream());
109 * InputStream in = new BufferedInputStream(urlConnection.getInputStream());
140 * until it is exhausted: when {@link InputStream#read} returns -1. Gzip
157 * InputStream in = new BufferedInputStream(urlConnection.getInputStream());
244 * particular, calling {@code close()} on a readable {@code InputStream} could
551 public InputStream getErrorStream() {
URLConnection.java 21 import java.io.InputStream;
38 * InputStream in = new BufferedInputStream(urlConnection.getInputStream());
580 * Returns an {@code InputStream} for reading data from the resource pointed by
584 * @return the InputStream to read data from.
586 * if no InputStream could be created.
588 public InputStream getInputStream() throws IOException {
696 public static String guessContentTypeFromStream(InputStream is) throws IOException {
    [all...]
  /libcore/luni/src/test/java/org/apache/harmony/crypto/tests/javax/crypto/
CipherTest.java 22 import java.io.InputStream;
344 InputStream is = Support_Resources.getStream(resPath);
402 InputStream is = Support_Resources.getStream(resPath);
465 InputStream is = Support_Resources.getStream(resPath);
749 InputStream is = new URL(certName).openConnection().getInputStream();
779 InputStream is = new URL(certName).openConnection().getInputStream();
921 InputStream is = new URL(certName).openConnection().getInputStream();
    [all...]
  /packages/apps/ContactsCommon/src/com/android/contacts/common/model/
ContactLoader.java 64 import java.io.InputStream;
514 final InputStream inputStream;
520 inputStream = new URL(photoUri).openStream();
524 inputStream = fd.createInputStream();
530 while ((size = inputStream.read(buffer)) != -1) {
535 inputStream.close();
    [all...]
  /prebuilts/devtools/tools/lib/
bcprov-jdk15on-1.48.jar 
  /prebuilts/tools/common/m2/repository/org/bouncycastle/bcprov-jdk15on/1.48/
bcprov-jdk15on-1.48.jar 
  /frameworks/base/docs/html/guide/topics/connectivity/
bluetooth.jd 104 an application to exchange data with another Bluetooth device via InputStream
    [all...]
  /external/chromium_org/base/android/jni_generator/
jni_generator_tests.py 725 import java.io.InputStream;
760 static InputStream openUrl(String url) {
866 return_type='InputStream',
    [all...]
  /external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/lang/
ClassTest.java 23 import java.io.InputStream;
447 InputStream str = Object.class.getResourceAsStream("Class.class");
454 InputStream str2 = getClass().getResourceAsStream("ClassTest.class");
466 assertSame("Normal class has bogus superclass", InputStream.class,
583 InputStream in = getClass().getResourceAsStream("/"+FILENAME);
  /external/apache-harmony/security/src/test/support/common/java/org/apache/harmony/security/tests/support/
TestCertUtils.java 25 import java.io.InputStream;
614 public Certificate engineGenerateCertificate(InputStream is)
646 public Collection engineGenerateCertificates(InputStream inStream)
655 public CRL engineGenerateCRL(InputStream inStream) throws CRLException {
663 public Collection engineGenerateCRLs(InputStream inStream)
  /external/chromium_org/third_party/protobuf/java/src/main/java/com/google/protobuf/
AbstractMessage.java 39 import java.io.InputStream;
902 public BuilderType mergeFrom(final InputStream input)
909 final InputStream input
    [all...]
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
org.eclipse.help_3.5.0.v20100524.jar 
  /external/okhttp/src/main/java/com/squareup/okhttp/internal/spdy/
SpdyStream.java 21 import java.io.InputStream;
228 public InputStream getInputStream() {
324 void receiveData(InputStream in, int length) throws IOException {
385 private final class SpdyDataInputStream extends InputStream {
514 void receive(InputStream in, int byteCount) throws IOException {
  /external/protobuf/java/src/main/java/com/google/protobuf/
AbstractMessage.java 36 import java.io.InputStream;
681 public BuilderType mergeFrom(final InputStream input)
688 final InputStream input,
695 public boolean mergeDelimitedFrom(final InputStream input)
702 final InputStream input,
  /frameworks/base/core/java/android/widget/
VideoView.java 50 import java.io.InputStream;
223 mPendingSubtitleTracks = new Vector<Pair<InputStream, MediaFormat>>();
270 public void addSubtitleSource(InputStream is, MediaFormat format) {
283 private Vector<Pair<InputStream, MediaFormat>> mPendingSubtitleTracks;
337 for (Pair<InputStream, MediaFormat> pending: mPendingSubtitleTracks) {
    [all...]
  /frameworks/base/obex/javax/obex/
ClientOperation.java 36 import java.io.InputStream;
235 public InputStream openInputStream() throws IOException {
599 // to deal with inputstream in get operation
632 // How to deal with inputstream in put operation ?
687 // to deal with inputstream in get operation
  /libcore/support/src/test/java/org/apache/harmony/security/tests/support/
TestCertUtils.java 26 import java.io.InputStream;
615 public Certificate engineGenerateCertificate(InputStream is)
647 public Collection engineGenerateCertificates(InputStream inStream)
656 public CRL engineGenerateCRL(InputStream inStream) throws CRLException {
664 public Collection engineGenerateCRLs(InputStream inStream)
  /packages/apps/Mms/src/com/android/mms/model/
SlideshowModel.java 24 import java.io.InputStream;
313 public HashMap<Uri, InputStream> openPartFiles(ContentResolver cr) {
314 HashMap<Uri, InputStream> openedFiles = null; // Don't create unless we have to
322 InputStream is;
327 openedFiles = new HashMap<Uri, InputStream>();

Completed in 2644 milliseconds

<<41424344454647484950>>