/third_party/openssl/test/ |
D | x509aux.c | 46 long enclen; in test_certs() local 64 enclen = i2d(cert, NULL); in test_certs() 65 if (len != enclen) { in test_certs() 67 enclen, name, len); in test_certs() 76 enclen = i2d(cert, &bufp); in test_certs() 77 if (len != enclen) { in test_certs() 79 enclen, name, len); in test_certs() 83 enclen = (long) (bufp - buf); in test_certs() 84 if (enclen != len) { in test_certs() 95 reuse = d2i(NULL, &p, enclen); in test_certs() [all …]
|
/third_party/node/deps/cares/src/lib/ |
D | ares_expand_name.c | 118 int alen, char **s, long *enclen, in ares__expand_name_validated() argument 147 *enclen = 2L; in ares__expand_name_validated() 149 *enclen = 1L; /* the caller should move one byte to get past this */ in ares__expand_name_validated() 162 *enclen = aresx_uztosl(p + 2U - encoded); in ares__expand_name_validated() 200 *enclen = aresx_uztosl(p + 1U - encoded); in ares__expand_name_validated() 213 int alen, char **s, long *enclen) in ares_expand_name() argument 215 return ares__expand_name_validated(encoded, abuf, alen, s, enclen, 0); in ares_expand_name() 302 char **s, long *enclen, int is_hostname) in ares__expand_name_for_response() argument 304 int status = ares__expand_name_validated(encoded, abuf, alen, s, enclen, in ares__expand_name_for_response()
|
D | ares_expand_string.c | 37 long *enclen) in ares_expand_string() argument 63 *enclen = (long)(elen.sig+1); in ares_expand_string()
|
D | ares_private.h | 366 int alen, char **s, long *enclen, 370 char **s, long *enclen, int is_hostname);
|
/third_party/nghttp2/lib/ |
D | nghttp2_hd.c | 976 size_t enclen; in emit_string() local 979 enclen = nghttp2_hd_huff_encode_count(str, len); in emit_string() 981 if (enclen < len) { in emit_string() 984 enclen = len; in emit_string() 987 blocklen = count_encoded_length(enclen, 7); in emit_string() 991 (int)len, (const char *)str, len, huffman, enclen); in emit_string() 999 encode_length(bufp, enclen, 7); in emit_string() 1009 assert(enclen == len); in emit_string()
|
/third_party/node/deps/nghttp2/lib/ |
D | nghttp2_hd.c | 971 size_t enclen; in emit_string() local 974 enclen = nghttp2_hd_huff_encode_count(str, len); in emit_string() 976 if (enclen < len) { in emit_string() 979 enclen = len; in emit_string() 982 blocklen = count_encoded_length(enclen, 7); in emit_string() 986 (int)len, (const char *)str, len, huffman, enclen); in emit_string() 994 encode_length(bufp, enclen, 7); in emit_string() 1004 assert(enclen == len); in emit_string()
|
/third_party/node/deps/cares/include/ |
D | ares.h | 500 long *enclen); 506 long *enclen);
|
/third_party/openssl/ssl/statem/ |
D | statem_clnt.c | 2829 size_t enclen; in tls_construct_cke_rsa() local 2869 || EVP_PKEY_encrypt(pctx, NULL, &enclen, pms, pmslen) <= 0) { in tls_construct_cke_rsa() 2873 if (!WPACKET_allocate_bytes(pkt, enclen, &encdata) in tls_construct_cke_rsa() 2874 || EVP_PKEY_encrypt(pctx, encdata, &enclen, pms, pmslen) <= 0) { in tls_construct_cke_rsa() 2888 if (!ssl_log_rsa_client_key_exchange(s, encdata, enclen, pms, pmslen)) { in tls_construct_cke_rsa()
|