OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:InputStream
(Results
351 - 375
of
2666
) sorted by null
<<
11
12
13
14
15
16
17
18
19
20
>>
/frameworks/opt/vcard/java/com/android/vcard/
VCardParser_V30.java
21
import java.io.
InputStream
;
86
public void parse(
InputStream
is) throws IOException, VCardException {
91
public void parseOne(
InputStream
is) throws IOException, VCardException {
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 {
/libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/lang/
Process2Test.java
21
import java.io.
InputStream
;
45
InputStream
is = process.getErrorStream();
66
InputStream
is = erProcess.getErrorStream();
/libcore/luni/src/main/java/libcore/util/
RecoverySystem.java
23
import java.io.
InputStream
;
39
public static void verify(
InputStream
blockStream,
InputStream
contentStream,
/packages/apps/Bluetooth/src/com/android/bluetooth/mapclient/obex/
FolderListing.java
26
import java.io.
InputStream
;
35
public FolderListing(
InputStream
in) {
41
public void parse(
InputStream
in) {
MessagesListing.java
26
import java.io.
InputStream
;
36
public MessagesListing(
InputStream
in) {
42
public void parse(
InputStream
in) {
/packages/apps/Dialer/java/com/android/incallui/calllocation/impl/
DownloadMapImageTask.java
25
import java.io.
InputStream
;
52
InputStream
content = (
InputStream
) mapUrl.getContent();
/packages/apps/Email/emailcommon/src/com/android/emailcommon/utility/
LoggingInputStream.java
24
import java.io.
InputStream
;
37
public LoggingInputStream(
InputStream
in) {
41
public LoggingInputStream(
InputStream
in, String tag, boolean dumpEmptyLines) {
/packages/apps/UnifiedEmail/src/org/apache/james/mime4j/
SimpleContentHandler.java
27
import java.io.
InputStream
;
56
public abstract void bodyDecoded(BodyDescriptor bd,
InputStream
is) throws IOException;
87
* @see org.apache.james.mime4j.AbstractContentHandler#body(org.apache.james.mime4j.BodyDescriptor, java.io.
InputStream
)
89
public final void body(BodyDescriptor bd,
InputStream
is) throws IOException {
/packages/apps/UnifiedEmail/src/org/apache/james/mime4j/message/
MemoryBinaryBody.java
25
import java.io.
InputStream
;
50
* Use the given
InputStream
to build the TemporyFileBinaryBody
52
* @param is the
InputStream
to use as source
55
public MemoryBinaryBody(
InputStream
is) throws IOException {
82
public
InputStream
getInputStream() throws IOException {
TempFileBinaryBody.java
23
import java.io.
InputStream
;
49
* Use the given
InputStream
to build the TemporyFileBinaryBody
51
* @param is the
InputStream
to use as source
54
public TempFileBinaryBody(
InputStream
is) throws IOException {
81
public
InputStream
getInputStream() throws IOException {
/packages/apps/WallpaperPicker/src/com/android/wallpaperpicker/common/
WallpaperManagerCompatVN.java
8
import java.io.
InputStream
;
18
public void setStream(final
InputStream
data, Rect visibleCropHint, boolean allowBackup,
23
Method setStream = WallpaperManager.class.getMethod("setStream",
InputStream
.class,
/packages/services/BuiltInPrintService/src/com/android/bips/util/
FileUtils.java
23
import java.io.
InputStream
;
44
public static void copy(
InputStream
source, OutputStream target) throws IOException {
45
try (
InputStream
in = source; OutputStream out = target) {
/packages/services/Car/tests/obd2_test/src/com/android/car/obd2/test/
MockObd2UnderlyingTransport.java
23
import java.io.
InputStream
;
27
private class MockInputStream extends
InputStream
{
83
public
InputStream
getInputStream() {
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/binaryxml/
FileStorage.java
30
import java.io.
InputStream
;
59
public
InputStream
getContents() throws CoreException {
60
InputStream
stream = null;
/external/glide/library/src/main/java/com/bumptech/glide/load/data/
HttpUrlFetcher.java
9
import java.io.
InputStream
;
15
* A DataFetcher that retrieves an {@link java.io.
InputStream
} for a Url.
17
public class HttpUrlFetcher implements DataFetcher<
InputStream
> {
25
private
InputStream
stream;
39
public
InputStream
loadData(Priority priority) throws Exception {
43
private
InputStream
loadDataWithRedirects(URL url, int redirects, URL lastUrl) throws IOException {
/external/guava/guava-tests/test/com/google/common/io/
MultiInputStreamTest.java
24
import java.io.
InputStream
;
53
public
InputStream
openStream() throws IOException {
84
InputStream
in = joined.openStream();
99
public
InputStream
openStream() {
117
public
InputStream
openStream() {
/external/protobuf/java/core/src/main/java/com/google/protobuf/
Message.java
37
import java.io.
InputStream
;
279
Builder mergeFrom(
InputStream
input) throws IOException;
282
Builder mergeFrom(
InputStream
input, ExtensionRegistryLite extensionRegistry)
286
boolean mergeDelimitedFrom(
InputStream
input) throws IOException;
289
boolean mergeDelimitedFrom(
InputStream
input, ExtensionRegistryLite extensionRegistry)
/libcore/luni/src/test/java/libcore/java/io/
OldAndroidPushbackInputStreamTest.java
21
import java.io.
InputStream
;
58
public static String read(
InputStream
a) throws IOException {
69
public static String read(
InputStream
a, int x) throws IOException {
78
public static String skipRead(
InputStream
a) throws IOException {
90
public static String markRead(
InputStream
a, int x, int y) throws IOException {
/libcore/luni/src/test/java/libcore/java/util/zip/
DeflaterInputStreamTest.java
22
import java.io.
InputStream
;
37
InputStream
in = new DeflaterInputStream(new ByteArrayInputStream(data));
58
try (
InputStream
in = new InflaterInputStream(new ByteArrayInputStream(bytes))) {
72
InputStream
in = new DeflaterInputStream(new ByteArrayInputStream(data));
95
InputStream
in = new DeflaterInputStream(new ByteArrayInputStream(data));
/libcore/ojluni/src/main/java/sun/misc/
CharacterDecoder.java
30
import java.io.
InputStream
;
133
protected int readFully(
InputStream
in, byte buffer[], int offset, int len)
145
* Decode the text from the
InputStream
and write the decoded
151
public void decodeBuffer(
InputStream
aStream, OutputStream bStream) throws IOException {
199
* Decode the contents of the
inputstream
into a buffer.
201
public byte decodeBuffer(
InputStream
in)[] throws IOException {
216
* Decode the contents of the
inputStream
into a ByteBuffer.
218
public ByteBuffer decodeBufferToByteBuffer(
InputStream
in)
/libcore/support/src/test/java/tests/support/resource/
Support_Resources.java
25
import java.io.
InputStream
;
37
public static
InputStream
getStream(String name) {
40
InputStream
result = Support_Resources.class.getResourceAsStream(path);
112
InputStream
in = Support_Resources.getStream(resourceName);
127
public static void copyLocalFileto(File dest,
InputStream
in) throws IOException {
137
private static int copy(
InputStream
in, OutputStream out) throws IOException {
150
InputStream
in = new URL(url).openStream();
166
public static
InputStream
getResourceStream(String name) {
167
InputStream
is = Support_Resources.class.getResourceAsStream(name);
185
InputStream
xml = Support_Resources.class.getResourceAsStream(path)
[
all
...]
/tools/apksig/src/main/java/com/android/apksig/internal/asn1/ber/
InputStreamBerDataValueReader.java
21
import java.io.
InputStream
;
25
* {@link BerDataValueReader} which reads from an {@link
InputStream
} returning BER-encoded data
29
private final
InputStream
mIn;
31
public InputStreamBerDataValueReader(
InputStream
in) {
88
private static int readTagNumber(
InputStream
in, int firstIdentifierByte)
100
private static int readHighTagNumber(
InputStream
in)
124
private static int readLongFormLength(
InputStream
in, int firstLengthByte)
147
private static void skipDefiniteLengthContents(
InputStream
in, int len)
162
private static int skipIndefiniteLengthContents(
InputStream
in)
190
private static class RecordingInputStream extends
InputStream
{
[
all
...]
/external/apache-harmony/support/src/test/java/tests/support/resource/
Support_Resources.java
24
import java.io.
InputStream
;
37
public static
InputStream
getStream(String name) {
91
InputStream
in = Support_Resources.getStream(src);
104
public static void copyLocalFileTo(File dest,
InputStream
in) throws IOException {
120
InputStream
in = new URL(url).openStream();
136
public static
InputStream
getResourceStream(String name) {
137
InputStream
is = ClassLoader.getSystemClassLoader().getResourceAsStream(name);
/external/archive-patcher/applier/src/main/java/com/google/archivepatcher/applier/bsdiff/
BsPatch.java
22
import java.io.
InputStream
;
69
RandomAccessFile oldData, OutputStream newData,
InputStream
patchData)
86
final
InputStream
patchData)
198
final
InputStream
patchData,
227
static final long readBsdiffLong(
InputStream
in) throws PatchFormatException, IOException {
257
final
InputStream
in, final byte[] destination, final int startAt, final int numBytes)
270
* Use an intermediate buffer to pipe bytes from an
InputStream
directly to an OutputStream. The
280
final
InputStream
in, final OutputStream out, final byte[] buffer, int copyLength)
Completed in 1768 milliseconds
<<
11
12
13
14
15
16
17
18
19
20
>>