OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:InputStream
(Results
51 - 75
of
1058
) sorted by null
1
2
3
4
5
6
7
8
9
10
11
>>
/external/apache-harmony/security/src/test/support/common/java/org/apache/harmony/security/tests/support/cert/
MyCertificateFactorySpi.java
25
import java.io.
InputStream
;
65
public Certificate engineGenerateCertificate(
InputStream
inStream)
68
throw new CertificateException("Incorrect
inputstream
");
73
public Collection engineGenerateCertificates(
InputStream
inStream)
76
throw new CertificateException("Incorrect
inputstream
");
81
public CRL engineGenerateCRL(
InputStream
inStream) throws CRLException {
83
throw new CRLException("Incorrect
inputstream
");
88
public Collection engineGenerateCRLs(
InputStream
inStream)
91
throw new CRLException("Incorrect
inputstream
");
96
public CertPath engineGenerateCertPath(
InputStream
inStream
[
all
...]
/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/apache-http/src/org/apache/http/conn/
BasicManagedEntity.java
34
import java.io.
InputStream
;
98
public
InputStream
getContent() throws IOException {
154
public boolean eofDetected(
InputStream
wrapped)
172
public boolean streamClosed(
InputStream
wrapped)
190
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
}.
51
private final
InputStream
content;
55
public InputStreamEntity(final
InputStream
instream, long length) {
72
public
InputStream
getContent() throws IOException {
80
InputStream
instream = this.content;
FileEntity.java
37
import java.io.
InputStream
;
70
public
InputStream
getContent() throws IOException {
78
InputStream
instream = new FileInputStream(this.file);
ByteArrayEntity.java
36
import java.io.
InputStream
;
68
public
InputStream
getContent() {
EntityTemplate.java
35
import java.io.
InputStream
;
64
public
InputStream
getContent() {
/external/guava/src/com/google/common/io/
MultiInputStream.java
19
import java.io.
InputStream
;
24
* An {@link
InputStream
} that concatenates multiple substreams. At most
30
final class MultiInputStream extends
InputStream
{
32
private Iterator<? extends InputSupplier<? extends
InputStream
>> it;
33
private
InputStream
in;
41
Iterator<? extends InputSupplier<? extends
InputStream
>> it)
ByteStreams.java
29
import java.io.
InputStream
;
110
public static long copy(InputSupplier<? extends
InputStream
> from,
113
InputStream
in = from.getInput();
138
public static long copy(InputSupplier<? extends
InputStream
> from,
141
InputStream
in = from.getInput();
160
public static long copy(
InputStream
from, OutputStream to)
206
public static byte[] toByteArray(
InputStream
in) throws IOException {
213
* Returns the data from a {@link
InputStream
} factory as a byte array.
219
InputSupplier<? extends
InputStream
> supplier) throws IOException {
221
InputStream
in = supplier.getInput()
[
all
...]
FileBackedOutputStream.java
27
import java.io.
InputStream
;
43
private final InputSupplier<
InputStream
> supplier;
94
supplier = new InputSupplier<
InputStream
>() {
95
public
InputStream
getInput() throws IOException {
108
supplier = new InputSupplier<
InputStream
>() {
109
public
InputStream
getInput() throws IOException {
120
public InputSupplier<
InputStream
> getSupplier() {
124
private synchronized
InputStream
openStream() throws IOException {
/external/protobuf/java/src/main/java/com/google/protobuf/
MessageLite.java
37
import java.io.
InputStream
;
123
* that size on the receiving end (e.g. by wrapping the
InputStream
in one
133
* data yourself. Use {@link Builder#mergeDelimitedFrom(
InputStream
)} (or
134
* the static method {@code YourMessageType.parseDelimitedFrom(
InputStream
)})
299
* and {@link #mergeDelimitedFrom(
InputStream
)} to read it.
303
Builder mergeFrom(
InputStream
input) throws IOException;
310
Builder mergeFrom(
InputStream
input,
315
* Like {@link #mergeFrom(
InputStream
)}, but does not read until EOF.
325
boolean mergeDelimitedFrom(
InputStream
input)
329
* Like {@link #mergeDelimitedFrom(
InputStream
)} but supporting extensions
[
all
...]
/frameworks/base/core/java/android/webkit/
WebResourceResponse.java
21
import java.io.
InputStream
;
50
private
InputStream
mInputStream;
56
* @param data An
InputStream
for reading custom data. The implementation
57
* must implement {@link
InputStream
#read(byte[])}.
60
InputStream
data) {
99
* @param data An
InputStream
for reading custom data. The implementation
100
* must implement {@link
InputStream
#read(byte[])}.
102
public void setData(
InputStream
data) {
109
public
InputStream
getData() {
/packages/apps/Email/emailcommon/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 null
[
all
...]
/cts/tools/signature-tools/src/signature/io/html/
TemplateStore.java
19
import java.io.
InputStream
;
32
InputStream
modelStream = TemplateStore.class.getClassLoader()
38
InputStream
stream = TemplateStore.class.getClassLoader()
/libcore/luni/src/main/java/java/io/
FilterInputStream.java
21
* Wraps an existing {@link
InputStream
} and performs some transformation on
30
public class FilterInputStream extends
InputStream
{
35
protected volatile
InputStream
in;
47
protected FilterInputStream(
InputStream
in) {
/packages/apps/Email/emailcommon/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) {
/sdk/sdkmanager/libs/sdklib/src/com/android/sdklib/internal/repository/
SdkAddonSource.java
24
import java.io.
InputStream
;
83
protected
InputStream
getXsdStream(int version) {
96
protected Document findAlternateToolsXml(@Nullable
InputStream
xml) {
/cts/tools/dex-tools/test/dex/reader/util/
JavaSource.java
20
import java.io.
InputStream
;
53
public
InputStream
openInputStream() {
MemoryByteCode.java
20
import java.io.
InputStream
;
53
public
InputStream
openInputStream() {
/external/apache-harmony/logging/src/test/java/org/apache/harmony/logging/tests/java/util/logging/util/
EnvironmentHelper.java
22
import java.io.
InputStream
;
36
public static
InputStream
PropertiesToInputStream(Properties p) {
/external/apache-harmony/support/src/test/java/tests/support/
Support_HttpSocket.java
21
import java.io.
InputStream
;
38
public
InputStream
getInputStream() throws IOException {
/external/apache-http/src/org/apache/http/impl/io/
IdentityInputStream.java
35
import java.io.
InputStream
;
48
public class IdentityInputStream extends
InputStream
{
/external/bouncycastle/src/main/java/org/bouncycastle/asn1/
BEROctetStringParser.java
4
import java.io.
InputStream
;
19
public
InputStream
getOctetStream()
/external/javassist/src/main/javassist/
ClassClassPath.java
18
import java.io.
InputStream
;
72
public
InputStream
openClassfile(String classname) {
/external/jdiff/src/jdiff/
StreamReader.java
14
InputStream
is_;
16
/** Constructor which takes an
InputStream
. */
17
StreamReader(
InputStream
is) {
Completed in 1425 milliseconds
1
2
3
4
5
6
7
8
9
10
11
>>