HomeSort by relevance Sort by last modified time
    Searched defs:pbis (Results 1 - 3 of 3) sorted by null

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

Completed in 119 milliseconds