HomeSort by relevance Sort by last modified time
    Searched full:inputstream (Results 126 - 150 of 1844) sorted by null

1 2 3 4 56 7 8 91011>>

  /libcore/luni/src/test/java/tests/security/cert/
CertificateFactorySpiTest.java 32 import java.io.InputStream;
247 * Test for <code>engineGenerateCertPath(InputStream)</code> method.
249 * with the data read from the <code>InputStream</code>
266 * Test for <code>engineGenerateCertPath(InputStream)</code> method.
268 * with the data read from the <code>InputStream</code>
287 * Test for <code>engineGenerateCertPath(InputStream, String)</code>
289 * initializes it with the data read from the <code>InputStream</code>
313 * Test for <code>engineGenerateCertPath(InputStream, String)</code>
315 * initializes it with the data read from the <code>InputStream</code>
395 public Certificate engineGenerateCertificate(InputStream inStream
    [all...]
  /packages/apps/Email/src/org/apache/james/mime4j/field/address/parser/
SimpleCharStream.java 40 protected java.io.Reader inputStream;
127 if ((i = inputStream.read(buffer, maxNextCharInd,
130 inputStream.close();
260 inputStream = dstream;
283 inputStream = dstream;
309 public SimpleCharStream(java.io.InputStream dstream, String encoding, int startline,
315 public SimpleCharStream(java.io.InputStream dstream, int startline,
321 public SimpleCharStream(java.io.InputStream dstream, String encoding, int startline,
327 public SimpleCharStream(java.io.InputStream dstream, int startline,
333 public SimpleCharStream(java.io.InputStream dstream, String encoding) throws java.io.UnsupportedEncodingExceptio
    [all...]
  /packages/apps/Email/src/org/apache/james/mime4j/field/contenttype/parser/
SimpleCharStream.java 40 protected java.io.Reader inputStream;
127 if ((i = inputStream.read(buffer, maxNextCharInd,
130 inputStream.close();
260 inputStream = dstream;
283 inputStream = dstream;
309 public SimpleCharStream(java.io.InputStream dstream, String encoding, int startline,
315 public SimpleCharStream(java.io.InputStream dstream, int startline,
321 public SimpleCharStream(java.io.InputStream dstream, String encoding, int startline,
327 public SimpleCharStream(java.io.InputStream dstream, int startline,
333 public SimpleCharStream(java.io.InputStream dstream, String encoding) throws java.io.UnsupportedEncodingExceptio
    [all...]
  /packages/apps/Email/src/org/apache/james/mime4j/field/datetime/parser/
SimpleCharStream.java 40 protected java.io.Reader inputStream;
127 if ((i = inputStream.read(buffer, maxNextCharInd,
130 inputStream.close();
260 inputStream = dstream;
283 inputStream = dstream;
309 public SimpleCharStream(java.io.InputStream dstream, String encoding, int startline,
315 public SimpleCharStream(java.io.InputStream dstream, int startline,
321 public SimpleCharStream(java.io.InputStream dstream, String encoding, int startline,
327 public SimpleCharStream(java.io.InputStream dstream, int startline,
333 public SimpleCharStream(java.io.InputStream dstream, String encoding) throws java.io.UnsupportedEncodingExceptio
    [all...]
  /development/samples/ApiDemos/src/com/example/android/apis/app/
ActionBarShareActionProviderActivity.java 33 import java.io.InputStream;
95 InputStream inputStream = null;
98 inputStream = getResources().openRawResource(R.raw.robot);
104 while ((length = inputStream.read(buffer)) > 0){
114 inputStream.close();
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/crypto/io/
CipherInputStream.java 5 import java.io.InputStream;
11 * A CipherInputStream is composed of an InputStream and a BufferedBlockCipher so
13 * underlying InputStream but have been additionally processed by the
37 * Constructs a CipherInputStream from an InputStream and a
41 InputStream is,
53 InputStream is,
  /external/mockwebserver/src/test/java/com/google/mockwebserver/
MockWebServerTest.java 21 import java.io.InputStream;
49 InputStream in = connection.getInputStream();
68 InputStream in = connection.getInputStream();
86 InputStream in = connection.getInputStream();
105 InputStream in = urlConnection.getInputStream();
116 InputStream in2 = urlConnection2.getInputStream();
  /external/oauth/core/src/main/java/net/oauth/http/
HttpMessage.java 20 import java.io.InputStream;
49 public HttpMessage(String method, URL url, InputStream body)
59 protected InputStream body = null;
100 public final InputStream getBody() throws IOException
103 InputStream raw = openBody();
111 protected InputStream openBody() throws IOException
  /external/objenesis/tck/src/org/objenesis/tck/
CandidateLoader.java 19 import java.io.InputStream;
81 * @param inputStream Stream containing the properties
84 public void loadFrom(InputStream inputStream) throws IOException {
96 properties.load(inputStream);
107 InputStream candidatesConfig = cls.getResourceAsStream(resource);
  /frameworks/base/tests/DumpRenderTree2/src/com/android/dumprendertree2/forwarder/
ConnectionHandler.java 24 import java.io.InputStream;
43 private InputStream mInputStream;
46 public SocketPipeThread(InputStream inputStream, OutputStream outputStream) {
47 mInputStream = inputStream;
88 private InputStream mFromSocketInputStream, mToSocketInputStream;
  /frameworks/base/tools/layoutlib/bridge/src/com/android/layoutlib/bridge/impl/
ParserFactory.java 30 import java.io.InputStream;
44 InputStream stream = new FileInputStream(f);
48 public static XmlPullParser create(InputStream stream, String name)
53 private static XmlPullParser create(InputStream stream, String name, long size)
74 private static InputStream readAndClose(InputStream stream, String name, long size)
  /libcore/luni/src/main/java/java/security/
Certificate.java 21 import java.io.InputStream;
37 * Decodes a certificate from the given {@code InputStream}. The format of
42 * the {@code InputStream} to read from.
50 public void decode(InputStream stream) throws KeyException, IOException;
54 * {@link #decode(InputStream)} method must be able to decode the format
63 * @see #decode(InputStream)
  /external/guava/guava/src/com/google/common/io/
ByteStreams.java 30 import java.io.InputStream;
113 public static long copy(InputSupplier<? extends InputStream> from,
116 InputStream in = from.getInput();
142 public static long copy(InputSupplier<? extends InputStream> from,
145 InputStream in = from.getInput();
166 public static long copy(InputStream from,
188 public static long copy(InputStream from, OutputStream to)
234 public static byte[] toByteArray(InputStream in) throws IOException {
241 * Returns the data from a {@link InputStream} factory as a byte array.
247 InputSupplier<? extends InputStream> supplier) throws IOException
    [all...]
  /cts/hostsidetests/appsecurity/test-apps/AppAccessData/src/com/android/cts/appaccessdata/
AccessPrivateDataTest.java 52 FileInputStream inputStream = new FileInputStream(privateFilePath);
53 inputStream.read();
54 inputStream.close();
  /cts/tests/tests/content/src/android/content/res/cts/
RawResourceTest.java 25 import java.io.InputStream;
38 final InputStream is = mResources.openRawResource(R.raw.text);
42 static void verifyTextAsset(final InputStream is) throws IOException {
  /cts/tests/tests/net/src/android/net/cts/
LocalServerSocketTest.java 19 import java.io.InputStream;
45 InputStream serverInStream = serverSocket.getInputStream();
51 InputStream clientInStream = clientSocket.getInputStream();
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jcajce/provider/asymmetric/x509/
PEMUtil.java 4 import java.io.InputStream;
26 InputStream in)
55 InputStream in)
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jce/provider/
PEMUtil.java 4 import java.io.InputStream;
28 InputStream in)
57 InputStream in)
  /external/ganymed-ssh2/examples/
StdoutAndStderr.java 7 import java.io.InputStream;
45 InputStream stdout = new StreamGobbler(sess.getStdout());
46 InputStream stderr = new StreamGobbler(sess.getStderr());
  /external/ganymed-ssh2/src/main/java/ch/ethz/ssh2/channel/
StreamForwarder.java 8 import java.io.InputStream;
24 InputStream is;
31 StreamForwarder(Channel c, StreamForwarder sibling, Socket s, InputStream is, OutputStream os, String mode)
  /external/jmonkeyengine/engine/src/core/com/jme3/util/blockparser/
BlockLanguageParser.java 4 import java.io.InputStream;
40 private void load(InputStream in) throws IOException{
87 public static List<Statement> parse(InputStream in) throws IOException {
  /frameworks/base/core/java/android/content/pm/
LimitedLengthInputStream.java 5 import java.io.InputStream;
9 * A class that limits the amount of data that is read from an InputStream. When
32 public LimitedLengthInputStream(InputStream in, long offset, long length) throws IOException {
  /libcore/luni/src/main/java/java/io/
SequenceInputStream.java 25 * Concatenates two or more existing {@link InputStream}s. Reads are taken from
29 public class SequenceInputStream extends InputStream {
31 * An enumeration which will return types of InputStream.
33 private Enumeration<? extends InputStream> e;
38 private InputStream in;
51 public SequenceInputStream(InputStream s1, InputStream s2) {
55 Vector<InputStream> inVector = new Vector<InputStream>(1);
64 * {@code e.nextElement()} must be of type {@link InputStream}
    [all...]
  /libcore/luni/src/main/java/java/security/cert/
CertificateFactory.java 20 import java.io.InputStream;
193 public final Certificate generateCertificate(InputStream inStream)
211 * {@code InputStream}. The default encoding scheme is applied.
214 * {@code InputStream} with encoded data.
219 public final CertPath generateCertPath(InputStream inStream) throws CertificateException {
229 * {@code inputStream}, assuming the given {@code encoding} from
237 public final CertPath generateCertPath(InputStream inputStream, String encoding)
239 return spiImpl.engineGenerateCertPath(inputStream, encoding);
271 public final Collection<? extends Certificate> generateCertificates(InputStream inStream
    [all...]
  /libcore/luni/src/main/java/org/apache/harmony/xnet/provider/jsse/
OpenSSLBIOInputStream.java 21 import java.io.InputStream;
25 * InputStream. It allows an OpenSSL API to read directly from something more
31 public OpenSSLBIOInputStream(InputStream is) {

Completed in 1102 milliseconds

1 2 3 4 56 7 8 91011>>