Searched refs:pbis (Results 1 – 4 of 4) sorted by relevance
/external/conscrypt/src/main/java/org/conscrypt/ |
D | OpenSSLX509CertificateFactory.java | 75 final PushbackInputStream pbis = new PushbackInputStream(inStream, PUSHBACK_SIZE); in generateItem() local 79 final int len = pbis.read(buffer); in generateItem() 84 pbis.unread(buffer, 0, len); in generateItem() 88 List<? extends T> items = fromPkcs7PemInputStream(pbis); in generateItem() 94 return fromX509PemInputStream(pbis); in generateItem() 100 List<? extends T> certs = fromPkcs7DerInputStream(pbis); in generateItem() 106 return fromX509DerInputStream(pbis); in generateItem() 138 final PushbackInputStream pbis = new PushbackInputStream(inStream, PUSHBACK_SIZE); in generateItems() local 142 final int len = pbis.read(buffer); in generateItems() 147 pbis.unread(buffer, 0, len); in generateItems() [all …]
|
D | OpenSSLX509CertPath.java | 192 final PushbackInputStream pbis = new PushbackInputStream(inStream, PUSHBACK_SIZE); in fromPkcs7Encoding() local 196 final int len = pbis.read(buffer); in fromPkcs7Encoding() 201 pbis.unread(buffer, 0, len); in fromPkcs7Encoding() 204 … return new OpenSSLX509CertPath(OpenSSLX509Certificate.fromPkcs7PemInputStream(pbis)); in fromPkcs7Encoding() 207 return new OpenSSLX509CertPath(OpenSSLX509Certificate.fromPkcs7DerInputStream(pbis)); in fromPkcs7Encoding()
|
/external/sfntly/cpp/src/sfntly/ |
D | font_factory.cc | 43 PushbackInputStream* pbis = down_cast<PushbackInputStream*>(is); in LoadFonts() local 44 if (IsCollection(pbis)) { in LoadFonts() 45 LoadCollection(pbis, output); in LoadFonts() 49 font.Attach(LoadSingleOTF(pbis)); in LoadFonts() 71 PushbackInputStream* pbis = down_cast<PushbackInputStream*>(is); in LoadFontsForBuilding() local 72 if (IsCollection(pbis)) { in LoadFontsForBuilding() 73 LoadCollectionForBuilding(pbis, output); in LoadFontsForBuilding() 77 builder.Attach(LoadSingleOTFForBuilding(pbis)); in LoadFontsForBuilding() 196 bool FontFactory::IsCollection(PushbackInputStream* pbis) { in IsCollection() argument 198 pbis->Read(&tag); in IsCollection() [all …]
|
D | font_factory.h | 130 static bool IsCollection(PushbackInputStream* pbis);
|