Searched refs:chunks (Results 1 – 21 of 21) sorted by relevance
/openssl/ssl/quic/ |
H A D | quic_fifd.c | 84 if (chunks[i].end >= chunks[i].start) in on_acked() 87 chunks[i].start, chunks[i].end); in on_acked() 89 if (chunks[i].has_fin && chunks[i].stream_id != UINT64_MAX) in on_acked() 92 if (chunks[i].has_stop_sending && chunks[i].stream_id != UINT64_MAX) in on_acked() 97 if (chunks[i].has_reset_stream && chunks[i].stream_id != UINT64_MAX) in on_acked() 145 if (chunks[i].end >= chunks[i].start) { in on_lost() 153 chunks[i].start, chunks[i].end); in on_lost() 157 if (chunks[i].has_fin && chunks[i].stream_id != UINT64_MAX) { in on_lost() 162 if (chunks[i].has_stop_sending && chunks[i].stream_id != UINT64_MAX) in on_lost() 167 if (chunks[i].has_reset_stream && chunks[i].stream_id != UINT64_MAX) in on_lost() [all …]
|
H A D | quic_txpim.c | 18 QUIC_TXPIM_CHUNK *chunks; member 51 OPENSSL_free(n->chunks); in free_list() 172 new_chunk = OPENSSL_realloc(ex->chunks, in ossl_quic_txpim_pkt_append_chunk() 177 ex->chunks = new_chunk; in ossl_quic_txpim_pkt_append_chunk() 181 ex->chunks[ex->num_chunks++] = *chunk; in ossl_quic_txpim_pkt_append_chunk() 212 qsort(ex->chunks, ex->num_chunks, sizeof(QUIC_TXPIM_CHUNK), compare); in ossl_quic_txpim_pkt_get_chunks() 216 return ex->chunks; in ossl_quic_txpim_pkt_get_chunks()
|
H A D | quic_txp.c | 2195 struct chunk_info chunks[2] = {0}; in txp_generate_stream_frames() local 2224 if (i == 0 && !chunks[i].valid) { in txp_generate_stream_frames() 2229 chunks[i].shdr.stream_id = id; in txp_generate_stream_frames() 2235 if (!chunks[i % 2].valid) { in txp_generate_stream_frames() 2255 shdr = &chunks[i % 2].shdr; in txp_generate_stream_frames() 2256 orig_len = chunks[i % 2].orig_len; in txp_generate_stream_frames() 2289 = (next_stream != NULL || chunks[(i + 1) % 2].valid); in txp_generate_stream_frames() 2318 chunks[(i + 1) % 2].valid = 0; in txp_generate_stream_frames() 2355 for (j = 0; j < chunks[i % 2].num_stream_iovec; ++j) in txp_generate_stream_frames() 2356 tx_helper_append_iovec(h, chunks[i % 2].iov[j].buf, in txp_generate_stream_frames() [all …]
|
/openssl/test/ |
H A D | quic_txpim_test.c | 20 QUIC_TXPIM_CHUNK chunks[3]; in test_txpim() local 33 for (j = 0; j < OSSL_NELEM(chunks); ++j) { in test_txpim() 34 chunks[j].stream_id = 100 - j; in test_txpim() 35 chunks[j].start = 1000 * i + j * 10; in test_txpim() 36 chunks[j].end = chunks[j].start + 5; in test_txpim() 38 if (!TEST_true(ossl_quic_txpim_pkt_append_chunk(pkts[i], chunks + j))) in test_txpim() 43 OSSL_NELEM(chunks))) in test_txpim()
|
H A D | hmactest.c | 298 int chunks; member 410 for (i = 0; i < test_chunks[idx].chunks; i++) { in test_hmac_chunks()
|
H A D | README.ssltest.md | 50 64kB chunks (but limited by MaxFragmentSize and available parallelization, see
|
/openssl/doc/man3/ |
H A D | RIPEMD160_Init.pod | 42 RIPEMD160_Update() can be called repeatedly with chunks of the message to
|
H A D | MDC2_Init.pod | 43 MDC2_Update() can be called repeatedly with chunks of the message to
|
H A D | MD5.pod | 66 MD2_Update() can be called repeatedly with chunks of the message to
|
H A D | SHA256_Init.pod | 68 SHA1_Update() can be called repeatedly with chunks of the message to
|
H A D | BF_encrypt.pod | 79 encrypts or decrypts the 64 bits chunks of B<in> using the key B<schedule>,
|
H A D | HMAC.pod | 110 HMAC_Update() can be called repeatedly with chunks of the message to
|
H A D | BIO_s_mem.pod | 116 chunks intertwined with writes the operation can be very slow. Adding
|
H A D | EVP_EncodeInit.pod | 104 This function will attempt to decode as much data as possible in chunks of up
|
/openssl/crypto/bn/ |
H A D | README.pod | 77 BN_ULONG *d; /* Pointer to an array of 'BN_BITS2' bit chunks. */
|
/openssl/doc/designs/quic-design/ |
H A D | quic-fifm.md | 387 * The chunks are sorted by (stream_id, start) in ascending order.
|
/openssl/doc/man7/ |
H A D | ossl-guide-tls-client-non-block.pod | 257 in three chunks.
|
H A D | ossl-guide-quic-client-non-block.pod | 345 the request in three chunks.
|
H A D | ossl-guide-tls-client-block.pod | 352 chunks. First we write the start of the request. Secondly we write the hostname
|
H A D | ossl-guide-migration.pod | 2349 measuring performance on smaller data chunks.
|
/openssl/ |
H A D | CHANGES.md | 15951 before application data chunks to avoid the use of known IVs 16868 not chunks of lines and not (usually doesn't happen, but I've
|
Completed in 93 milliseconds