Home
last modified time | relevance | path

Searched refs:outlen (Results 26 - 50 of 418) sorted by relevance

12345678910>>...17

/third_party/node/deps/openssl/openssl/crypto/pkcs12/
H A Dp12_decr.c26 int outlen, i; in PKCS12_pbe_crypt_ex() local
82 outlen = i; in PKCS12_pbe_crypt_ex()
91 outlen += i; in PKCS12_pbe_crypt_ex()
96 (int)mac_len, out+outlen) < 0) { in PKCS12_pbe_crypt_ex()
102 outlen += mac_len; in PKCS12_pbe_crypt_ex()
106 *datalen = outlen; in PKCS12_pbe_crypt_ex()
138 int outlen = 0; in PKCS12_item_decrypt_d2i_ex() local
141 &out, &outlen, 0, libctx, propq)) in PKCS12_item_decrypt_d2i_ex()
146 BIO_dump(trc_out, out, outlen); in PKCS12_item_decrypt_d2i_ex()
149 ret = ASN1_item_d2i(NULL, &p, outlen, i in PKCS12_item_decrypt_d2i_ex()
[all...]
/third_party/openssl/crypto/pkcs12/
H A Dp12_decr.c26 int outlen, i; in PKCS12_pbe_crypt_ex() local
82 outlen = i; in PKCS12_pbe_crypt_ex()
91 outlen += i; in PKCS12_pbe_crypt_ex()
96 (int)mac_len, out+outlen) < 0) { in PKCS12_pbe_crypt_ex()
102 outlen += mac_len; in PKCS12_pbe_crypt_ex()
106 *datalen = outlen; in PKCS12_pbe_crypt_ex()
138 int outlen = 0; in PKCS12_item_decrypt_d2i_ex() local
141 &out, &outlen, 0, libctx, propq)) in PKCS12_item_decrypt_d2i_ex()
146 BIO_dump(trc_out, out, outlen); in PKCS12_item_decrypt_d2i_ex()
149 ret = ASN1_item_d2i(NULL, &p, outlen, i in PKCS12_item_decrypt_d2i_ex()
[all...]
/third_party/openssl/demos/cipher/
H A Daesgcm.c75 int outlen, tmplen; in aes_gcm_encrypt() local
110 if (!EVP_EncryptUpdate(ctx, NULL, &outlen, gcm_aad, sizeof(gcm_aad))) in aes_gcm_encrypt()
114 if (!EVP_EncryptUpdate(ctx, outbuf, &outlen, gcm_pt, sizeof(gcm_pt))) in aes_gcm_encrypt()
119 BIO_dump_fp(stdout, outbuf, outlen); in aes_gcm_encrypt()
152 int outlen, rv; in aes_gcm_decrypt() local
182 if (!EVP_DecryptUpdate(ctx, NULL, &outlen, gcm_aad, sizeof(gcm_aad))) in aes_gcm_decrypt()
186 if (!EVP_DecryptUpdate(ctx, outbuf, &outlen, gcm_ct, sizeof(gcm_ct))) in aes_gcm_decrypt()
191 BIO_dump_fp(stdout, outbuf, outlen); in aes_gcm_decrypt()
201 rv = EVP_DecryptFinal_ex(ctx, outbuf, &outlen); in aes_gcm_decrypt()
H A Daesccm.c76 int outlen, tmplen; in aes_ccm_encrypt() local
116 if (!EVP_EncryptUpdate(ctx, NULL, &outlen, NULL, sizeof(ccm_pt))) in aes_ccm_encrypt()
120 if (!EVP_EncryptUpdate(ctx, NULL, &outlen, ccm_adata, sizeof(ccm_adata))) in aes_ccm_encrypt()
124 if (!EVP_EncryptUpdate(ctx, outbuf, &outlen, ccm_pt, sizeof(ccm_pt))) in aes_ccm_encrypt()
129 BIO_dump_fp(stdout, outbuf, outlen); in aes_ccm_encrypt()
163 int outlen, rv; in aes_ccm_decrypt() local
200 if (!EVP_DecryptUpdate(ctx, NULL, &outlen, NULL, sizeof(ccm_ct))) in aes_ccm_decrypt()
204 if (!EVP_DecryptUpdate(ctx, NULL, &outlen, ccm_adata, sizeof(ccm_adata))) in aes_ccm_decrypt()
208 rv = EVP_DecryptUpdate(ctx, outbuf, &outlen, ccm_ct, sizeof(ccm_ct)); in aes_ccm_decrypt()
213 BIO_dump_fp(stdout, outbuf, outlen); in aes_ccm_decrypt()
[all...]
/third_party/node/deps/base64/base64/test/
H A Dtest_base64.c10 static size_t outlen; variable
18 base64_encode(src, srclen, out, &outlen, flags); in assert_enc()
20 if (outlen != dstlen) { in assert_enc()
23 (unsigned long)outlen in assert_enc()
27 if (strncmp(dst, out, outlen) != 0) { in assert_enc()
28 out[outlen] = '\0'; in assert_enc()
41 if (!base64_decode(src, srclen, out, &outlen, flags)) { in assert_dec()
45 if (outlen != dstlen) { in assert_dec()
49 (unsigned long)outlen in assert_dec()
53 if (strncmp(dst, out, outlen) ! in assert_dec()
[all...]
/third_party/vk-gl-cts/modules/gles31/functional/
H A Des31fDebugTests.cpp1696 int outlen = -1;
1764 gl.getObjectLabel(m_identifier, object, sizeof(buffer), &outlen, buffer);
1766 if (outlen == 0)
1839 int outlen = -1;
1848 gl.getObjectPtrLabel(sync, sizeof(buffer), &outlen, buffer);
1850 if (outlen == 0)
1887 int outlen = -1;
1903 outlen = -1;
1904 gl.getObjectLabel(GL_SHADER, shader, sizeof(buffer), &outlen, buffer);
1907 if (outlen !
[all...]
/third_party/wpa_supplicant/wpa_supplicant-2.9/src/crypto/
H A Dcrypto_internal-rsa.c74 u8 *out, size_t *outlen) in crypto_public_key_encrypt_pkcs1_v15()
77 0, in, inlen, out, outlen); in crypto_public_key_encrypt_pkcs1_v15()
83 u8 *out, size_t *outlen) in crypto_private_key_decrypt_pkcs1_v15()
86 in, inlen, out, outlen); in crypto_private_key_decrypt_pkcs1_v15()
92 u8 *out, size_t *outlen) in crypto_private_key_sign_pkcs1()
95 1, in, inlen, out, outlen); in crypto_private_key_sign_pkcs1()
72 crypto_public_key_encrypt_pkcs1_v15(struct crypto_public_key *key, const u8 *in, size_t inlen, u8 *out, size_t *outlen) crypto_public_key_encrypt_pkcs1_v15() argument
81 crypto_private_key_decrypt_pkcs1_v15(struct crypto_private_key *key, const u8 *in, size_t inlen, u8 *out, size_t *outlen) crypto_private_key_decrypt_pkcs1_v15() argument
90 crypto_private_key_sign_pkcs1(struct crypto_private_key *key, const u8 *in, size_t inlen, u8 *out, size_t *outlen) crypto_private_key_sign_pkcs1() argument
H A Dsha256-kdf.c24 * @outlen: Number of bytes of key to generate
34 u8 *out, size_t outlen) in hmac_sha256_kdf()
61 clen = outlen - pos; in hmac_sha256_kdf()
67 if (pos == outlen) in hmac_sha256_kdf()
71 os_memset(out, 0, outlen); in hmac_sha256_kdf()
79 os_memset(out, 0, outlen); in hmac_sha256_kdf()
32 hmac_sha256_kdf(const u8 *secret, size_t secret_len, const char *label, const u8 *seed, size_t seed_len, u8 *out, size_t outlen) hmac_sha256_kdf() argument
H A Dsha384-kdf.c24 * @outlen: Number of bytes of key to generate
34 u8 *out, size_t outlen) in hmac_sha384_kdf()
61 clen = outlen - pos; in hmac_sha384_kdf()
67 if (pos == outlen) in hmac_sha384_kdf()
71 os_memset(out, 0, outlen); in hmac_sha384_kdf()
79 os_memset(out, 0, outlen); in hmac_sha384_kdf()
32 hmac_sha384_kdf(const u8 *secret, size_t secret_len, const char *label, const u8 *seed, size_t seed_len, u8 *out, size_t outlen) hmac_sha384_kdf() argument
H A Dsha512-kdf.c24 * @outlen: Number of bytes of key to generate
34 u8 *out, size_t outlen) in hmac_sha512_kdf()
61 clen = outlen - pos; in hmac_sha512_kdf()
67 if (pos == outlen) in hmac_sha512_kdf()
71 os_memset(out, 0, outlen); in hmac_sha512_kdf()
79 os_memset(out, 0, outlen); in hmac_sha512_kdf()
32 hmac_sha512_kdf(const u8 *secret, size_t secret_len, const char *label, const u8 *seed, size_t seed_len, u8 *out, size_t outlen) hmac_sha512_kdf() argument
/third_party/wpa_supplicant/wpa_supplicant-2.9_standard/src/crypto/
H A Dcrypto_internal-rsa.c74 u8 *out, size_t *outlen) in crypto_public_key_encrypt_pkcs1_v15()
77 0, in, inlen, out, outlen); in crypto_public_key_encrypt_pkcs1_v15()
83 u8 *out, size_t *outlen) in crypto_private_key_decrypt_pkcs1_v15()
86 in, inlen, out, outlen); in crypto_private_key_decrypt_pkcs1_v15()
92 u8 *out, size_t *outlen) in crypto_private_key_sign_pkcs1()
95 1, in, inlen, out, outlen); in crypto_private_key_sign_pkcs1()
72 crypto_public_key_encrypt_pkcs1_v15(struct crypto_public_key *key, const u8 *in, size_t inlen, u8 *out, size_t *outlen) crypto_public_key_encrypt_pkcs1_v15() argument
81 crypto_private_key_decrypt_pkcs1_v15(struct crypto_private_key *key, const u8 *in, size_t inlen, u8 *out, size_t *outlen) crypto_private_key_decrypt_pkcs1_v15() argument
90 crypto_private_key_sign_pkcs1(struct crypto_private_key *key, const u8 *in, size_t inlen, u8 *out, size_t *outlen) crypto_private_key_sign_pkcs1() argument
H A Dsha256-kdf.c24 * @outlen: Number of bytes of key to generate
34 u8 *out, size_t outlen) in hmac_sha256_kdf()
61 clen = outlen - pos; in hmac_sha256_kdf()
67 if (pos == outlen) in hmac_sha256_kdf()
71 os_memset(out, 0, outlen); in hmac_sha256_kdf()
79 os_memset(out, 0, outlen); in hmac_sha256_kdf()
32 hmac_sha256_kdf(const u8 *secret, size_t secret_len, const char *label, const u8 *seed, size_t seed_len, u8 *out, size_t outlen) hmac_sha256_kdf() argument
H A Dsha384-kdf.c24 * @outlen: Number of bytes of key to generate
34 u8 *out, size_t outlen) in hmac_sha384_kdf()
61 clen = outlen - pos; in hmac_sha384_kdf()
67 if (pos == outlen) in hmac_sha384_kdf()
71 os_memset(out, 0, outlen); in hmac_sha384_kdf()
79 os_memset(out, 0, outlen); in hmac_sha384_kdf()
32 hmac_sha384_kdf(const u8 *secret, size_t secret_len, const char *label, const u8 *seed, size_t seed_len, u8 *out, size_t outlen) hmac_sha384_kdf() argument
H A Dsha512-kdf.c24 * @outlen: Number of bytes of key to generate
34 u8 *out, size_t outlen) in hmac_sha512_kdf()
61 clen = outlen - pos; in hmac_sha512_kdf()
67 if (pos == outlen) in hmac_sha512_kdf()
71 os_memset(out, 0, outlen); in hmac_sha512_kdf()
79 os_memset(out, 0, outlen); in hmac_sha512_kdf()
32 hmac_sha512_kdf(const u8 *secret, size_t secret_len, const char *label, const u8 *seed, size_t seed_len, u8 *out, size_t outlen) hmac_sha512_kdf() argument
/third_party/node/deps/openssl/openssl/providers/implementations/rands/
H A Ddrbg_ctr.c103 int i, outlen = AES_BLOCK_SIZE; in ctr_BCC_block() local
108 if (!EVP_CipherUpdate(ctr->ctx_df, out, &outlen, out, len) in ctr_BCC_block()
109 || outlen != len) in ctr_BCC_block()
204 int outlen = AES_BLOCK_SIZE; in ctr_df() local
237 if (!EVP_CipherUpdate(ctr->ctx_ecb, ctr->KX, &outlen, ctr->KX + ctr->keylen, in ctr_df()
239 || outlen != AES_BLOCK_SIZE) in ctr_df()
241 if (!EVP_CipherUpdate(ctr->ctx_ecb, ctr->KX + 16, &outlen, ctr->KX, in ctr_df()
243 || outlen != AES_BLOCK_SIZE) in ctr_df()
246 if (!EVP_CipherUpdate(ctr->ctx_ecb, ctr->KX + 32, &outlen, in ctr_df()
248 || outlen ! in ctr_df()
265 int outlen = AES_BLOCK_SIZE; ctr_update() local
377 drbg_ctr_generate(PROV_DRBG *drbg, unsigned char *out, size_t outlen, const unsigned char *adin, size_t adinlen) drbg_ctr_generate() argument
451 drbg_ctr_generate_wrapper(void *vdrbg, unsigned char *out, size_t outlen, unsigned int strength, int prediction_resistance, const unsigned char *adin, size_t adin_len) drbg_ctr_generate_wrapper() argument
[all...]
H A Ddrbg_hash.c79 size_t outlen = drbg->seedlen; in hash_df() local
80 size_t num_bits_returned = outlen * 8; in hash_df()
82 * No need to check outlen size here, as the standard only ever needs in hash_df()
110 if (outlen < hash->blocklen) { in hash_df()
113 memcpy(out, vtmp, outlen); in hash_df()
120 outlen -= hash->blocklen; in hash_df()
121 if (outlen == 0) in hash_df()
193 * outlen is the requested number of bytes.
203 * out = Leftmost(W, outlen)
207 static int hash_gen(PROV_DRBG *drbg, unsigned char *out, size_t outlen) in hash_gen() argument
323 drbg_hash_generate(PROV_DRBG *drbg, unsigned char *out, size_t outlen, const unsigned char *adin, size_t adin_len) drbg_hash_generate() argument
352 drbg_hash_generate_wrapper(void *vdrbg, unsigned char *out, size_t outlen, unsigned int strength, int prediction_resistance, const unsigned char *adin, size_t adin_len) drbg_hash_generate_wrapper() argument
[all...]
/third_party/openssl/providers/implementations/rands/
H A Ddrbg_ctr.c103 int i, outlen = AES_BLOCK_SIZE; in ctr_BCC_block() local
108 if (!EVP_CipherUpdate(ctr->ctx_df, out, &outlen, out, len) in ctr_BCC_block()
109 || outlen != len) in ctr_BCC_block()
204 int outlen = AES_BLOCK_SIZE; in ctr_df() local
237 if (!EVP_CipherUpdate(ctr->ctx_ecb, ctr->KX, &outlen, ctr->KX + ctr->keylen, in ctr_df()
239 || outlen != AES_BLOCK_SIZE) in ctr_df()
241 if (!EVP_CipherUpdate(ctr->ctx_ecb, ctr->KX + 16, &outlen, ctr->KX, in ctr_df()
243 || outlen != AES_BLOCK_SIZE) in ctr_df()
246 if (!EVP_CipherUpdate(ctr->ctx_ecb, ctr->KX + 32, &outlen, in ctr_df()
248 || outlen ! in ctr_df()
265 int outlen = AES_BLOCK_SIZE; ctr_update() local
377 drbg_ctr_generate(PROV_DRBG *drbg, unsigned char *out, size_t outlen, const unsigned char *adin, size_t adinlen) drbg_ctr_generate() argument
451 drbg_ctr_generate_wrapper(void *vdrbg, unsigned char *out, size_t outlen, unsigned int strength, int prediction_resistance, const unsigned char *adin, size_t adin_len) drbg_ctr_generate_wrapper() argument
[all...]
H A Ddrbg_hash.c79 size_t outlen = drbg->seedlen; in hash_df() local
80 size_t num_bits_returned = outlen * 8; in hash_df()
82 * No need to check outlen size here, as the standard only ever needs in hash_df()
110 if (outlen < hash->blocklen) { in hash_df()
113 memcpy(out, vtmp, outlen); in hash_df()
120 outlen -= hash->blocklen; in hash_df()
121 if (outlen == 0) in hash_df()
193 * outlen is the requested number of bytes.
203 * out = Leftmost(W, outlen)
207 static int hash_gen(PROV_DRBG *drbg, unsigned char *out, size_t outlen) in hash_gen() argument
323 drbg_hash_generate(PROV_DRBG *drbg, unsigned char *out, size_t outlen, const unsigned char *adin, size_t adin_len) drbg_hash_generate() argument
352 drbg_hash_generate_wrapper(void *vdrbg, unsigned char *out, size_t outlen, unsigned int strength, int prediction_resistance, const unsigned char *adin, size_t adin_len) drbg_hash_generate_wrapper() argument
[all...]
/third_party/node/deps/openssl/openssl/crypto/ct/
H A Dct_b64.c27 int outlen, i; in ct_base64_decode() local
35 outlen = (inlen / 4) * 3; in ct_base64_decode()
36 outbuf = OPENSSL_malloc(outlen); in ct_base64_decode()
42 outlen = EVP_DecodeBlock(outbuf, (unsigned char *)in, inlen); in ct_base64_decode()
43 if (outlen < 0) { in ct_base64_decode()
48 /* Subtract padding bytes from |outlen|. Any more than 2 is malformed. */ in ct_base64_decode()
51 --outlen; in ct_base64_decode()
57 return outlen; in ct_base64_decode()
/third_party/openssl/crypto/ct/
H A Dct_b64.c27 int outlen, i; in ct_base64_decode() local
35 outlen = (inlen / 4) * 3; in ct_base64_decode()
36 outbuf = OPENSSL_malloc(outlen); in ct_base64_decode()
42 outlen = EVP_DecodeBlock(outbuf, (unsigned char *)in, inlen); in ct_base64_decode()
43 if (outlen < 0) { in ct_base64_decode()
48 /* Subtract padding bytes from |outlen|. Any more than 2 is malformed. */ in ct_base64_decode()
51 --outlen; in ct_base64_decode()
57 return outlen; in ct_base64_decode()
/third_party/node/deps/base64/base64/include/
H A Dlibbase64.h66 * to *out without trailing zero. Output length in bytes is written to *outlen.
73 , size_t *outlen
87 * the number of new bytes written into `outlen` (which is set to zero when the
94 , size_t *outlen
98 * Adds the required end-of-stream markers if appropriate. `outlen` is modified
104 , size_t *outlen
108 * to *out without trailing zero. Output length in bytes is written to *outlen.
115 , size_t *outlen
129 * the number of new bytes written into `outlen` (which is set to zero when the
139 , size_t *outlen
[all...]
/third_party/musl/libc-test/src/functional/
H A Diconv_open.c13 size_t outlen; in main() local
29 outlen = 0; in main()
30 r = iconv(cd, &inbuf, &inlen, &outbuf, &outlen); in main()
37 outlen = sizeof buf; in main()
38 r = iconv(cd, &inbuf, &inlen, &outbuf, &outlen); in main()
/third_party/openssl/test/
H A Dpunycode_test.c169 size_t outlen; in test_a2ulabel() local
176 if (!TEST_int_eq(ossl_a2ulabel("xn--a.b.c", NULL, &outlen), 0) in test_a2ulabel()
177 || !TEST_size_t_eq(outlen, 7) in test_a2ulabel()
178 || !TEST_int_eq(ossl_a2ulabel("xn--a.b.c", out, &outlen), 1)) in test_a2ulabel()
181 outlen = 1; in test_a2ulabel()
182 if (!TEST_int_eq(ossl_a2ulabel("xn--a.b.c", out, &outlen), 0) in test_a2ulabel()
183 || !TEST_size_t_eq(outlen, 7) in test_a2ulabel()
184 || !TEST_int_eq(ossl_a2ulabel("xn--a.b.c", out, &outlen), 1) in test_a2ulabel()
188 outlen = 6; in test_a2ulabel()
189 if (!TEST_int_eq(ossl_a2ulabel("xn--a.b.c", out, &outlen), in test_a2ulabel()
[all...]
/third_party/node/deps/base64/base64/lib/
H A Dcodecs.h13 , size_t *outlen \
22 , size_t *outlen \
47 *outlen = 0;
55 UNUSED(outlen); \
/third_party/node/deps/ngtcp2/ngtcp2/lib/
H A Dngtcp2_pkt.c384 ngtcp2_ssize ngtcp2_pkt_encode_hd_long(uint8_t *out, size_t outlen, in ngtcp2_pkt_encode_hd_long() argument
399 if (outlen < len) { in ngtcp2_pkt_encode_hd_long()
441 ngtcp2_ssize ngtcp2_pkt_encode_hd_short(uint8_t *out, size_t outlen, in ngtcp2_pkt_encode_hd_short() argument
446 if (outlen < len) { in ngtcp2_pkt_encode_hd_short()
1507 ngtcp2_ssize ngtcp2_pkt_encode_frame(uint8_t *out, size_t outlen, in ngtcp2_pkt_encode_frame() argument
1511 return ngtcp2_pkt_encode_stream_frame(out, outlen, &fr->stream); in ngtcp2_pkt_encode_frame()
1514 return ngtcp2_pkt_encode_ack_frame(out, outlen, &fr->ack); in ngtcp2_pkt_encode_frame()
1516 return ngtcp2_pkt_encode_padding_frame(out, outlen, &fr->padding); in ngtcp2_pkt_encode_frame()
1518 return ngtcp2_pkt_encode_reset_stream_frame(out, outlen, &fr->reset_stream); in ngtcp2_pkt_encode_frame()
1521 return ngtcp2_pkt_encode_connection_close_frame(out, outlen, in ngtcp2_pkt_encode_frame()
1571 ngtcp2_pkt_encode_stream_frame(uint8_t *out, size_t outlen, ngtcp2_stream *fr) ngtcp2_pkt_encode_stream_frame() argument
1626 ngtcp2_pkt_encode_ack_frame(uint8_t *out, size_t outlen, ngtcp2_ack *fr) ngtcp2_pkt_encode_ack_frame() argument
1677 ngtcp2_pkt_encode_padding_frame(uint8_t *out, size_t outlen, const ngtcp2_padding *fr) ngtcp2_pkt_encode_padding_frame() argument
1689 ngtcp2_pkt_encode_reset_stream_frame(uint8_t *out, size_t outlen, const ngtcp2_reset_stream *fr) ngtcp2_pkt_encode_reset_stream_frame() argument
1713 ngtcp2_pkt_encode_connection_close_frame(uint8_t *out, size_t outlen, const ngtcp2_connection_close *fr) ngtcp2_pkt_encode_connection_close_frame() argument
1743 ngtcp2_pkt_encode_max_data_frame(uint8_t *out, size_t outlen, const ngtcp2_max_data *fr) ngtcp2_pkt_encode_max_data_frame() argument
1763 ngtcp2_pkt_encode_max_stream_data_frame(uint8_t *out, size_t outlen, const ngtcp2_max_stream_data *fr) ngtcp2_pkt_encode_max_stream_data_frame() argument
1784 ngtcp2_pkt_encode_max_streams_frame(uint8_t *out, size_t outlen, const ngtcp2_max_streams *fr) ngtcp2_pkt_encode_max_streams_frame() argument
1803 ngtcp2_pkt_encode_ping_frame(uint8_t *out, size_t outlen, const ngtcp2_ping *fr) ngtcp2_pkt_encode_ping_frame() argument
1817 ngtcp2_pkt_encode_data_blocked_frame(uint8_t *out, size_t outlen, const ngtcp2_data_blocked *fr) ngtcp2_pkt_encode_data_blocked_frame() argument
1836 ngtcp2_pkt_encode_stream_data_blocked_frame( uint8_t *out, size_t outlen, const ngtcp2_stream_data_blocked *fr) ngtcp2_pkt_encode_stream_data_blocked_frame() argument
1858 ngtcp2_pkt_encode_streams_blocked_frame(uint8_t *out, size_t outlen, const ngtcp2_streams_blocked *fr) ngtcp2_pkt_encode_streams_blocked_frame() argument
1878 ngtcp2_pkt_encode_new_connection_id_frame(uint8_t *out, size_t outlen, const ngtcp2_new_connection_id *fr) ngtcp2_pkt_encode_new_connection_id_frame() argument
1905 ngtcp2_pkt_encode_stop_sending_frame(uint8_t *out, size_t outlen, const ngtcp2_stop_sending *fr) ngtcp2_pkt_encode_stop_sending_frame() argument
1927 ngtcp2_pkt_encode_path_challenge_frame(uint8_t *out, size_t outlen, const ngtcp2_path_challenge *fr) ngtcp2_pkt_encode_path_challenge_frame() argument
1947 ngtcp2_pkt_encode_path_response_frame(uint8_t *out, size_t outlen, const ngtcp2_path_response *fr) ngtcp2_pkt_encode_path_response_frame() argument
1966 ngtcp2_pkt_encode_crypto_frame(uint8_t *out, size_t outlen, const ngtcp2_crypto *fr) ngtcp2_pkt_encode_crypto_frame() argument
2003 ngtcp2_pkt_encode_new_token_frame(uint8_t *out, size_t outlen, const ngtcp2_new_token *fr) ngtcp2_pkt_encode_new_token_frame() argument
2026 ngtcp2_pkt_encode_retire_connection_id_frame( uint8_t *out, size_t outlen, const ngtcp2_retire_connection_id *fr) ngtcp2_pkt_encode_retire_connection_id_frame() argument
2047 ngtcp2_pkt_encode_handshake_done_frame(uint8_t *out, size_t outlen, const ngtcp2_handshake_done *fr) ngtcp2_pkt_encode_handshake_done_frame() argument
2060 ngtcp2_pkt_encode_datagram_frame(uint8_t *out, size_t outlen, const ngtcp2_datagram *fr) ngtcp2_pkt_encode_datagram_frame() argument
[all...]

Completed in 14 milliseconds

12345678910>>...17