OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:bio_
(Results
1 - 2
of
2
) sorted by null
/external/libbrillo/brillo/streams/
openssl_stream_bio_unittests.cc
26
bio_
= BIO_new_stream(stream_.get());
30
BIO_free(
bio_
);
variable
31
bio_
= nullptr;
36
BIO*
bio_
{nullptr};
45
EXPECT_EQ(10, BIO_read(
bio_
, buffer, sizeof(buffer)));
54
EXPECT_EQ(3, BIO_read(
bio_
, buffer, sizeof(buffer)));
63
EXPECT_EQ(-1, BIO_read(
bio_
, buffer, sizeof(buffer)));
64
EXPECT_TRUE(BIO_should_retry(
bio_
));
73
EXPECT_EQ(0, BIO_read(
bio_
, buffer, sizeof(buffer)));
74
EXPECT_FALSE(BIO_should_retry(
bio_
));
[
all
...]
/external/conscrypt/common/src/main/java/org/conscrypt/
ConscryptEngine.java
785
// We ignore
BIO_
* errors here as we use in memory BIO anyway and will
[
all
...]
Completed in 474 milliseconds