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

1 2

  /external/boringssl/src/crypto/x509v3/
v3_pku.c 90 BIO_write(out, "Not Before: ", 12);
92 if(usage->notAfter) BIO_write(out, ", ", 2);
95 BIO_write(out, "Not After: ", 11);
  /external/boringssl/src/crypto/bio/
hexdump.c 108 if (BIO_write(ctx->bio, buf, 10) < 0) {
128 if (BIO_write(ctx->bio, buf, l) < 0) {
137 if (BIO_write(ctx->bio, ctx->right_chars, sizeof(ctx->right_chars)) < 0) {
168 if (BIO_write(ctx->bio, buf, l) < 0) {
175 if (BIO_write(ctx->bio, ctx->right_chars, n_bytes + 2) < 0) {
printf.c 113 ret = BIO_write(bio, out, out_len);
buffer.c 242 i = BIO_write(b->next_bio, &ctx->obuf[ctx->obuf_off], ctx->obuf_len);
265 i = BIO_write(b->next_bio, in, inl);
382 r = BIO_write(b->next_bio, &(ctx->obuf[ctx->obuf_off]),
  /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 119 if (BIO_write(bp,"Certificate:\n",13) <= 0) goto err;
120 if (BIO_write(bp," Data:\n",10) <= 0) goto err;
130 if (BIO_write(bp," Serial Number:",22) <= 0) goto err;
171 if (BIO_write(bp,"\n",1) <= 0) goto err;
175 if (BIO_write(bp," Validity\n",17) <= 0) goto err;
176 if (BIO_write(bp," Not Before: ",24) <= 0) goto err;
178 if (BIO_write(bp,"\n Not After : ",25) <= 0) goto err;
180 if (BIO_write(bp,"\n",1) <= 0) goto err;
186 if (BIO_write(bp,"\n",1) <= 0) goto err;
190 if (BIO_write(bp," Subject Public Key Info:\n",33) <= 0
    [all...]
x509.c 138 if (BIO_write(bp, "\n", 1) <= 0 ||
147 if (BIO_write(bp, "\n", 1) != 1) {
t_x509a.c 106 BIO_write(out,"\n",1);
  /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/boringssl/src/crypto/asn1/
f_string.c 74 if (BIO_write(bp,"0",1) != 1) goto err;
83 if (BIO_write(bp,"\\\n",2) != 2) goto err;
88 if (BIO_write(bp,buf,2) != 2) goto err;
f_int.c 73 if (BIO_write(bp, "-", 1) != 1) goto err;
79 if (BIO_write(bp,"00",2) != 2) goto err;
88 if (BIO_write(bp,"\\\n",2) != 2) goto err;
93 if (BIO_write(bp,buf,2) != 2) goto err;
t_pkey.c 109 if (BIO_write(bp,"\n",1) <= 0) return(0);
a_i2d_fp.c 98 i=BIO_write(out,&(b[j]),n);
142 i=BIO_write(out,&(b[j]),n);
f_enum.c 74 if (BIO_write(bp,"00",2) != 2) goto err;
83 if (BIO_write(bp,"\\\n",2) != 2) goto err;
88 if (BIO_write(bp,buf,2) != 2) goto err;
a_object.c 241 return(BIO_write(bp,"NULL",4));
251 return BIO_write(bp, "<INVALID>", 9);
252 BIO_write(bp,p,i);
asn1_par.c 81 if (BIO_write(bp,p,6) < 6) goto err;
224 BIO_write(bp,(const char *)p,(int)len)
287 if (BIO_write(bp,(const char *)opp,
bio_asn1.c 248 ret = BIO_write(b->next_bio,
270 ret = BIO_write(b->next_bio, in, wrmax);
310 ret = BIO_write(b->next_bio, ctx->ex_buf + ctx->ex_pos,
  /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)));
  /external/tlsdate/src/
proxy-bio-plan9.c 114 r = BIO_write(b->next_bio, buf, sz);
161 r = BIO_write(b->next_bio, buf, 3);
194 r = BIO_write(b->next_bio, buf, sz);
271 r = BIO_write(b->next_bio, buf, strlen(buf));
278 r = BIO_write(b->next_bio, buf, strlen(buf));
284 r = BIO_write(b->next_bio, buf, strlen(buf));
328 r = BIO_write(b->next_bio, buf, sz);
proxy-bio-unittest.c 126 EXPECT_EQ (4, BIO_write (proxy, kTestInput, sizeof (kTestInput)));
147 EXPECT_EQ (0, BIO_write (proxy, kTestInput, sizeof (kTestInput)));
197 EXPECT_EQ (4, BIO_write (proxy, kTestInput, sizeof (kTestInput)));
217 EXPECT_EQ (0, BIO_write (proxy, kTestInput, sizeof (kTestInput)));
240 EXPECT_EQ (0, BIO_write (proxy, kTestInput, sizeof (kTestInput)));
262 EXPECT_EQ (4, BIO_write (proxy, kTestInput, sizeof (kTestInput)));
285 EXPECT_EQ (0, BIO_write (proxy, kTestInput, sizeof (kTestInput)));
proxy-bio.c 105 r = BIO_write (b->next_bio, buf, sz);
148 r = BIO_write (b->next_bio, buf, 3);
178 r = BIO_write (b->next_bio, buf, sz);
256 r = BIO_write (b->next_bio, buf, strlen (buf));
263 r = BIO_write (b->next_bio, buf, strlen (buf));
269 r = BIO_write (b->next_bio, buf, strlen (buf));
310 r = BIO_write (b->next_bio, buf, sz);
  /external/boringssl/src/ssl/test/
packeted_bio.cc 65 int ret = BIO_write(bio->next_bio, header, sizeof(header));
72 ret = BIO_write(bio->next_bio, in, inl);
120 ret = BIO_write(bio->next_bio, &kOpcodeTimeoutAck, 1);
async_bio.cc 48 return BIO_write(bio->next_bio, in, inl);
62 int ret = BIO_write(bio->next_bio, in, inl);
  /external/boringssl/src/crypto/pem/
pem_lib.c 563 if ( (BIO_write(bp,"-----BEGIN ",11) != 11) ||
564 (BIO_write(bp,name,nlen) != nlen) ||
565 (BIO_write(bp,"-----\n",6) != 6))
571 if ( (BIO_write(bp,header,i) != i) ||
572 (BIO_write(bp,"\n",1) != 1))
588 if ((outl) && (BIO_write(bp,(char *)buf,outl) != outl))
595 if ((outl > 0) && (BIO_write(bp,(char *)buf,outl) != outl)) goto err;
599 if ( (BIO_write(bp,"-----END ",9) != 9) ||
600 (BIO_write(bp,name,nlen) != nlen) ||
601 (BIO_write(bp,"-----\n",6) != 6)
    [all...]
  /external/boringssl/src/ssl/
ssl_buffer.c 272 int ret = BIO_write(ssl->wbio, buf->buf + buf->offset, buf->len);
290 int ret = BIO_write(ssl->wbio, buf->buf + buf->offset, buf->len);

Completed in 517 milliseconds

1 2