HomeSort by relevance Sort by last modified time
    Searched refs:InputStream (Results 226 - 250 of 1058) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/apache-xml/src/main/java/org/apache/xml/dtm/ref/
SecuritySupport12.java 27 import java.io.InputStream;
111 InputStream getResourceAsStream(final ClassLoader cl,
114 return (InputStream)
117 InputStream ris;
  /external/apache-xml/src/main/java/org/apache/xml/serializer/
SecuritySupport12.java 27 import java.io.InputStream;
108 InputStream getResourceAsStream(final ClassLoader cl,
111 return (InputStream)
114 InputStream ris;
  /external/apache-xml/src/main/java/org/apache/xml/utils/
SecuritySupport12.java 27 import java.io.InputStream;
111 InputStream getResourceAsStream(final ClassLoader cl,
114 return (InputStream)
117 InputStream ris;
  /external/apache-xml/src/main/java/org/apache/xpath/functions/
SecuritySupport12.java 27 import java.io.InputStream;
111 InputStream getResourceAsStream(final ClassLoader cl,
114 return (InputStream)
117 InputStream ris;
  /external/javassist/src/main/javassist/
ByteArrayClassPath.java 46 * @see ClassPool#makeClass(InputStream)
76 public InputStream openClassfile(String classname) {
  /external/proguard/src/proguard/io/
RenamedDataEntry.java 59 public InputStream getInputStream() throws IOException
  /frameworks/base/core/java/com/android/internal/util/
ProcFileReader.java 21 import java.io.InputStream;
34 private final InputStream mStream;
42 public ProcFileReader(InputStream stream) throws IOException {
46 public ProcFileReader(InputStream stream, int bufferSize) throws IOException {
  /frameworks/base/graphics/java/android/graphics/
BitmapRegionDecoder.java 24 import java.io.InputStream;
106 public static BitmapRegionDecoder newInstance(InputStream is,
145 InputStream stream = null;
260 InputStream is, byte[] storage, boolean isShareable);
  /frameworks/base/media/java/android/drm/mobile1/
DrmRawContent.java 92 * The member to save the original InputStream data.
97 * The member to save the original InputStream data length.
131 public DrmRawContent(InputStream inRawdata, int len, String mimeTypeStr) throws DrmException, IOException {
192 * Get one InputStream object to read decrypted content.
196 * @return the InputStream object of decrypted media content.
198 public InputStream getContentInputStream(DrmRights rights) {
244 * This class provide a InputStream to the DRM media content.
246 class DrmInputStream extends InputStream
280 * @see java.io.InputStream#available()
301 * @see java.io.InputStream#read(
    [all...]
  /frameworks/base/tests/DumpRenderTree2/src/com/android/dumprendertree2/forwarder/
ConnectionHandler.java 24 import java.io.InputStream;
43 private InputStream mInputStream;
46 public SocketPipeThread(InputStream inputStream, OutputStream outputStream) {
47 mInputStream = inputStream;
88 private InputStream mFromSocketInputStream, mToSocketInputStream;
  /libcore/dalvik/src/main/java/dalvik/system/profiler/
HprofBinaryToAscii.java 26 import java.io.InputStream;
89 DataInputStream inputStream = null;
91 inputStream = new DataInputStream(new BufferedInputStream(new FileInputStream(file)));
92 return BinaryHprof.readMagic(inputStream) != null;
96 closeQuietly(inputStream);
104 InputStream inputStream = null;
106 inputStream = new BufferedInputStream(new FileInputStream(file));
107 return read(inputStream);
109 closeQuietly(inputStream);
    [all...]
  /libcore/luni/src/main/java/java/util/zip/
InflaterInputStream.java 23 import java.io.InputStream;
69 * InputStream} from which the compressed data is to be read from. Default
74 * the {@code InputStream} to read data from.
76 public InflaterInputStream(InputStream is) {
85 * the {@code InputStream} to read data from.
89 public InflaterInputStream(InputStream is, Inflater inflater) {
98 * the {@code InputStream} to read data from.
104 public InflaterInputStream(InputStream is, Inflater inflater, int bsize) {
226 * {@link InputStream#available()}, and violates the <a
  /libcore/luni/src/main/java/libcore/net/url/
FileURLConnection.java 27 import java.io.InputStream;
43 private InputStream is;
148 private InputStream getDirectoryListing(File f) {
179 public InputStream getInputStream() throws IOException {
  /libcore/luni/src/test/java/libcore/java/io/
FilterInputStreamNullSourceTest.java 23 import java.io.InputStream;
49 InputStream in = new CipherInputStream(null, new NullCipher());
105 private void assertReadsFailWithIoException(InputStream in) throws IOException {
121 private void assertReadsFailWithNullPointerException(InputStream in) throws IOException {
OldAndroidBufferedInputStreamTest.java 22 import java.io.InputStream;
82 public static String read(InputStream a) throws IOException {
93 public static String skipRead(InputStream a) throws IOException {
105 public static String read(InputStream a, int x) throws IOException {
  /libcore/luni/src/test/java/org/apache/harmony/security/tests/java/security/
DigestInputStreamTest.java 27 import java.io.InputStream;
84 InputStream is = new ByteArrayInputStream(myMessage);
85 InputStream dis = new DigestInputStream(is, md);
102 InputStream dis = new DigestInputStream(null, null);
117 InputStream is = new ByteArrayInputStream(myMessage);
150 InputStream is = new ByteArrayInputStream(myMessage);
185 InputStream is = new ByteArrayInputStream(myMessage);
210 * <code>InputStream</code> not set. <code>read()</code> must
228 fail("InputStream not set. read() must not work");
246 InputStream is = new ByteArrayInputStream(myMessage)
    [all...]
  /libcore/luni/src/test/java/tests/security/
CertificateFactoryTest.java 19 import java.io.InputStream;
  /libcore/support/src/test/java/tests/support/
Support_GetLocal.java 25 import java.io.InputStream;
42 InputStream in = Support_GetLocal.class.getResourceAsStream(url);
62 InputStream in = new URL(url).openStream();
80 InputStream in = new URL(url).openStream();
  /packages/apps/Email/emailcommon/src/org/apache/commons/io/
CopyUtils.java 21 import java.io.InputStream;
31 * copying between sources (<code>InputStream</code>, <code>Reader</code>,
65 * Imagine that an InputStream's read() is a very expensive operation, which
68 * {@link java.io.InputStream#read(byte[] b, int off, int len)} requests on the
69 * underlying InputStream, to fill an internal buffer, from which further
75 * {@link InputStream#read(byte[] b, int off, int len)} requests. Having two
84 * 1 copy InputStream OutputStream (primitive)
87 * 3 copy InputStream Writer 2
185 * Copy bytes from an <code>InputStream</code> to an
187 * @param input the <code>InputStream</code> to read from
    [all...]
EndianUtils.java 21 import java.io.InputStream;
292 * Reads a "short" value from an InputStream. The value is
294 * @param input source InputStream
298 public static short readSwappedShort(InputStream input)
306 * Reads a unsigned short (16-bit) from an InputStream. The value is
308 * @param input source InputStream
312 public static int readSwappedUnsignedShort(InputStream input)
339 * Reads a "int" value from an InputStream. The value is
341 * @param input source InputStream
345 public static int readSwappedInteger(InputStream input)
    [all...]
  /packages/apps/Email/emailcommon/src/org/apache/james/mime4j/decoder/
QuotedPrintableInputStream.java 23 import java.io.InputStream;
37 public class QuotedPrintableInputStream extends InputStream {
40 private InputStream stream;
45 public QuotedPrintableInputStream(InputStream stream) {
  /packages/apps/Exchange/src/com/android/exchange/
EasResponse.java 30 import java.io.InputStream;
43 private InputStream mInputStream;
98 * compressed data, or a generic InputStream otherwise
101 public InputStream getInputStream() {
107 InputStream is = null;
  /external/apache-harmony/security/src/test/api/java/org/apache/harmony/security/tests/java/security/cert/
CertificateFactory4Test.java 22 import java.io.InputStream;
52 * @tests java.security.cert.CertificateFactory#generateCertificate(java.io.InputStream)
57 // java.security.cert.CertificateFactory.generateCertificate(java.io.InputStream)
71 InputStream is = Support_Resources.getResourceStream("hyts_badpem.cer");
83 * @tests java.security.cert.CertificateFactory#generateCertificates(java.io.InputStream)
91 InputStream is = certUrl.openStream();
106 * @tests java.security.cert.CertificateFactory#generateCRL(java.io.InputStream)
113 InputStream is = certUrl.openStream();
127 * @tests java.security.cert.CertificateFactory#generateCRLs(java.io.InputStream)
134 InputStream is = certUrl.openStream()
    [all...]
  /libcore/luni/src/test/java/tests/security/cert/
CertificateFactory4Test.java 28 import java.io.InputStream;
55 * java.security.cert.CertificateFactory#generateCertificate(java.io.InputStream)
60 // java.security.cert.CertificateFactory.generateCertificate(java.io.InputStream)
74 InputStream is = Support_Resources.getResourceStream("hyts_badpem.cer");
86 * java.security.cert.CertificateFactory#generateCertificates(java.io.InputStream)
94 InputStream is = certUrl.openStream();
109 * java.security.cert.CertificateFactory#generateCRL(java.io.InputStream)
116 InputStream is = certUrl.openStream();
130 * java.security.cert.CertificateFactory#generateCRLs(java.io.InputStream)
137 InputStream is = certUrl.openStream()
    [all...]
  /external/apache-harmony/sql/src/test/java/org/apache/harmony/sql/tests/javax/sql/
Impl_RowSet.java 20 import java.io.InputStream;
109 public void setAsciiStream(int parameterIndex, InputStream theInputStream,
117 public void setBinaryStream(int parameterIndex, InputStream theInputStream,
289 public InputStream getAsciiStream(int columnIndex) throws SQLException {
293 public InputStream getAsciiStream(String columnName) throws SQLException {
315 public InputStream getBinaryStream(int columnIndex) throws SQLException {
319 public InputStream getBinaryStream(String columnName) throws SQLException {
527 public InputStream getUnicodeStream(int columnIndex) throws SQLException {
531 public InputStream getUnicodeStream(String columnName) throws SQLException {
615 public void updateAsciiStream(int columnIndex, InputStream x, int length
    [all...]

Completed in 1149 milliseconds

1 2 3 4 5 6 7 8 91011>>