Searched refs:numpipes (Results 1 - 7 of 7) sorted by relevance
/third_party/node/deps/openssl/openssl/ssl/record/ |
H A D | rec_layer_s3.c | 606 size_t numpipes, j; in ssl3_write_bytes() local 609 numpipes = 1; in ssl3_write_bytes() 611 numpipes = ((n - 1) / split_send_fragment) + 1; in ssl3_write_bytes() 612 if (numpipes > maxpipes) in ssl3_write_bytes() 613 numpipes = maxpipes; in ssl3_write_bytes() 615 if (n / numpipes >= split_send_fragment) { in ssl3_write_bytes() 620 for (j = 0; j < numpipes; j++) in ssl3_write_bytes() 624 tmppipelen = n / numpipes; in ssl3_write_bytes() 625 remain = n % numpipes; in ssl3_write_bytes() 626 for (j = 0; j < numpipes; in ssl3_write_bytes() 665 do_ssl3_write(SSL *s, int type, const unsigned char *buf, size_t *pipelens, size_t numpipes, int create_empty_fragment, size_t *written) do_ssl3_write() argument [all...] |
H A D | record.h | 216 size_t *pipelens, size_t numpipes,
|
/third_party/openssl/ssl/record/ |
H A D | rec_layer_s3.c | 617 size_t numpipes, j; in ssl3_write_bytes() local 620 numpipes = 1; in ssl3_write_bytes() 622 numpipes = ((n - 1) / split_send_fragment) + 1; in ssl3_write_bytes() 623 if (numpipes > maxpipes) in ssl3_write_bytes() 624 numpipes = maxpipes; in ssl3_write_bytes() 626 if (n / numpipes >= split_send_fragment) { in ssl3_write_bytes() 631 for (j = 0; j < numpipes; j++) in ssl3_write_bytes() 635 tmppipelen = n / numpipes; in ssl3_write_bytes() 636 remain = n % numpipes; in ssl3_write_bytes() 637 for (j = 0; j < numpipes; in ssl3_write_bytes() 676 do_ssl3_write(SSL *s, int type, const unsigned char *buf, size_t *pipelens, size_t numpipes, int create_empty_fragment, size_t *written) do_ssl3_write() argument [all...] |
H A D | record.h | 217 size_t *pipelens, size_t numpipes,
|
/third_party/node/deps/openssl/openssl/engines/ |
H A D | e_dasync.c | 164 unsigned int numpipes; member 653 pipe_ctx->numpipes = arg; in dasync_cipher_ctrl_helper() 658 pipe_ctx->numpipes = arg; in dasync_cipher_ctrl_helper() 663 pipe_ctx->numpipes = arg; in dasync_cipher_ctrl_helper() 734 pipe_ctx->numpipes = 0; in dasync_cipher_init_key_helper() 753 pipes = pipe_ctx->numpipes; in dasync_cipher_helper() 780 pipe_ctx->numpipes = 0; in dasync_cipher_helper()
|
/third_party/openssl/engines/ |
H A D | e_dasync.c | 164 unsigned int numpipes; member 653 pipe_ctx->numpipes = arg; in dasync_cipher_ctrl_helper() 658 pipe_ctx->numpipes = arg; in dasync_cipher_ctrl_helper() 663 pipe_ctx->numpipes = arg; in dasync_cipher_ctrl_helper() 734 pipe_ctx->numpipes = 0; in dasync_cipher_init_key_helper() 753 pipes = pipe_ctx->numpipes; in dasync_cipher_helper() 780 pipe_ctx->numpipes = 0; in dasync_cipher_helper()
|
/third_party/openssl/test/ |
H A D | sslapitest.c | 10251 size_t written, readbytes, offset, msglen, fragsize = 10, numpipes = 5; in test_pipelining() local 10291 numpipes = 2; in test_pipelining() 10294 msglen = fragsize * numpipes; in test_pipelining() 10328 if (!TEST_true(SSL_set_max_pipelines(peera, numpipes)) in test_pipelining() 10341 * If the pipelining code worked, then we expect all |numpipes| pipelines to in test_pipelining() 10342 * have been used - except in test 3 where only |numpipes - 1| pipelines in test_pipelining() 10343 * will be used. This will result in |numpipes| records (|numpipes - 1| for in test_pipelining() 10345 * expect this to be read in |numpipes| or |numpipes in test_pipelining() [all...] |
Completed in 29 milliseconds