/external/openssl/crypto/ocsp/ |
ocsp.h | 357 #define d2i_OCSP_REQUEST_bio(bp,p) ASN1_d2i_bio_of(OCSP_REQUEST,OCSP_REQUEST_new,d2i_OCSP_REQUEST,bp,p) 359 #define d2i_OCSP_RESPONSE_bio(bp,p) ASN1_d2i_bio_of(OCSP_RESPONSE,OCSP_RESPONSE_new,d2i_OCSP_RESPONSE,bp,p) 361 #define PEM_read_bio_OCSP_REQUEST(bp,x,cb) (OCSP_REQUEST *)PEM_ASN1_read_bio( \ 362 (char *(*)())d2i_OCSP_REQUEST,PEM_STRING_OCSP_REQUEST,bp,(char **)x,cb,NULL) 364 #define PEM_read_bio_OCSP_RESPONSE(bp,x,cb)(OCSP_RESPONSE *)PEM_ASN1_read_bio(\ 365 (char *(*)())d2i_OCSP_RESPONSE,PEM_STRING_OCSP_RESPONSE,bp,(char **)x,cb,NULL) 367 #define PEM_write_bio_OCSP_REQUEST(bp,o) \ 369 bp,(char *)o, NULL,NULL,0,NULL,NULL [all...] |
/external/openssl/include/openssl/ |
ocsp.h | 357 #define d2i_OCSP_REQUEST_bio(bp,p) ASN1_d2i_bio_of(OCSP_REQUEST,OCSP_REQUEST_new,d2i_OCSP_REQUEST,bp,p) 359 #define d2i_OCSP_RESPONSE_bio(bp,p) ASN1_d2i_bio_of(OCSP_RESPONSE,OCSP_RESPONSE_new,d2i_OCSP_RESPONSE,bp,p) 361 #define PEM_read_bio_OCSP_REQUEST(bp,x,cb) (OCSP_REQUEST *)PEM_ASN1_read_bio( \ 362 (char *(*)())d2i_OCSP_REQUEST,PEM_STRING_OCSP_REQUEST,bp,(char **)x,cb,NULL) 364 #define PEM_read_bio_OCSP_RESPONSE(bp,x,cb)(OCSP_RESPONSE *)PEM_ASN1_read_bio(\ 365 (char *(*)())d2i_OCSP_RESPONSE,PEM_STRING_OCSP_RESPONSE,bp,(char **)x,cb,NULL) 367 #define PEM_write_bio_OCSP_REQUEST(bp,o) \ 369 bp,(char *)o, NULL,NULL,0,NULL,NULL [all...] |
dsa.h | 172 #define d2i_DSAparams_bio(bp,x) ASN1_d2i_bio_of(DSA,DSA_new,d2i_DSAparams,bp,x) 173 #define i2d_DSAparams_bio(bp,x) ASN1_i2d_bio_of_const(DSA,i2d_DSAparams,bp,x) 232 int DSAparams_print(BIO *bp, const DSA *x); 233 int DSA_print(BIO *bp, const DSA *x, int off); 237 int DSA_print_fp(FILE *bp, const DSA *x, int off);
|
/external/ipsec-tools/src/racoon/ |
oakley.c | 474 vchar_t *buf = NULL, *res = NULL, *bp; local 514 bp = (side == INITIATOR ? iph2->nonce : iph2->nonce_p); 515 memcpy(p, bp->v, bp->l); 516 p += bp->l; 518 bp = (side == INITIATOR ? iph2->nonce_p : iph2->nonce); 519 memcpy(p, bp->v, bp->l); 520 p += bp->l; 845 vchar_t *buf = NULL, *res = NULL, *bp; local 969 vchar_t *buf = NULL, *res = NULL, *bp; local 1111 vchar_t *buf = NULL, *res = NULL, *bp; local 2125 u_char *bp; local 2169 u_char *bp; local 2358 u_char *bp; local 2479 vchar_t *buf = NULL, *bp; local 2915 vchar_t *buf = NULL, *bp; local [all...] |
/external/openssl/crypto/dsa/ |
dsa.h | 172 #define d2i_DSAparams_bio(bp,x) ASN1_d2i_bio_of(DSA,DSA_new,d2i_DSAparams,bp,x) 173 #define i2d_DSAparams_bio(bp,x) ASN1_i2d_bio_of_const(DSA,i2d_DSAparams,bp,x) 232 int DSAparams_print(BIO *bp, const DSA *x); 233 int DSA_print(BIO *bp, const DSA *x, int off); 237 int DSA_print_fp(FILE *bp, const DSA *x, int off);
|
dsa_ameth.c | 430 static int do_dsa_print(BIO *bp, const DSA *x, int off, int ptype) 471 if(!BIO_indent(bp,off,128)) 473 if (BIO_printf(bp,"%s: (%d bit)\n",ktype, BN_num_bits(x->p)) 477 if (!ASN1_bn_print(bp,"priv:",priv_key,m,off)) 479 if (!ASN1_bn_print(bp,"pub: ",pub_key,m,off)) 481 if (!ASN1_bn_print(bp,"P: ",x->p,m,off)) goto err; 482 if (!ASN1_bn_print(bp,"Q: ",x->q,m,off)) goto err; 483 if (!ASN1_bn_print(bp,"G: ",x->g,m,off)) goto err; 508 static int dsa_param_print(BIO *bp, const EVP_PKEY *pkey, int indent, 511 return do_dsa_print(bp, pkey->pkey.dsa, indent, 0) [all...] |
/external/openssl/crypto/ec/ |
ec_ameth.c | 427 static int do_EC_KEY_print(BIO *bp, const EC_KEY *x, int off, int ktype) 490 if (!BIO_indent(bp, off, 128)) 496 if (BIO_printf(bp, "%s: (%d bit)\n", ecstr, 499 if ((priv_key != NULL) && !ASN1_bn_print(bp, "priv:", priv_key, 502 if ((pub_key != NULL) && !ASN1_bn_print(bp, "pub: ", pub_key, 505 if (!ECPKParameters_print(bp, group, off)) 540 static int eckey_param_print(BIO *bp, const EVP_PKEY *pkey, int indent, 543 return do_EC_KEY_print(bp, pkey->pkey.ec, indent, 0); 546 static int eckey_pub_print(BIO *bp, const EVP_PKEY *pkey, int indent, 549 return do_EC_KEY_print(bp, pkey->pkey.ec, indent, 1) [all...] |
/external/chromium/net/third_party/nss/ssl/ |
ssl3gthr.c | 69 unsigned char *bp; local 89 bp = ((gs->state != GS_HEADER) ? lbp : gs->hdr) + gs->offset; 90 nb = ssl_DefRecv(ss, bp, gs->remainder, flags); 93 PRINT_BUF(60, (ss, "raw gather data:", bp, nb));
|
/external/dropbear/ |
scp.c | 457 char *bp, *host, *src, *suser, *thost, *tuser, *arg; local 524 bp = xmalloc(len); 525 (void) snprintf(bp, len, "%s -t %s", cmd, targ); 527 if (do_cmd(host, tuser, bp, &remin, 532 (void) xfree(bp); 543 char *bp, *host, *src, *suser; local 577 bp = xmalloc(len); 578 (void) snprintf(bp, len, "%s -f %s", cmd, src); 579 if (do_cmd(host, suser, bp, &remin, &remout, argc) < 0) { 580 (void) xfree(bp); 596 BUF *bp; local 829 BUF *bp; local [all...] |
/external/libpcap/ |
pcap-bpf.c | 145 register u_char *bp, *ep; local 223 bp = p->buffer; 225 bp = p->bp; 230 #define bhp ((struct bpf_hdr *)bp) 231 ep = bp + cc; 235 while (bp < ep) { 252 p->bp = bp; 253 p->cc = ep - bp; [all...] |
pcap-enet.c | 56 register u_char *bp; local 77 bp = buf.p; 79 ph = (struct packet_header *)bp; 92 bp += inc;
|
/external/openssl/crypto/bio/ |
bss_fd.c | 229 static int fd_puts(BIO *bp, const char *str) 234 ret=fd_write(bp,str,n); 238 static int fd_gets(BIO *bp, char *buf, int size) 244 while ( (ptr < end) && (fd_read(bp, ptr, 1) > 0) && (ptr[0] != '\n') )
|
bss_mem.c | 274 static int mem_gets(BIO *bp, char *buf, int size) 279 BUF_MEM *bm=(BUF_MEM *)bp->ptr; 281 BIO_clear_retry_flags(bp); 304 i=mem_read(bp,buf,i); 310 static int mem_puts(BIO *bp, const char *str) 315 ret=mem_write(bp,str,n);
|
/external/openssl/crypto/bn/asm/ |
ppc64-mont.pl | 87 $bp="r5"; 228 ld $t3,0($bp) ; bp[0] 236 mulld $t7,$a0,$t3 ; ap[0]*bp[0] 246 ; transfer bp[0] to FPU as 4x16-bit values 255 ; transfer (ap[0]*bp[0])*n0 to FPU as 4x16-bit values 568 ldx $t3,$bp,$i ; bp[i] 570 mulld $t7,$a0,$t3 ; ap[0]*bp[i] 573 add $t7,$t7,$t6 ; ap[0]*bp[i]+tp[0 [all...] |
/external/ppp/pppd/include/ |
pcap-int.h | 83 u_char *bp; member in struct:pcap
|
/external/stlport/src/ |
num_put_float.cpp | 486 static size_t __format_float_scientific( __iostring& buf, const char *bp, 497 buf += *bp++; 510 while (*bp != 0 && precision--) 511 buf += *bp++; 549 static size_t __format_float_fixed( __iostring &buf, const char *bp, 553 if ( sign && (decpt > -precision) && (*bp != 0) ) 561 buf += (nnn <= 0 || *bp == 0) ? '0' : *bp++; 573 while ( *bp != 0 && --precision >= 0 ) { 574 buf += (++decpt <= 0) ? '0' : *bp++ 860 char * bp; local [all...] |
/libcore/luni/src/test/java/org/apache/harmony/security/tests/java/security/ |
PermissionsTest.java | 64 Permission bp = new BasicPermission("jhb23jhg5") { local 74 up1, up2, ap, bp, sp0, sp1, sp2, sp3, }; 105 Permission bp = new BasicPermission("jhb23jhg5") { local 133 ap, bp, sp, up1, up2 };
|
/ndk/sources/android/stlport/src/ |
num_put_float.cpp | 486 static size_t __format_float_scientific( __iostring& buf, const char *bp, 497 buf += *bp++; 510 while (*bp != 0 && precision--) 511 buf += *bp++; 549 static size_t __format_float_fixed( __iostring &buf, const char *bp, 553 if ( sign && (decpt > -precision) && (*bp != 0) ) 561 buf += (nnn <= 0 || *bp == 0) ? '0' : *bp++; 573 while ( *bp != 0 && --precision >= 0 ) { 574 buf += (++decpt <= 0) ? '0' : *bp++ 860 char * bp; local [all...] |
/external/tcpdump/ |
print-tftp.c | 75 tftp_print(register const u_char *bp, u_int length) 83 tp = (const struct tftphdr *)bp;
|
print-timed.c | 47 timed_print(register const u_char *bp) 50 struct tsp *tsp = (struct tsp *)bp;
|
print-dccp.c | 163 static void dccp_print_ack_no(const u_char *bp) 165 const struct dccp_hdr *dh = (const struct dccp_hdr *)bp; 167 (struct dccp_hdr_ack_bits *)(bp + dccp_basic_hdr_len(dh)); 212 * @bp - beginning of dccp packet 216 void dccp_print(const u_char *bp, const u_char *data2, u_int len) 228 dh = (const struct dccp_hdr *)bp; 313 (struct dccp_hdr_request *)(bp + dccp_basic_hdr_len(dh)); 322 (struct dccp_hdr_response *)(bp + dccp_basic_hdr_len(dh)); 352 (struct dccp_hdr_reset *)(bp + dccp_basic_hdr_len(dh)); 374 dccp_print_ack_no(bp); [all...] |
print-tcp.c | 191 tcp_print(register const u_char *bp, register u_int length, 206 tp = (struct tcphdr *)bp; 597 bp + TH_OFF(tp) * 4, length, cp)) { 652 bp += TH_OFF(tp) * 4; 655 print_tcp_rst_data(bp, length); 659 telnet_print(bp, length); 661 bgp_print(bp, length); 663 pptp_print(bp); 666 nbt_tcp_print(bp, length); 669 beep_print(bp, length) [all...] |
print-ip.c | 534 const u_char *bp, 541 ipd.cp = bp; 556 const u_char *bp, 566 ipds->ip = (const struct ip *)bp; 612 ipend = bp + ipds->len; 708 ipN_print(register const u_char *bp, register u_int length) 712 ip = (struct ip *)bp; 720 ip_print (gndo, bp, length); 724 ip6_print (bp, length);
|
/external/dhcpcd/ |
showlease.c | 195 uint8_t *bp = NULL; local 207 if (!bp) 208 bp = dhcp_opt_buffer; 209 memcpy(bp, op, ol); 210 bp += ol; 250 if (bp) { 251 memcpy(bp, op, ol);
|
/external/libxml2/ |
nanohttp.c | 609 char *bp = buf; local 612 while (bp - buf < 4095) { 615 if (bp == buf) 618 *bp = 0; 625 *bp = *ctxt->inrptr++; 626 if (*bp == '\n') { 627 *bp = 0; 630 if (*bp != '\r') 631 bp++; 1274 char *bp, *p local [all...] |