Home
last modified time | relevance | path

Searched refs:pbis (Results 1 – 4 of 4) sorted by relevance

/external/conscrypt/common/src/main/java/org/conscrypt/
DOpenSSLX509CertificateFactory.java81 final PushbackInputStream pbis = new PushbackInputStream(inStream, PUSHBACK_SIZE); in generateItem() local
85 final int len = pbis.read(buffer); in generateItem()
90 pbis.unread(buffer, 0, len); in generateItem()
94 List<? extends T> items = fromPkcs7PemInputStream(pbis); in generateItem()
100 return fromX509PemInputStream(pbis); in generateItem()
106 List<? extends T> certs = fromPkcs7DerInputStream(pbis); in generateItem()
112 return fromX509DerInputStream(pbis); in generateItem()
144 final PushbackInputStream pbis = new PushbackInputStream(inStream, PUSHBACK_SIZE); in generateItems() local
148 final int len = pbis.read(buffer); in generateItems()
153 pbis.unread(buffer, 0, len); in generateItems()
[all …]
DOpenSSLX509CertPath.java197 final PushbackInputStream pbis = new PushbackInputStream(inStream, PUSHBACK_SIZE); in fromPkcs7Encoding() local
201 final int len = pbis.read(buffer); in fromPkcs7Encoding()
206 pbis.unread(buffer, 0, len); in fromPkcs7Encoding()
209 … return new OpenSSLX509CertPath(OpenSSLX509Certificate.fromPkcs7PemInputStream(pbis)); in fromPkcs7Encoding()
212 return new OpenSSLX509CertPath(OpenSSLX509Certificate.fromPkcs7DerInputStream(pbis)); in fromPkcs7Encoding()
/external/sfntly/cpp/src/sfntly/
Dfont_factory.cc43 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 …]
Dfont_factory.h130 static bool IsCollection(PushbackInputStream* pbis);