OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:InputStream
(Results
651 - 675
of
1058
) sorted by null
<<
21
22
23
24
25
26
27
28
29
30
>>
/external/guava/src/com/google/common/io/
Files.java
29
import java.io.
InputStream
;
193
InputStream
in = new FileInputStream(file);
218
* Copies to a file all bytes from an {@link
InputStream
} supplied by a
225
public static void copy(InputSupplier<? extends
InputStream
> from, File to)
/external/oauth/core/src/main/java/net/oauth/client/
OAuthClient.java
21
import java.io.
InputStream
;
267
InputStream
body = request.getBodyAsStream();
327
InputStream
b = response.getBodyAsStream();
/external/protobuf/java/src/main/java/com/google/protobuf/
DynamicMessage.java
36
import java.io.
InputStream
;
114
public static DynamicMessage parseFrom(Descriptor type,
InputStream
input)
120
public static DynamicMessage parseFrom(Descriptor type,
InputStream
input,
/libcore/luni/src/main/java/java/lang/
ClassLoader.java
38
import java.io.
InputStream
;
169
public static
InputStream
getSystemResourceAsStream(String resName) {
432
public
InputStream
getResourceAsStream(String resName) {
System.java
42
import java.io.
InputStream
;
70
public static final
InputStream
in;
100
public static void setIn(
InputStream
newIn) {
101
setFieldImpl("in", "Ljava/io/
InputStream
;", newIn);
/libcore/luni/src/main/java/java/net/
URLConnection.java
21
import java.io.
InputStream
;
38
*
InputStream
in = new BufferedInputStream(urlConnection.getInputStream());
588
* Returns an {@code
InputStream
} for reading data from the resource pointed by
592
* @return the
InputStream
to read data from.
594
* if no
InputStream
could be created.
596
public
InputStream
getInputStream() throws IOException {
704
public static String guessContentTypeFromStream(
InputStream
is) throws IOException {
[
all
...]
/libcore/luni/src/main/java/org/apache/harmony/security/provider/cert/
X509CertPathImpl.java
26
import java.io.
InputStream
;
142
public static X509CertPathImpl getInstance(
InputStream
in) throws CertificateException {
157
public static X509CertPathImpl getInstance(
InputStream
in, String encoding)
/libcore/luni/src/test/java/dalvik/system/
DexClassLoaderTest.java
24
import java.io.
InputStream
;
91
InputStream
in =
423
InputStream
in = dcl.getResourceAsStream(resourceName);
/libcore/luni/src/test/java/libcore/java/net/
OldURLClassLoaderTest.java
24
import java.io.
InputStream
;
252
InputStream
is = getClass().getResourceAsStream(
294
InputStream
is = res.openStream();
OldJarURLConnectionTest.java
24
import java.io.
InputStream
;
82
InputStream
is = jf.getInputStream(je);
234
InputStream
in = connection.getInputStream();
304
InputStream
is = conn.getInputStream();
/libcore/support/src/test/java/org/apache/harmony/testframework/serialization/
SerializationTest.java
30
import java.io.
InputStream
;
161
public static Serializable getObjectFromStream(
InputStream
is)
430
InputStream
in = SerializationTest.class.getResourceAsStream(path.toString());
/libcore/support/src/test/java/tests/support/
Support_Configuration.java
22
import java.io.
InputStream
;
132
InputStream
in = null;
314
static void load(
InputStream
in, Hashtable<String, String> result) throws IOException {
/packages/apps/Contacts/tests/src/com/android/contacts/tests/streamitems/
StreamItemPopulatorActivity.java
40
import java.io.
InputStream
;
197
InputStream
is = getResources().openRawResource(resourceId);
201
protected byte[] readInputStreamFully(
InputStream
is) {
/packages/apps/Mms/src/com/android/mms/ui/
UriImage.java
42
import java.io.
InputStream
;
145
InputStream
input = null;
239
InputStream
input = null;
/sdk/sdkmanager/libs/sdklib/src/com/android/sdklib/internal/build/
SignedJarBuilder.java
33
import java.io.
InputStream
;
203
* @param input the {@link
InputStream
} for the Jar/Zip to copy.
209
public void writeZip(
InputStream
input, IZipEntryFilter filter)
274
* Adds an entry to the output jar, and write its content from the {@link
InputStream
}
279
private void writeEntry(
InputStream
input, JarEntry entry) throws IOException {
/cts/tests/tests/security/src/android/security/cts/
CertificateTest.java
23
import java.io.
InputStream
;
/dalvik/dexgen/src/com/android/dexgen/dex/file/
DebugInfoDecoder.java
32
import java.io.
InputStream
;
221
private int readStringIndex(
InputStream
bs) throws IOException {
600
* those caused by the
InputStream
602
public static int readSignedLeb128(
InputStream
bs) throws IOException {
634
* those caused by the
InputStream
636
public static int readUnsignedLeb128(
InputStream
bs) throws IOException {
/external/apache-harmony/crypto/src/test/api/java/org/apache/harmony/crypto/tests/javax/crypto/
CipherTest.java
22
import java.io.
InputStream
;
278
InputStream
is = Support_Resources.getResourceStream(resPath);
327
InputStream
is = Support_Resources.getResourceStream(resPath);
353
InputStream
is = Support_Resources.getResourceStream(resPath);
/external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/io/
InputStreamReaderTest.java
24
import java.io.
InputStream
;
93
private
InputStream
fis;
95
private
InputStream
in;
190
* @tests java.io.InputStreamReader#InputStreamReader(java.io.
InputStream
)
204
* @tests java.io.InputStreamReader#InputStreamReader(java.io.
InputStream
,
253
* @tests java.io.InputStreamReader(java.io.
InputStream
,
277
* @tests java.io.InputStreamReader(java.io.
InputStream
,
345
InputStream
in;
/frameworks/base/core/java/android/app/
WallpaperManager.java
47
import java.io.
InputStream
;
284
InputStream
is = context.getResources().openRawResource(
511
* give
InputStream
is copied into persistent storage and will now be
521
public void setStream(
InputStream
data) throws IOException {
541
private void setWallpaper(
InputStream
data, FileOutputStream fos)
553
* {@link #setStream(java.io.
InputStream
)} should check this value
576
* {@link #setStream(java.io.
InputStream
)} should check this value
/frameworks/base/core/java/android/net/http/
RequestQueue.java
38
import java.io.
InputStream
;
293
* @param bodyProvider
InputStream
providing HTTP body, null if none
299
InputStream
bodyProvider, int bodyLength) {
313
* @param bodyProvider
InputStream
providing HTTP body, null if none
319
InputStream
bodyProvider, int bodyLength) {
372
EventHandler eventHandler,
InputStream
bodyProvider,
/frameworks/base/graphics/java/android/graphics/drawable/
Drawable.java
42
import java.io.
InputStream
;
730
* Create a drawable from an
inputstream
732
public static Drawable createFromStream(
InputStream
is, String srcName) {
737
* Create a drawable from an
inputstream
, using the given resources and
741
InputStream
is, String srcName) {
746
* Create a drawable from an
inputstream
, using the given resources and
750
InputStream
is, String srcName, BitmapFactory.Options opts) {
[
all
...]
/frameworks/base/obex/javax/obex/
ServerOperation.java
36
import java.io.
InputStream
;
65
private
InputStream
mInput;
101
public ServerOperation(ServerSession p,
InputStream
in, int request, int maxSize,
623
public
InputStream
openInputStream() throws IOException {
/frameworks/base/tests/CoreTests/android/core/
MiscRegressionTest.java
23
import java.io.
InputStream
;
181
InputStream
is = jarFile.getInputStream(je);
280
InputStream
stream = zip.getInputStream(entry);
320
InputStream
stream = zip.getInputStream(entries.nextElement());
/libcore/luni/src/main/java/org/apache/harmony/security/asn1/
BerInputStream.java
26
import java.io.
InputStream
;
38
private final
InputStream
in;
106
public BerInputStream(
InputStream
in) throws IOException {
115
public BerInputStream(
InputStream
in, int initialSize) throws IOException {
723
* Indicates defined or indefined reading mode for associated
InputStream
.
726
* for a first ASN.1 type from
InputStream
.
Completed in 1039 milliseconds
<<
21
22
23
24
25
26
27
28
29
30
>>