HomeSort by relevance Sort by last modified time
    Searched refs:BIO_read (Results 1 - 25 of 25) sorted by null

  /external/libbrillo/brillo/streams/
openssl_stream_bio_unittests.cc 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)));
73 EXPECT_EQ(0, BIO_read(bio_, buffer, sizeof(buffer)));
81 EXPECT_EQ(-1, BIO_read(bio_, buffer, sizeof(buffer)));
  /external/tlsdate/src/
proxy-bio-plan9.c 121 r = BIO_read(b->next_bio, buf, 8);
165 r = BIO_read(b->next_bio, buf, 2);
211 r = BIO_read(b->next_bio, buf, 4);
224 r = BIO_read(b->next_bio, buf + 4, 1);
230 r = BIO_read(b->next_bio, buf + 5, min(len, sizeof(buf)));
237 r = BIO_read(b->next_bio, buf + 4, 6);
251 while (BIO_read(b, &c, 1) > 0 && sz > 1) {
350 r = BIO_read(b->next_bio, buf, sz);
proxy-bio.c 111 r = BIO_read (b->next_bio, buf, 8);
151 r = BIO_read (b->next_bio, buf, 2);
193 r = BIO_read (b->next_bio, buf, 4);
206 r = BIO_read (b->next_bio, buf + 4, 1);
213 r = BIO_read (b->next_bio, buf + 5, min (len, sizeof (buf)));
222 r = BIO_read (b->next_bio, buf + 4, 6);
235 while (BIO_read (b, &c, 1) > 0 && sz > 1)
330 r = BIO_read (b->next_bio, buf, sz);
  /external/boringssl/src/crypto/bio/
bio.c 189 int BIO_read(BIO *bio, void *buf, int len) {
503 const int n = BIO_read(bio, *out + done, todo);
532 if (BIO_read(bio, header, kInitialHeaderLen) != (int) kInitialHeaderLen) {
562 if (BIO_read(bio, header + kInitialHeaderLen, num_bytes) !=
601 if (BIO_read(bio, (*out) + header_len, len - header_len) !=
buffer.c 178 i = BIO_read(bio->next_bio, out, outl);
197 i = BIO_read(bio->next_bio, ctx->ibuf, ctx->ibuf_size);
463 i = BIO_read(b->next_bio, ctx->ibuf, ctx->ibuf_size);
bio_test.cc 237 total_read += BIO_read(bio2, bio2_application_recv_buffer + total_read,
  /external/boringssl/src/crypto/asn1/
a_d2i_fp.c 173 i=BIO_read(in,&(b->data[len]),want);
235 if (want > INT_MAX /* BIO_read takes an int length */ ||
248 i=BIO_read(in,&(b->data[len]),want);
bio_asn1.c 351 return BIO_read(b->next_bio, in , inl);
  /external/boringssl/src/ssl/
ssl_buffer.c 117 int ret = BIO_read(ssl->rbio, buf->buf + buf->offset, (int)buf->cap);
122 /* |BIO_read| was bound by |buf->cap|, so this cannot overflow. */
140 int ret = BIO_read(ssl->rbio, buf->buf + buf->offset + buf->len,
146 /* |BIO_read| was bound by |buf->cap - buf->len|, so this cannot
  /external/boringssl/src/ssl/test/
async_bio.cc 88 int ret = BIO_read(bio->next_bio, out, outl);
packeted_bio.cc 41 int ret = BIO_read(bio, out, chunk_len);
  /external/boringssl/src/crypto/x509v3/
v3_pci.c 176 while((n = BIO_read(b, buf, sizeof(buf))) > 0
  /external/boringssl/src/decrepit/bio/
base64_bio.c 170 i = BIO_read(b->next_bio, &(ctx->tmp[ctx->tmp_len]),
  /external/boringssl/src/include/openssl/
bio.h 104 /* BIO_read attempts to read |len| bytes into |data|. It returns the number of
106 OPENSSL_EXPORT int BIO_read(BIO *bio, void *data, int len);
630 /* Zero copy versions of BIO_read and BIO_write for BIO pairs. */
    [all...]
  /external/curl/docs/examples/
curlx.c 467 while ((lu = BIO_read (in,&binaryptr[i],tabLength-i)) >0 ) {
  /external/wpa_supplicant_8/hs20/client/
est.c 507 int res = BIO_read(out, txt, rlen);
  /external/wpa_supplicant_8/src/crypto/
tls_openssl_ocsp.c 240 res = BIO_read(out, txt, rlen);
tls_openssl.c     [all...]
  /external/wpa_supplicant_8/src/utils/
http_curl.c 185 int res = BIO_read(out, txt, rlen);
1072 res = BIO_read(out, txt, rlen);
    [all...]
  /external/boringssl/src/crypto/pkcs8/
pkcs8.c 1106 int n = BIO_read(bio, &buf->data[used], buf->length - used);
    [all...]
  /external/conscrypt/src/main/java/org/conscrypt/
NativeCrypto.java 576 public static native int BIO_read(long bioRef, byte[] buffer);
    [all...]
  /external/ipsec-tools/src/racoon/
crypto_openssl.c     [all...]
  /external/conscrypt/src/test/java/org/conscrypt/
NativeCryptoTest.java     [all...]
  /external/conscrypt/src/main/native/
org_conscrypt_NativeCrypto.cpp     [all...]
  /prebuilts/sdk/tools/lib/
signapk.jar 

Completed in 5211 milliseconds