OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:InputStream
(Results
1 - 25
of
3051
) sorted by null
1
2
3
4
5
6
7
8
9
10
11
>>
/external/lzma/Java/Tukaani/src/org/tukaani/xz/
FilterDecoder.java
12
import java.io.
InputStream
;
16
InputStream
getInputStream(
InputStream
in);
/packages/apps/UnifiedEmail/src/org/apache/commons/io/input/
DemuxInputStream.java
20
import java.io.
InputStream
;
30
extends
InputStream
32
private InheritableThreadLocal<
InputStream
> m_streams = new InheritableThreadLocal<
InputStream
>();
38
* @return the
InputStream
that was previously active
40
public
InputStream
bindStream(
InputStream
input )
42
InputStream
oldValue = getStream();
56
InputStream
input = getStream();
73
InputStream
input = getStream()
[
all
...]
ClosedInputStream.java
19
import java.io.
InputStream
;
32
public class ClosedInputStream extends
InputStream
{
CloseShieldInputStream.java
19
import java.io.
InputStream
;
39
public CloseShieldInputStream(
InputStream
in) {
/external/bouncycastle/bcpkix/src/main/java/org/bouncycastle/operator/
InputDecryptor.java
3
import java.io.
InputStream
;
9
* an
InputStream
that will decrypt a stream of encrypted data.
25
* @param encIn
InputStream
containing encrypted input.
26
* @return an decrypting
InputStream
28
InputStream
getInputStream(
InputStream
encIn);
/external/bouncycastle/bcpkix/src/main/java/org/bouncycastle/cms/
CMSReadable.java
4
import java.io.
InputStream
;
8
public
InputStream
getInputStream()
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/
ASN1OctetStringParser.java
3
import java.io.
InputStream
;
12
* Return the content of the OCTET STRING as an
InputStream
.
14
* @return an
InputStream
representing the OCTET STRING's content.
16
public
InputStream
getOctetStream();
LimitedInputStream.java
3
import java.io.
InputStream
;
6
extends
InputStream
8
protected final
InputStream
_in;
12
InputStream
in,
/external/libphonenumber/libphonenumber/src/com/google/i18n/phonenumbers/
MetadataLoader.java
19
import java.io.
InputStream
;
38
public
InputStream
loadMetadata(String metadataFileName);
/external/apache-http/src/org/apache/http/conn/
EofSensorWatcher.java
33
import java.io.
InputStream
;
69
boolean eofDetected(
InputStream
wrapped)
89
boolean streamClosed(
InputStream
wrapped)
112
boolean streamAbort(
InputStream
wrapped)
/external/glide/library/src/main/java/com/bumptech/glide/load/model/
ImageVideoWrapper.java
5
import java.io.
InputStream
;
8
* A simple wrapper that wraps an {@link java.io.
InputStream
} and/or an {@link android.os.ParcelFileDescriptor}.
11
private final
InputStream
streamData;
14
public ImageVideoWrapper(
InputStream
streamData, ParcelFileDescriptor fileDescriptor) {
19
public
InputStream
getStream() {
/packages/inputmethods/LatinIME/java-overridable/src/com/android/inputmethod/latin/utils/
FileTransforms.java
20
import java.io.
InputStream
;
30
public static
InputStream
getDecryptedStream(
InputStream
in) {
35
public static
InputStream
getUncompressedStream(
InputStream
in) throws IOException {
/external/apache-harmony/support/src/test/java/tests/support/
Support_Socket.java
21
import java.io.
InputStream
;
29
public
InputStream
getInputStream() throws IOException;
/external/apache-http/android/src/com/android/internal/http/multipart/
PartSource.java
34
import java.io.
InputStream
;
62
* Gets a new
InputStream
for reading this source. This method can be
66
* @return a new
InputStream
68
* @throws IOException if an error occurs when creating the
InputStream
70
InputStream
createInputStream() throws IOException;
/external/archive-patcher/shared/src/main/java/com/google/archivepatcher/shared/
Compressor.java
18
import java.io.
InputStream
;
33
public void compress(
InputStream
uncompressedIn, OutputStream compressedOut) throws IOException;
MultiViewInputStreamFactory.java
18
import java.io.
InputStream
;
22
* {@link
InputStream
} class.
23
* @param <T> the type of {@link
InputStream
} that is produced
25
public interface MultiViewInputStreamFactory<T extends
InputStream
> {
27
* Create and return a new {@link
InputStream
}. The returned stream is guaranteed to independently
Uncompressor.java
18
import java.io.
InputStream
;
35
public void uncompress(
InputStream
compressedIn, OutputStream uncompressedOut) throws IOException;
/external/glide/library/src/main/java/com/bumptech/glide/load/model/stream/
StreamModelLoader.java
5
import java.io.
InputStream
;
8
* A base class for {@link ModelLoader}s that translate models into {@link
InputStream
}s.
10
* @param <T> The type of the model that will be translated into an {@link
InputStream
}.
12
public interface StreamModelLoader<T> extends ModelLoader<T,
InputStream
> {
/external/glide/testutil/src/main/java/com/bumptech/glide/testutil/
TestResourceUtil.java
3
import java.io.
InputStream
;
14
* Returns an
InputStream
for the given test class and sub-path.
20
public static
InputStream
openResource(Class testClass, String subPath) {
/external/jarjar/src/main/com/tonicsystems/jarjar/util/
ClassPathEntry.java
19
import java.io.
InputStream
;
25
InputStream
openStream() throws IOException;
/external/javassist/src/main/javassist/
ClassPath.java
18
import java.io.
InputStream
;
50
InputStream
openClassfile(String classname) throws NotFoundException;
/external/tagsoup/src/org/ccil/cowan/tagsoup/
AutoDetector.java
19
import java.io.
InputStream
;
22
Classes which accept an
InputStream
and provide a Reader which figures
23
out the encoding of the
InputStream
and reads characters from it should
25
@see java.io.
InputStream
32
Given an
InputStream
, return a suitable Reader that understands
33
the presumed character encoding of that
InputStream
.
34
If bytes are consumed from the
InputStream
in the process, they
35
<i>must</i> be pushed back onto the
InputStream
so that they can be
37
@param i The
InputStream
38
@return A Reader that reads from the
InputStream
[
all
...]
/external/testng/src/main/java/org/testng/xml/
IFileParser.java
5
import java.io.
InputStream
;
9
T parse(String filePath,
InputStream
is, boolean loadClasses) throws TestNGException;
/packages/apps/UnifiedEmail/src/org/apache/james/mime4j/message/
BinaryBody.java
23
import java.io.
InputStream
;
35
* Gets a <code>
InputStream
</code> which reads the bytes of the
41
InputStream
getInputStream() throws IOException;
/tools/tradefederation/core/src/com/android/tradefed/config/
IConfigurationServer.java
19
import java.io.
InputStream
;
35
* @return an {@link
InputStream
} is the config file content.
38
public
InputStream
getConfig(String name) throws ConfigurationException;
Completed in 630 milliseconds
1
2
3
4
5
6
7
8
9
10
11
>>