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

1 2 3 4 5 6 7 8 91011>>

  /external/ganymed-ssh2/src/main/java/ch/ethz/ssh2/
StreamGobbler.java 8 import java.io.InputStream;
11 * A <code>StreamGobbler</code> is an InputStream that uses an internal worker
12 * thread to constantly consume input from another InputStream. It uses a buffer
23 * their STDOUT and STDERR InputStream implementations, however, please be aware
38 public class StreamGobbler extends InputStream
109 private InputStream is;
121 public StreamGobbler(InputStream is)
  /external/robolectric/src/test/java/com/xtremelabs/robolectric/shadows/
BitmapFactoryTest.java 13 import java.io.InputStream;
49 InputStream inputStream = Robolectric.application.getContentResolver().openInputStream(Uri.parse("content:/path"));
50 Bitmap bitmap = BitmapFactory.decodeStream(inputStream);
121 InputStream inputStream = Robolectric.application.getContentResolver().openInputStream(Uri.parse("content:/path"));
122 Bitmap bitmap = BitmapFactory.decodeStream(inputStream);
  /libcore/luni/src/main/java/javax/crypto/
CipherInputStream.java 22 import java.io.InputStream;
27 * This class wraps an {@code InputStream} and a cipher so that {@code read()}
28 * methods return data that are read from the underlying {@code InputStream} and
49 * InputStream} and a cipher.
60 public CipherInputStream(InputStream is, Cipher c) {
67 * InputStream} without a cipher.
74 protected CipherInputStream(InputStream is) {
  /libcore/luni/src/test/java/tests/api/javax/xml/parsers/
SAXParserTest.java 23 import java.io.InputStream;
133 private InputStream getResource(String name) {
209 // InputStream is = new FileInputStream(list_wf[i]);
226 // InputStream is = new FileInputStream(list_wf[i]);
434 InputStream in = null;
484 InputStream in = null;
496 * @test javax.xml.parsers.SAXParser#parse(java.io.InputStream,
507 InputStream is = new FileInputStream(list_wf[i]);
515 InputStream is = new FileInputStream(list_nwf[i]);
525 parser.parse((InputStream) null, dh)
    [all...]
  /libcore/luni/src/test/java/tests/security/cert/
CertificateFactory3Test.java 32 import java.io.InputStream;
83 * Test for <code>generateCertificate(InputStream inStream)</code> method
99 * Test for <code>generateCertificates(InputStream inStream)</code> method
144 * <code>generateCertPath(InputStream inStream, String encoding)</code>
152 InputStream fis = Support_Resources
164 * Test for <code>generateCertPath(InputStream inStream)</code> method
180 InputStream fis = Support_Resources
  /packages/apps/Gallery2/tests/src/com/android/gallery3d/exif/
ExifOutputStreamTest.java 27 import java.io.InputStream;
53 InputStream imageInputStream = null;
54 InputStream exifInputStream = null;
58 InputStream dangerInputStream = null;
106 dangerInputStream = (InputStream) new FileInputStream(mTmpFile);
114 dangerInputStream = (InputStream) new FileInputStream(mTmpFile);
137 InputStream imageInputStream = null;
  /external/protobuf/java/src/main/java/com/google/protobuf/
AbstractMessageLite.java 34 import java.io.InputStream;
200 public BuilderType mergeFrom(final InputStream input) throws IOException {
208 final InputStream input,
218 * An InputStream implementations which reads from some other InputStream
226 LimitedInputStream(InputStream in, int limit) {
273 final InputStream input,
281 final InputStream limitedInput = new LimitedInputStream(input, size);
286 public boolean mergeDelimitedFrom(final InputStream input)
  /frameworks/base/docs/html/sdk/api_diff/9/changes/
java.sql.ResultSet.html 171 <A NAME="java.sql.ResultSet.updateAsciiStream_added(int, java.io.InputStream)"></A>
172 <nobr><code>void</code>&nbsp;<A HREF="../../../../reference/java/sql/ResultSet.html#updateAsciiStream(int, java.io.InputStream)" target="_top"><code>updateAsciiStream</code></A>(<code>int,</nobr> InputStream<nobr><nobr></code>)</nobr>
178 <A NAME="java.sql.ResultSet.updateAsciiStream_added(int, java.io.InputStream, long)"></A>
179 <nobr><code>void</code>&nbsp;<A HREF="../../../../reference/java/sql/ResultSet.html#updateAsciiStream(int, java.io.InputStream, long)" target="_top"><code>updateAsciiStream</code></A>(<code>int,</nobr> InputStream<nobr>,</nobr> long<nobr><nobr></code>)</nobr>
185 <A NAME="java.sql.ResultSet.updateAsciiStream_added(java.lang.String, java.io.InputStream)"></A>
186 <nobr><code>void</code>&nbsp;<A HREF="../../../../reference/java/sql/ResultSet.html#updateAsciiStream(java.lang.String, java.io.InputStream)" target="_top"><code>updateAsciiStream</code></A>(<code>String,</nobr> InputStream<nobr><nobr></code>)</nobr>
192 <A NAME="java.sql.ResultSet.updateAsciiStream_added(java.lang.String, java.io.InputStream, long)"></A
    [all...]
  /libcore/luni/src/main/java/java/util/zip/
InflaterInputStream.java 23 import java.io.InputStream;
69 * InputStream} from which the compressed data is to be read from. Default
74 * the {@code InputStream} to read data from.
76 public InflaterInputStream(InputStream is) {
85 * the {@code InputStream} to read data from.
89 public InflaterInputStream(InputStream is, Inflater inflater) {
98 * the {@code InputStream} to read data from.
104 public InflaterInputStream(InputStream is, Inflater inflater, int bufferSize) {
223 * {@link InputStream#available()}, and violates the <a
  /packages/apps/Email/src/org/apache/commons/io/input/
SwappedDataInputStream.java 22 import java.io.InputStream;
43 * @param input InputStream to read from
45 public SwappedDataInputStream( InputStream input )
87 * Delegates to {@link EndianUtils#readSwappedDouble(InputStream)}.
99 * Delegates to {@link EndianUtils#readSwappedFloat(InputStream)}.
153 * Delegates to {@link EndianUtils#readSwappedInteger(InputStream)}.
178 * Delegates to {@link EndianUtils#readSwappedLong(InputStream)}.
190 * Delegates to {@link EndianUtils#readSwappedShort(InputStream)}.
214 * Delegates to {@link EndianUtils#readSwappedUnsignedShort(InputStream)}.
  /cts/tools/tradefed-host/src/com/android/cts/tradefed/testtype/
ITestPlan.java 23 import java.io.InputStream;
35 * @param xmlStream the {@link InputStream} that contains the test plan xml.
37 public void parse(InputStream xmlStream) throws ParseException;
  /external/apache-harmony/security/src/test/support/common/java/org/apache/harmony/security/tests/support/
CertificateStub.java 25 import java.io.InputStream;
52 * @see java.security.Certificate#decode(java.io.InputStream)
54 public void decode(InputStream stream) throws KeyException,
  /external/ganymed-ssh2/src/main/java/ch/ethz/ssh2/transport/
ClientServerHello.java 8 import java.io.InputStream;
26 public static int readLineRN(InputStream is, byte[] buffer) throws IOException
59 public ClientServerHello(String identification, InputStream bi, OutputStream bo) throws IOException
  /external/guava/guava/src/com/google/common/io/
CountingInputStream.java 23 import java.io.InputStream;
26 * An {@link InputStream} that counts the number of bytes read.
42 public CountingInputStream(InputStream in) {
LimitInputStream.java 24 import java.io.InputStream;
27 * An InputStream that limits the number of bytes which can be read.
44 public LimitInputStream(InputStream in, long limit) {
  /external/libphonenumber/java/src/com/android/i18n/phonenumbers/
MetadataManager.java 23 import java.io.InputStream;
57 private static void close(InputStream in) {
68 InputStream source = PhoneNumberMatcher.class.getResourceAsStream(
  /external/okhttp/src/main/java/com/squareup/okhttp/internal/
Util.java 23 import java.io.InputStream;
170 * Implements InputStream.read(int) in terms of InputStream.read(byte[], int, int).
171 * InputStream assumes that you implement InputStream.read(int) and provides default
174 public static int readSingleByte(InputStream in) throws IOException {
194 public static void readFully(InputStream in, byte[] dst) throws IOException {
204 public static void readFully(InputStream in, byte[] dst, int offset, int byteCount)
241 public static void skipAll(InputStream in) throws IOException {
258 public static long skipByReading(InputStream in, long byteCount) throws IOException
    [all...]
  /external/okhttp/src/main/java/com/squareup/okhttp/internal/http/
Transport.java 20 import java.io.InputStream;
59 InputStream getTransferStream(CacheRequest cacheRequest) throws IOException;
63 InputStream responseBodyIn);
  /external/okhttp/src/test/java/com/squareup/okhttp/internal/
StrictLineReaderTest.java 21 import java.io.InputStream;
31 InputStream refStream = createTestInputStream();
57 private InputStream createTestInputStream() {
  /frameworks/base/core/java/android/webkit/
ViewStateSerializer.java 24 import java.io.InputStream;
51 static DrawData deserializeViewState(InputStream stream)
85 InputStream stream, byte[] storage);
  /frameworks/base/core/tests/coretests/src/android/content/
AssetTest.java 24 import java.io.InputStream;
35 public static void verifyTextAsset(InputStream is) throws IOException {
64 InputStream is = mAssets.open("text.txt");
  /frameworks/base/services/java/com/android/server/
RandomBlock.java 26 import java.io.InputStream;
43 InputStream stream = null;
52 private static RandomBlock fromStream(InputStream in) throws IOException {
  /frameworks/opt/vcard/java/com/android/vcard/
VCardParser_V40.java 21 import java.io.InputStream;
74 public void parse(InputStream is) throws IOException, VCardException {
79 public void parseOne(InputStream is) throws IOException, VCardException {
  /frameworks/opt/vcard/tests/src/com/android/vcard/tests/testutils/
PropertyNodesVerifier.java 25 import java.io.InputStream;
56 public void verify(InputStream is, int vcardType) throws IOException, VCardException {
61 public void verify(InputStream is, int vcardType, final VCardParser parser)
  /libcore/benchmarks/src/benchmarks/
BufferedZipFileBenchmark.java 24 import java.io.InputStream;
58 InputStream in = zipFile.getInputStream(entry);
71 InputStream in = new BufferedInputStream(zipFile.getInputStream(entry));

Completed in 1236 milliseconds

1 2 3 4 5 6 7 8 91011>>