OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:InputStream
(Results
126 - 150
of
3051
) sorted by null
1
2
3
4
5
6
7
8
9
10
11
>>
/frameworks/layoutlib/bridge/src/com/android/layoutlib/bridge/bars/
IconLoader.java
22
import java.io.
InputStream
;
44
public
InputStream
getIcon() {
47
InputStream
stream = getIcon(resourceDir);
75
private
InputStream
getIcon(String resourceDir) {
77
InputStream
stream = getIcon(resourceDir, mDesiredDensity);
101
private
InputStream
getIcon(String resourceDir, Density density) {
113
InputStream
stream = getClass().getResourceAsStream(mCurrentPath.toString());
/libcore/support/src/test/java/org/apache/harmony/security/tests/support/cert/
MyCertificateFactorySpi.java
26
import java.io.
InputStream
;
66
public Certificate engineGenerateCertificate(
InputStream
inStream)
69
throw new CertificateException("Incorrect
inputstream
");
75
public Collection engineGenerateCertificates(
InputStream
inStream)
78
throw new CertificateException("Incorrect
inputstream
");
83
public CRL engineGenerateCRL(
InputStream
inStream) throws CRLException {
85
throw new CRLException("Incorrect
inputstream
");
91
public Collection engineGenerateCRLs(
InputStream
inStream)
94
throw new CRLException("Incorrect
inputstream
");
99
public CertPath engineGenerateCertPath(
InputStream
inStream
[
all
...]
/external/conscrypt/common/src/main/java/org/conscrypt/
OpenSSLX509CertificateFactory.java
20
import java.io.
InputStream
;
71
T generateItem(
InputStream
inStream) throws ParsingException {
125
Collection<? extends T> generateItems(
InputStream
inStream)
210
protected abstract T fromX509PemInputStream(
InputStream
pbis) throws ParsingException;
212
protected abstract T fromX509DerInputStream(
InputStream
pbis) throws ParsingException;
214
protected abstract List<? extends T> fromPkcs7PemInputStream(
InputStream
is)
217
protected abstract List<? extends T> fromPkcs7DerInputStream(
InputStream
is)
224
public OpenSSLX509Certificate fromX509PemInputStream(
InputStream
is)
230
public OpenSSLX509Certificate fromX509DerInputStream(
InputStream
is)
237
fromPkcs7PemInputStream(
InputStream
is) throws ParsingException
[
all
...]
/external/apache-http/src/org/apache/http/conn/
BasicManagedEntity.java
34
import java.io.
InputStream
;
103
public
InputStream
getContent() throws IOException {
159
public boolean eofDetected(
InputStream
wrapped)
177
public boolean streamClosed(
InputStream
wrapped)
195
public boolean streamAbort(
InputStream
wrapped)
/external/apache-http/src/org/apache/http/entity/
InputStreamEntity.java
35
import java.io.
InputStream
;
39
* A streamed entity obtaining content from an {@link
InputStream
InputStream
}.
56
private final
InputStream
content;
60
public InputStreamEntity(final
InputStream
instream, long length) {
77
public
InputStream
getContent() throws IOException {
85
InputStream
instream = this.content;
FileEntity.java
37
import java.io.
InputStream
;
75
public
InputStream
getContent() throws IOException {
83
InputStream
instream = new FileInputStream(this.file);
/external/glide/library/src/main/java/com/bumptech/glide/load/model/stream/
HttpUrlGlideUrlLoader.java
13
import java.io.
InputStream
;
17
* (http/https URLS) into {@link java.io.
InputStream
} data.
19
public class HttpUrlGlideUrlLoader implements ModelLoader<GlideUrl,
InputStream
> {
26
public static class Factory implements ModelLoaderFactory<GlideUrl,
InputStream
> {
30
public ModelLoader<GlideUrl,
InputStream
> build(Context context, GenericLoaderFactory factories) {
49
public DataFetcher<
InputStream
> getResourceFetcher(GlideUrl model, int width, int height) {
/external/protobuf/java/core/src/main/java/com/google/protobuf/
MessageLite.java
37
import java.io.
InputStream
;
115
* that size on the receiving end (e.g. by wrapping the
InputStream
in one
125
* data yourself. Use {@link Builder#mergeDelimitedFrom(
InputStream
)} (or
126
* the static method {@code YourMessageType.parseDelimitedFrom(
InputStream
)})
280
* and {@link #mergeDelimitedFrom(
InputStream
)} to read it.
286
Builder mergeFrom(
InputStream
input) throws IOException;
295
Builder mergeFrom(
InputStream
input,
321
* Like {@link #mergeFrom(
InputStream
)}, but does not read until EOF.
331
boolean mergeDelimitedFrom(
InputStream
input)
335
* Like {@link #mergeDelimitedFrom(
InputStream
)} but supporting extensions
[
all
...]
/packages/apps/UnifiedEmail/src/org/apache/james/mime4j/
CloseShieldInputStream.java
22
import java.io.
InputStream
;
26
*
InputStream
that shields its underlying input stream from
32
public class CloseShieldInputStream extends
InputStream
{
35
* Underlying
InputStream
37
private
InputStream
is;
39
public CloseShieldInputStream(
InputStream
is) {
43
public
InputStream
getUnderlyingStream() {
48
* @see java.io.
InputStream
#read()
56
* @see java.io.
InputStream
#available()
65
* Set the underlying
InputStream
to nul
[
all
...]
/packages/inputmethods/LatinIME/tools/dicttool/src/com/android/inputmethod/latin/dicttool/
Compress.java
20
import java.io.
InputStream
;
34
public static
InputStream
getUncompressedStream(final
InputStream
in) throws IOException {
58
final
InputStream
input = getFileInputStreamOrStdIn(inFilename);
87
final
InputStream
uncompressedInput = getUncompressedStream(
/cts/tests/tests/security/src/android/security/cts/
DecodeTest.java
24
import java.io.
InputStream
;
37
InputStream
exploitImage = mContext.getResources().openRawResource(R.raw.bug_34778578);
50
InputStream
exploitImage = mContext.getResources().openRawResource(R.raw.bug_67381469);
/external/bouncycastle/bcpkix/src/main/java/org/bouncycastle/cms/
RecipientOperator.java
3
import java.io.
InputStream
;
27
public
InputStream
getInputStream(
InputStream
dataIn)
/external/glide/library/src/main/java/com/bumptech/glide/load/model/
ImageVideoWrapperEncoder.java
7
import java.io.
InputStream
;
12
* writing data from the wrapper's {@link java.io.
InputStream
} and falling back to the wrapper's
13
* {@link android.os.ParcelFileDescriptor} if the {@link java.io.
InputStream
} isn't available.
16
private final Encoder<
InputStream
> streamEncoder;
20
public ImageVideoWrapperEncoder(Encoder<
InputStream
> streamEncoder,
StreamEncoder.java
9
import java.io.
InputStream
;
13
* An {@link com.bumptech.glide.load.Encoder} that can write an {@link java.io.
InputStream
} to disk.
15
public class StreamEncoder implements Encoder<
InputStream
> {
19
public boolean encode(
InputStream
data, OutputStream os) {
/external/glide/library/src/main/java/com/bumptech/glide/load/resource/gifbitmap/
GifBitmapWrapperStreamResourceDecoder.java
8
import java.io.
InputStream
;
12
* {@link com.bumptech.glide.load.resource.gifbitmap.GifBitmapWrapper} from {@link java.io.
InputStream
} data.
14
public class GifBitmapWrapperStreamResourceDecoder implements ResourceDecoder<
InputStream
, GifBitmapWrapper> {
23
public Resource<GifBitmapWrapper> decode(
InputStream
source, int width, int height) throws IOException {
/external/jacoco/org.jacoco.report/src/org/jacoco/report/
InputStreamSourceFileLocator.java
15
import java.io.
InputStream
;
21
* based on {@link
InputStream
}s. It handles the encoding and tab width.
47
final
InputStream
in;
78
protected abstract
InputStream
getSourceStream(String path)
/external/javaparser/javaparser-symbol-solver-testing/src/test/test_sourcecode/javaparser_new_src/javaparser-generated-sources/com/github/javaparser/
StreamProvider.java
20
import java.io.
InputStream
;
35
public StreamProvider(
InputStream
stream) throws IOException {
39
public StreamProvider(
InputStream
stream, String charsetName) throws IOException {
/external/lzma/Java/Tukaani/src/org/tukaani/xz/
DeltaOptions.java
12
import java.io.
InputStream
;
86
public
InputStream
getInputStream(
InputStream
in) {
/external/robolectric-shadows/resources/src/main/java/org/robolectric/res/
ResourceTable.java
3
import java.io.
InputStream
;
20
InputStream
getRawValue(ResName resName, ResTable_config config);
22
InputStream
getRawValue(int resId, ResTable_config config);
/frameworks/base/obex/javax/obex/
ObexPacket.java
21
import java.io.
InputStream
;
34
* Create a complete OBEX packet by reading data from an
InputStream
.
39
public static ObexPacket read(
InputStream
is) throws IOException {
51
public static ObexPacket read(int headerId,
InputStream
is) throws IOException {
/frameworks/base/services/core/java/com/android/server/net/watchlist/
DigestUtils.java
22
import java.io.
InputStream
;
37
try (
InputStream
stream = new FileInputStream(apkFile)) {
43
public static byte[] getSha256Hash(
InputStream
stream)
/frameworks/layoutlib/bridge/src/android/content/res/
AssetManager_Delegate.java
24
import java.io.
InputStream
;
36
public static
InputStream
open(AssetManager mgr, String fileName) throws IOException {
41
public static
InputStream
open(AssetManager mgr, String fileName, int accessMode)
/libcore/ojluni/src/main/java/java/io/
FilterInputStream.java
35
* <code>
InputStream
</code> with versions that
46
class FilterInputStream extends
InputStream
{
50
protected volatile
InputStream
in;
61
protected FilterInputStream(
InputStream
in) {
239
* @see java.io.
InputStream
#mark(int)
240
* @see java.io.
InputStream
#reset()
/packages/apps/UnifiedEmail/src/org/apache/commons/io/input/
TeeInputStream.java
20
import java.io.
InputStream
;
24
*
InputStream
proxy that transparently writes a copy of all bytes read
52
* Creates a TeeInputStream that proxies the given {@link
InputStream
}
59
public TeeInputStream(
InputStream
input, OutputStream branch) {
64
* Creates a TeeInputStream that proxies the given {@link
InputStream
}
75
InputStream
input, OutputStream branch, boolean closeBranch) {
/test/suite_harness/common/util/src/com/android/compatibility/common/util/
FileUtil.java
24
import java.io.
InputStream
;
57
public static void writeToFile(
InputStream
input, File destFile) throws IOException {
58
InputStream
origStream = null;
Completed in 1623 milliseconds
1
2
3
4
5
6
7
8
9
10
11
>>