/external/libchrome/crypto/ |
openssl_bio_string_unittest.cc | 31 BIO_write(bio.get(), expected2.data(), expected2.size())); 50 BIO_write(bio.get(), expected1.data(), expected1.size())); 57 BIO_write(bio.get(), expected2.data(), expected2.size()));
|
/external/libbrillo/brillo/streams/ |
openssl_stream_bio_unittests.cc | 89 EXPECT_EQ(10, BIO_write(bio_, buffer, sizeof(buffer))); 96 EXPECT_EQ(3, BIO_write(bio_, buffer, sizeof(buffer))); 103 EXPECT_EQ(-1, BIO_write(bio_, buffer, sizeof(buffer))); 111 EXPECT_EQ(-1, BIO_write(bio_, buffer, sizeof(buffer)));
|
openssl_stream_bio.h | 20 // At the moment, only BIO_read and BIO_write operations are supported as well
|
/external/boringssl/src/crypto/bio/ |
bio_test.cc | 102 BIO_write(bio.get(), kTestMessage, sizeof(kTestMessage))); 230 EXPECT_EQ(5, BIO_write(bio1, "12345", 5)); 237 EXPECT_EQ(10, BIO_write(bio1, "1234567890___", 13)); 239 EXPECT_EQ(-1, BIO_write(bio1, "z", 1)); 256 EXPECT_EQ(5, BIO_write(bio1, "12345", 5)); 258 EXPECT_EQ(5, BIO_write(bio1, "67890___", 8)); 272 EXPECT_EQ(8, BIO_write(bio1, "abcdefgh", 8)); 277 EXPECT_EQ(5, BIO_write(bio1, "ijklm___", 8)); 284 EXPECT_EQ(5, BIO_write(bio1, "12345", 5)); 285 EXPECT_EQ(5, BIO_write(bio2, "67890", 5)) [all...] |
hexdump.c | 109 if (BIO_write(ctx->bio, buf, 10) < 0) { 129 if (BIO_write(ctx->bio, buf, l) < 0) { 138 if (BIO_write(ctx->bio, ctx->right_chars, sizeof(ctx->right_chars)) < 0) { 169 if (BIO_write(ctx->bio, buf, l) < 0) { 176 if (BIO_write(ctx->bio, ctx->right_chars, n_bytes + 2) < 0) {
|
bio.c | 185 int BIO_write(BIO *bio, const void *in, int inl) { 191 return BIO_write(bio, in, strlen(in)); 460 return BIO_write((BIO *)bio, str, len);
|
printf.c | 113 ret = BIO_write(bio, out, out_len);
|
/external/boringssl/src/crypto/x509/ |
t_req.c | 100 if (BIO_write(bio, "Certificate Request:\n", 21) <= 0 || 101 BIO_write(bio, " Data:\n", 10) <= 0) { 114 BIO_write(bio, "\n", 1) <= 0) { 119 if (BIO_write(bio, " Subject Public Key Info:\n", 33) <= 0 || 178 if (BIO_write(bio, " ", 1) != 1) { 191 if (BIO_write(bio, (char *)bs->data, bs->length) != bs->length) { 224 if (BIO_write(bio, "\n", 1) <= 0) {
|
t_x509.c | 121 if (BIO_write(bp, "Certificate:\n", 13) <= 0) 123 if (BIO_write(bp, " Data:\n", 10) <= 0) 133 if (BIO_write(bp, " Serial Number:", 22) <= 0) 172 if (BIO_write(bp, "\n", 1) <= 0) 176 if (BIO_write(bp, " Validity\n", 17) <= 0) 178 if (BIO_write(bp, " Not Before: ", 24) <= 0) 182 if (BIO_write(bp, "\n Not After : ", 25) <= 0) 186 if (BIO_write(bp, "\n", 1) <= 0) 195 if (BIO_write(bp, "\n", 1) <= 0) 199 if (BIO_write(bp, " Subject Public Key Info:\n", 33) <= 0 [all...] |
x509.c | 143 if (BIO_write(bp, "\n", 1) <= 0 || 152 if (BIO_write(bp, "\n", 1) != 1) {
|
t_x509a.c | 108 BIO_write(out, "\n", 1);
|
/external/boringssl/src/crypto/asn1/ |
f_string.c | 71 if (BIO_write(bp, "0", 1) != 1) 77 if (BIO_write(bp, "\\\n", 2) != 2) 83 if (BIO_write(bp, buf, 2) != 2)
|
f_int.c | 71 if (BIO_write(bp, "-", 1) != 1) 77 if (BIO_write(bp, "00", 2) != 2) 83 if (BIO_write(bp, "\\\n", 2) != 2) 89 if (BIO_write(bp, buf, 2) != 2)
|
f_enum.c | 73 if (BIO_write(bp, "00", 2) != 2) 79 if (BIO_write(bp, "\\\n", 2) != 2) 85 if (BIO_write(bp, buf, 2) != 2)
|
a_i2d_fp.c | 94 i = BIO_write(out, &(b[j]), n); 135 i = BIO_write(out, &(b[j]), n);
|
a_object.c | 229 return (BIO_write(bp, "NULL", 4)); 238 return BIO_write(bp, "<INVALID>", 9); 239 BIO_write(bp, p, i);
|
/external/boringssl/src/ssl/test/ |
async_bio.cc | 51 return BIO_write(bio->next_bio, in, inl); 65 int ret = BIO_write(bio->next_bio, in, inl);
|
packeted_bio.cc | 88 int ret = BIO_write(bio->next_bio, header, sizeof(header)); 95 ret = BIO_write(bio->next_bio, in, inl); 148 ret = BIO_write(bio->next_bio, &kOpcodeTimeoutAck, 1);
|
/external/boringssl/src/crypto/x509v3/ |
v3_pku.c | 94 BIO_write(out, "Not Before: ", 12); 97 BIO_write(out, ", ", 2); 100 BIO_write(out, "Not After: ", 11);
|
/external/boringssl/src/crypto/pem/ |
pem_lib.c | 535 if ((BIO_write(bp, "-----BEGIN ", 11) != 11) || 536 (BIO_write(bp, name, nlen) != nlen) || 537 (BIO_write(bp, "-----\n", 6) != 6)) 542 if ((BIO_write(bp, header, i) != i) || (BIO_write(bp, "\n", 1) != 1)) 556 if ((outl) && (BIO_write(bp, (char *)buf, outl) != outl)) 563 if ((outl > 0) && (BIO_write(bp, (char *)buf, outl) != outl)) 568 if ((BIO_write(bp, "-----END ", 9) != 9) || 569 (BIO_write(bp, name, nlen) != nlen) || 570 (BIO_write(bp, "-----\n", 6) != 6) [all...] |
/device/linaro/bootloader/edk2/CryptoPkg/Library/BaseCryptLib/Pem/ |
CryptPem.c | 116 if (BIO_write (PemBio, PemData, (int) PemSize) <= 0) {
|
/system/extras/verity/ |
generate_verity_key.c | 51 BIO_write(bfile, key_data, sizeof(key_data));
|
/external/boringssl/src/ssl/ |
ssl_buffer.c | 267 int ret = BIO_write(ssl->wbio, buf->buf + buf->offset, buf->len); 284 int ret = BIO_write(ssl->wbio, buf->buf + buf->offset, buf->len);
|
/external/webrtc/webrtc/base/ |
opensslidentity.cc | 199 BIO_write(temp_memory_bio, "\0", 1); 341 BIO_write(bio, "\0", 1);
|
/device/linaro/bootloader/edk2/CryptoPkg/Library/BaseCryptLib/Pk/ |
CryptPkcs7Sign.c | 131 if (BIO_write (DataBio, InData, (int) InDataSize) <= 0) {
|