OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:pbis
(Results
1 - 7
of
7
) sorted by null
/external/conscrypt/common/src/main/java/org/conscrypt/
OpenSSLX509CertificateFactory.java
81
final PushbackInputStream
pbis
= new PushbackInputStream(inStream, PUSHBACK_SIZE);
local
85
final int len =
pbis
.read(buffer);
90
pbis
.unread(buffer, 0, len);
94
List<? extends T> items = fromPkcs7PemInputStream(
pbis
);
100
return fromX509PemInputStream(
pbis
);
106
List<? extends T> certs = fromPkcs7DerInputStream(
pbis
);
112
return fromX509DerInputStream(
pbis
);
144
final PushbackInputStream
pbis
= new PushbackInputStream(inStream, PUSHBACK_SIZE);
local
148
final int len =
pbis
.read(buffer);
153
pbis
.unread(buffer, 0, len)
[
all
...]
OpenSSLX509CertPath.java
202
final PushbackInputStream
pbis
= new PushbackInputStream(inStream, PUSHBACK_SIZE);
local
206
final int len =
pbis
.read(buffer);
211
pbis
.unread(buffer, 0, len);
214
return new OpenSSLX509CertPath(OpenSSLX509Certificate.fromPkcs7PemInputStream(
pbis
));
217
return new OpenSSLX509CertPath(OpenSSLX509Certificate.fromPkcs7DerInputStream(
pbis
));
/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
...]
font_factory.h
130
static bool IsCollection(PushbackInputStream*
pbis
);
/libcore/ojluni/src/main/java/sun/security/provider/
X509Factory.java
437
PushbackInputStream
pbis
= new PushbackInputStream(is);
444
peekByte =
pbis
.read();
448
pbis
.unread(peekByte);
449
data = readOneBlock(
pbis
);
472
data = readOneBlock(
pbis
);
489
PushbackInputStream
pbis
= new PushbackInputStream(is);
496
peekByte =
pbis
.read();
500
pbis
.unread(peekByte);
501
data = readOneBlock(
pbis
);
524
data = readOneBlock(
pbis
);
[
all
...]
/toolchain/binutils/binutils-2.27/gas/config/
tc-m68851.h
100
{"
pbis
", one(0xf0ca), one(0xffbf), "Bc"},
/toolchain/binutils/binutils-2.27/opcodes/
m68k-opc.c
[
all
...]
Completed in 348 milliseconds