/external/apache-harmony/x-net/src/test/impl/java.injected/org/apache/harmony/xnet/provider/jsse/ |
SSLStreamedInputTest.java | 36 ByteArrayInputStream bis = new ByteArrayInputStream(data); local 37 SSLStreamedInput sslsi = new SSLStreamedInput(bis); 38 assertEquals(bis.available(), sslsi.available());
|
/external/apache-xml/src/main/java/org/apache/xpath/functions/ |
FuncSystemProperty.java | 175 BufferedInputStream bis = new BufferedInputStream(is); local 177 target.load(bis); // and load up the property bag from this 178 bis.close(); // close out after reading
|
/external/glide/library/src/main/java/com/bumptech/glide/load/resource/gifbitmap/ |
GifBitmapWrapperResourceDecoder.java | 31 RecyclableBufferedInputStream bis = new RecyclableBufferedInputStream(is, tempBytes); local 34 source = new ImageVideoWrapper(bis, source.getFileDescriptor()); 35 bis.mark(2048); 36 ImageHeaderParser.ImageType type = new ImageHeaderParser(bis).getType(); 37 bis.reset(); 40 Resource<GifData> gifResource = gifDecoder.decode(bis, width, height);
|
/external/chromium_org/third_party/yasm/source/patched-yasm/tools/genperf/ |
standard.h | 20 #define bis(target,mask) ((target) |= (mask)) macro
|
/external/glide/library/src/main/java/com/bumptech/glide/load/resource/bitmap/ |
Downsampler.java | 135 RecyclableBufferedInputStream bis = new RecyclableBufferedInputStream(is, bytesForStream); local 136 bis.mark(MARK_POSITION); 139 orientation = new ImageHeaderParser(bis).getOrientation(); 144 bis.reset(); 152 final int[] inDimens = getDimensions(bis, options); 166 final Bitmap downsampled = downsampleWithSize(bis, options, pool, inWidth, inHeight, sampleSize, decodeFormat); 183 protected Bitmap downsampleWithSize(RecyclableBufferedInputStream bis, BitmapFactory.Options options, 186 Bitmap.Config config = getConfig(bis, decodeFormat); 190 if (shouldUsePool(bis)) { 194 return decodeStream(bis, options) [all...] |
/external/conscrypt/src/main/java/org/conscrypt/ |
OpenSSLX509CertPath.java | 139 OpenSSLBIOInputStream bis = new OpenSSLBIOInputStream(inStream); local 148 certRefs = NativeCrypto.ASN1_seq_unpack_X509_bio(bis.getBioContext()); 158 bis.release();
|
OpenSSLX509CRL.java | 55 final OpenSSLBIOInputStream bis = new OpenSSLBIOInputStream(is); local 58 final long crlCtx = NativeCrypto.d2i_X509_CRL_bio(bis.getBioContext()); 66 bis.release(); 72 OpenSSLBIOInputStream bis = new OpenSSLBIOInputStream(is); local 76 certRefs = NativeCrypto.d2i_PKCS7_bio(bis.getBioContext(), NativeCrypto.PKCS7_CRLS); 80 bis.release(); 94 final OpenSSLBIOInputStream bis = new OpenSSLBIOInputStream(is); local 97 final long crlCtx = NativeCrypto.PEM_read_bio_X509_CRL(bis.getBioContext()); 105 bis.release(); 111 OpenSSLBIOInputStream bis = new OpenSSLBIOInputStream(is) local [all...] |
OpenSSLX509Certificate.java | 64 final OpenSSLBIOInputStream bis = new OpenSSLBIOInputStream(is); local 67 final long certCtx = NativeCrypto.d2i_X509_bio(bis.getBioContext()); 75 bis.release(); 90 OpenSSLBIOInputStream bis = new OpenSSLBIOInputStream(is); local 94 certRefs = NativeCrypto.d2i_PKCS7_bio(bis.getBioContext(), NativeCrypto.PKCS7_CERTS); 98 bis.release(); 119 final OpenSSLBIOInputStream bis = new OpenSSLBIOInputStream(is); local 122 final long certCtx = NativeCrypto.PEM_read_bio_X509(bis.getBioContext()); 130 bis.release(); 137 OpenSSLBIOInputStream bis = new OpenSSLBIOInputStream(is) local [all...] |
/dalvik/hit/src/com/android/hit/ |
Main.java | 29 BufferedInputStream bis; local 34 bis = new BufferedInputStream(fis); 35 dis = new DataInputStream(bis);
|
/external/apache-harmony/security/src/test/support/common/java/org/apache/harmony/security/tests/support/cert/ |
TestUtils.java | 95 BufferedInputStream bis = null; local 97 bis = new BufferedInputStream(new ByteArrayInputStream( 99 X509Certificate c1 = (X509Certificate) cf.generateCertificate(bis); 106 if (bis != null) { 108 bis.close(); 146 BufferedInputStream bis = null; local 158 if (initialize && bis != null) { 160 bis.close();
|
/external/apache-xml/src/main/java/org/apache/xml/serializer/ |
OutputPropertiesFactory.java | 358 BufferedInputStream bis = null; local 380 bis = new BufferedInputStream(is); 381 props.load(bis); 418 if (bis != null) 420 bis.close();
|
/external/mockito/src/org/mockito/internal/creation/ |
AcrossJVMSerializationFeature.java | 220 ByteArrayInputStream bis = new ByteArrayInputStream(serializedMock); local 221 ObjectInputStream objectInputStream = new MockitoMockObjectInputStream(bis, typeToMock, extraInterfaces); 225 bis.close();
|
/cts/tools/dex-tools/src/dex/reader/ |
DexBuffer.java | 37 BufferedInputStream bis = new BufferedInputStream(fis); local 41 while ((len = bis.read(buf)) > 0) {
|
/development/samples/KeyChainDemo/src/com/example/android/keychain/ |
SecureWebServer.java | 173 BufferedInputStream bis; local 175 bis = new BufferedInputStream(ctx.getAssets().open(EMBEDDED_IMAGE_FILENAME)); 176 byte[] embeddedImage = new byte[bis.available()]; 177 bis.read(embeddedImage);
|
KeyChainDemoActivity.java | 226 BufferedInputStream bis = new BufferedInputStream(getAssets().open( local 228 byte[] keychain = new byte[bis.available()]; 229 bis.read(keychain);
|
/external/apache-harmony/support/src/test/java/tests/util/ |
SerializationTester.java | 74 ByteArrayInputStream bis = new ByteArrayInputStream(bos.toByteArray()); local 75 ObjectInputStream ois = new ObjectInputStream(bis);
|
/external/javassist/src/test/test/javassist/proxy/ |
ProxySerializationTest.java | 41 ByteArrayInputStream bis = new ByteArrayInputStream(bytes); local 42 ObjectInputStream in = new ObjectInputStream(bis); 68 ByteArrayInputStream bis = new ByteArrayInputStream(bytes); local 69 ProxyObjectInputStream in = new ProxyObjectInputStream(bis);
|
/development/samples/ApiDemos/src/com/example/android/apis/graphics/ |
CompressedTextureActivity.java | 122 ByteArrayInputStream bis = new ByteArrayInputStream(bos.toByteArray()); local 124 GLES10.GL_RGB, GLES10.GL_UNSIGNED_SHORT_5_6_5, bis);
|
/external/apache-harmony/security/src/test/impl/java/org/apache/harmony/security/tests/java/security/ |
KeyStore_Impl3Test.java | 148 ByteArrayInputStream bis = new ByteArrayInputStream(bos local 150 kss1[i].load(bis, pwd);
|
/cts/tests/tests/media/src/android/media/cts/ |
DecoderTest.java | 93 BufferedInputStream bis = new BufferedInputStream(is); local 95 int lo = bis.read(); 96 int hi = bis.read(); 103 bis.close(); [all...] |
/external/conscrypt/src/test/java/org/conscrypt/ |
NativeCryptoTest.java | 3174 OpenSSLBIOInputStream bis = new OpenSSLBIOInputStream(is); local [all...] |
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.apache.ant_1.7.1.v20090120-1145/lib/ |
ant-apache-bcel.jar | |
ant.jar | |
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/ |
org.eclipse.equinox.p2.touchpoint.eclipse_2.0.2.R36x_v20100823.jar | |
/external/jarjar/lib/ |
apache-ant-1.9.4.jar | |