/openssl-master/ssl/ |
A D | pqueue.c | 29 item->next = NULL; in pitem_new() 55 pitem *curr, *next; in pqueue_insert() local 63 next != NULL; curr = next, next = next->next) { in pqueue_insert() 69 item->next = next; in pqueue_insert() 83 item->next = NULL; in pqueue_insert() 84 curr->next = item; in pqueue_insert() 106 pitem *next; in pqueue_find() local 112 for (next = pq->items; next->next != NULL; next = next->next) { in pqueue_find() 114 found = next; in pqueue_find() 121 found = next; in pqueue_find() [all …]
|
A D | ssl_sess.c | 195 dest->next = NULL; in ssl_session_dup() 1217 s->prev->next = s->next; in SSL_SESSION_list_remove() 1220 s->prev = s->next = NULL; in SSL_SESSION_list_remove() 1226 SSL_SESSION *next; in SSL_SESSION_list_add() local 1243 s->next->prev = s; in SSL_SESSION_list_add() 1249 s->prev->next = s; in SSL_SESSION_list_add() 1257 next = ctx->session_cache_head->next; in SSL_SESSION_list_add() 1260 s->next = next; in SSL_SESSION_list_add() 1262 next->prev->next = s; in SSL_SESSION_list_add() 1263 next->prev = s; in SSL_SESSION_list_add() [all …]
|
A D | bio_ssl.c | 229 BIO *next; in ssl_ctrl() local 232 next = BIO_next(b); in ssl_ctrl() 250 if (next != NULL) in ssl_ctrl() 251 ret = BIO_ctrl(next, cmd, num, ptr); in ssl_ctrl() 293 if (next != NULL) in ssl_ctrl() 294 BIO_push(bio, next); in ssl_ctrl() 327 if ((next != NULL) && (next != ssl->rbio)) { in ssl_ctrl() 332 BIO_up_ref(next); in ssl_ctrl() 333 SSL_set_bio(ssl, next, next); in ssl_ctrl() 358 BIO_set_retry_reason(b, BIO_get_retry_reason(next)); in ssl_ctrl()
|
A D | ssl_ciph.c | 646 curr->prev->next = curr->next; in ll_append_tail() 649 (*tail)->next = curr; in ll_append_tail() 651 curr->next = NULL; in ll_append_tail() 665 curr->prev->next = curr->next; in ll_append_head() 667 curr->next = *head; in ll_append_head() 830 next = tail; in ssl_cipher_apply_rule() 833 next = head; in ssl_cipher_apply_rule() 842 curr = next; in ssl_cipher_apply_rule() 847 next = reverse ? curr->prev : curr->next; in ssl_cipher_apply_rule() 923 curr->prev->next = curr->next; in ssl_cipher_apply_rule() [all …]
|
/openssl-master/crypto/async/ |
A D | async_wait.c | 23 struct fd_lookup_st *next; in ASYNC_WAIT_CTX_free() local 36 next = curr->next; in ASYNC_WAIT_CTX_free() 38 curr = next; in ASYNC_WAIT_CTX_free() 60 fdlookup->next = ctx->fds; in ASYNC_WAIT_CTX_set_wait_fd() 83 curr = curr->next; in ASYNC_WAIT_CTX_get_fd() 106 curr = curr->next; in ASYNC_WAIT_CTX_get_all_fds() 134 curr = curr->next; in ASYNC_WAIT_CTX_get_changed_fds() 159 prev->next = curr->next; in ASYNC_WAIT_CTX_clear_fd() 180 curr = curr->next; in ASYNC_WAIT_CTX_clear_fd() 234 prev->next = curr->next; in async_wait_ctx_reset_counts() [all …]
|
/openssl-master/crypto/evp/ |
A D | bio_md.c | 77 BIO *next; in md_read() local 83 next = BIO_next(b); in md_read() 88 ret = BIO_read(next, out, outl); in md_read() 105 BIO *next; in md_write() local 111 next = BIO_next(b); in md_write() 124 if (next != NULL) { in md_write() 137 BIO *dbio, *next; in md_ctrl() local 141 next = BIO_next(b); in md_ctrl() 198 BIO *next; in md_callback_ctrl() local 200 next = BIO_next(b); in md_callback_ctrl() [all …]
|
A D | bio_enc.c | 110 BIO *next; in enc_read() local 116 next = BIO_next(b); in enc_read() 117 if ((ctx == NULL) || (next == NULL)) in enc_read() 160 if (!BIO_should_retry(next)) { in enc_read() 238 BIO *next; in enc_write() local 241 next = BIO_next(b); in enc_write() 242 if ((ctx == NULL) || (next == NULL)) in enc_write() 301 BIO *next; in enc_ctrl() local 304 next = BIO_next(b); in enc_ctrl() 391 BIO *next = BIO_next(b); in enc_callback_ctrl() local [all …]
|
A D | bio_b64.c | 113 BIO *next; in b64_read() local 119 next = BIO_next(b); in b64_read() 120 if ((ctx == NULL) || (next == NULL)) in b64_read() 168 if (!BIO_should_retry(next)) { in b64_read() 332 BIO *next; in b64_write() local 335 next = BIO_next(b); in b64_write() 336 if ((ctx == NULL) || (next == NULL)) in b64_write() 451 BIO *next; in b64_ctrl() local 454 next = BIO_next(b); in b64_ctrl() 535 BIO *next = BIO_next(b); in b64_callback_ctrl() local [all …]
|
A D | bio_ok.c | 174 BIO *next; in ok_read() local 180 next = BIO_next(b); in ok_read() 260 BIO *next; in ok_write() local 266 next = BIO_next(b); in ok_write() 328 BIO *next; in ok_ctrl() local 331 next = BIO_next(b); in ok_ctrl() 343 ret = BIO_ctrl(next, cmd, num, ptr); in ok_ctrl() 376 ret = BIO_ctrl(next, cmd, num, ptr); in ok_ctrl() 408 BIO *next; in ok_callback_ctrl() local 410 next = BIO_next(b); in ok_callback_ctrl() [all …]
|
/openssl-master/crypto/err/ |
A D | err_prn.c | 76 const char *curr = txt, *next = txt; in ERR_add_error_txt() local 97 const size_t len_next = strlen(next); in ERR_add_error_txt() 100 next += len_next; in ERR_add_error_txt() 103 next += available_len; in ERR_add_error_txt() 107 while (*next != '\0' && (size_t)(next - txt) <= available_len) { in ERR_add_error_txt() 108 curr = next; in ERR_add_error_txt() 109 next = strstr(curr, separator); in ERR_add_error_txt() 110 if (next != NULL) { in ERR_add_error_txt() 111 next += strlen(separator); in ERR_add_error_txt() 114 next = curr + strlen(curr); in ERR_add_error_txt() [all …]
|
/openssl-master/test/ |
A D | x509aux.c | 53 goto next; in test_certs() 60 goto next; in test_certs() 69 goto next; in test_certs() 74 goto next; in test_certs() 81 goto next; in test_certs() 87 goto next; in test_certs() 92 goto next; in test_certs() 99 goto next; in test_certs() 105 goto next; in test_certs() 116 goto next; in test_certs() [all …]
|
A D | sslcorrupttest.c | 19 BIO *next = BIO_next(bio); in copy_flags() local 21 flags = BIO_test_flags(next, BIO_FLAGS_SHOULD_RETRY | BIO_FLAGS_RWS); in copy_flags() 29 BIO *next = BIO_next(bio); in tls_corrupt_read() local 31 ret = BIO_read(next, out, outl); in tls_corrupt_read() 40 BIO *next = BIO_next(bio); in tls_corrupt_write() local 48 ret = BIO_write(next, copy, inl); in tls_corrupt_write() 51 ret = BIO_write(next, in, inl); in tls_corrupt_write() 61 BIO *next = BIO_next(bio); in tls_corrupt_ctrl() local 63 if (next == NULL) in tls_corrupt_ctrl() 71 ret = BIO_ctrl(next, cmd, num, ptr); in tls_corrupt_ctrl()
|
A D | asynciotest.c | 93 BIO *next = BIO_next(bio); in async_read() local 97 if (next == NULL) in async_read() 105 ret = BIO_read(next, out, 1); in async_read() 106 if (ret <= 0 && BIO_should_read(next)) in async_read() 129 BIO *next = BIO_next(bio); in async_write() local 133 if (next == NULL) in async_write() 242 ret = BIO_write(next, in + written, inl - written); in async_write() 245 if (ret <= 0 && BIO_should_write(next)) in async_write() 260 BIO *next = BIO_next(bio); in async_ctrl() local 262 if (next == NULL) in async_ctrl() [all …]
|
A D | tls13ccstest.c | 73 BIO *next = BIO_next(bio); in watchccs_read() local 77 if (next == NULL) in watchccs_read() 82 ret = BIO_read(next, out, outl); in watchccs_read() 83 if (ret <= 0 && BIO_should_read(next)) in watchccs_read() 92 BIO *next = BIO_next(bio); in watchccs_write() local 98 if (next == NULL) in watchccs_write() 206 ret = BIO_write(next, in, inl); in watchccs_write() 207 if (ret <= 0 && BIO_should_write(next)) in watchccs_write() 216 BIO *next = BIO_next(bio); in watchccs_ctrl() local 218 if (next == NULL) in watchccs_ctrl() [all …]
|
A D | bio_prefix_text.c | 96 BIO *next = NULL; in setup_bio_chain() local 104 next = bio_out; in setup_bio_chain() 105 BIO_up_ref(next); /* Protection against freeing */ in setup_bio_chain() 112 chain[i] = BIO_push(curr, next); in setup_bio_chain() 115 next = chain[i]; in setup_bio_chain() 121 BIO_free_all(next); in setup_bio_chain()
|
/openssl-master/crypto/asn1/ |
A D | bio_asn1.c | 159 BIO *next; in asn1_bio_write() local 162 next = BIO_next(b); in asn1_bio_write() 297 BIO *next = BIO_next(b); in asn1_bio_read() local 298 if (next == NULL) in asn1_bio_read() 310 BIO *next = BIO_next(b); in asn1_bio_gets() local 311 if (next == NULL) in asn1_bio_gets() 319 if (next == NULL) in asn1_bio_callback_ctrl() 329 BIO *next; in asn1_bio_ctrl() local 334 next = BIO_next(b); in asn1_bio_ctrl() 370 if (next == NULL) in asn1_bio_ctrl() [all …]
|
/openssl-master/crypto/engine/ |
A D | eng_list.c | 63 iterator = iterator->next; in engine_list_add() 83 if ((engine_list_tail == NULL) || (engine_list_tail->next != NULL)) { in engine_list_add() 87 engine_list_tail->next = e; in engine_list_add() 97 e->next = NULL; in engine_list_add() 112 iterator = iterator->next; in engine_list_remove() 118 if (e->next) in engine_list_remove() 119 e->next->prev = e->prev; in engine_list_remove() 121 e->prev->next = e->next; in engine_list_remove() 124 engine_list_head = e->next; in engine_list_remove() 182 ret = e->next; in ENGINE_get_next() [all …]
|
/openssl-master/crypto/ |
A D | initthread.c | 41 THREAD_EVENT_HANDLER *next; member 333 curr = curr->next; in init_thread_stop() 338 *hands = curr->next; in init_thread_stop() 340 prev->next = curr->next; in init_thread_stop() 343 curr = curr->next; in init_thread_stop() 404 hand->next = *hands; in ossl_init_thread_start() 439 prev->next = curr->next; in init_thread_deregister() 441 *hands = curr->next; in init_thread_deregister() 443 curr = curr->next; in init_thread_deregister() 448 curr = curr->next; in init_thread_deregister()
|
/openssl-master/crypto/lhash/ |
A D | lhash.c | 97 nn = n->next; in OPENSSL_LH_flush() 123 nn->next = NULL; in OPENSSL_LH_insert() 151 *rn = nn->next; in OPENSSL_LH_delete() 203 n = a->next; in doall_util_fn() 258 *n1 = (*n1)->next; in expand() 259 np->next = *n2; in expand() 262 n1 = &((*n1)->next); in expand() 299 n1 = n1->next; in contract() 300 n1->next = np; in contract() 324 ret = &(n1->next); in getrn() [all …]
|
/openssl-master/util/ |
A D | merge-err-lines | 26 my $next = <>; 27 $next =~ s/^ +//; 28 $_ = $copy . ' ' . $next;
|
/openssl-master/providers/implementations/encode_decode/ |
A D | decode_msblob2key.c | 98 goto next; in msblob2key_decode() 105 goto next; in msblob2key_decode() 112 goto next; in msblob2key_decode() 117 goto next; in msblob2key_decode() 127 goto next; in msblob2key_decode() 142 goto next; in msblob2key_decode() 151 goto next; in msblob2key_decode() 157 next: in msblob2key_decode()
|
/openssl-master/crypto/comp/ |
A D | c_zlib.c | 370 BIO *next = BIO_next(b); in bio_zlib_read() local 432 BIO *next = BIO_next(b); in bio_zlib_write() local 503 BIO *next = BIO_next(b); in bio_zlib_flush() local 552 BIO *next = BIO_next(b); in bio_zlib_ctrl() local 554 if (next == NULL) in bio_zlib_ctrl() 568 ret = BIO_flush(next); in bio_zlib_ctrl() 601 ret = BIO_ctrl(next, cmd, num, ptr); in bio_zlib_ctrl() 628 ret = BIO_ctrl(next, cmd, num, ptr); in bio_zlib_ctrl() 638 BIO *next = BIO_next(b); in bio_zlib_callback_ctrl() local 640 if (next == NULL) in bio_zlib_callback_ctrl() [all …]
|
/openssl-master/providers/implementations/storemgmt/ |
A D | file_store_any2obj.c | 137 goto next; in msblob2obj_decode() 145 goto next; in msblob2obj_decode() 159 next: in msblob2obj_decode() 204 goto next; in pvk2obj_decode() 212 goto next; in pvk2obj_decode() 226 next: in pvk2obj_decode()
|
/openssl-master/doc/man3/ |
A D | BIO_push.pod | 13 void BIO_set_next(BIO *b, BIO *next); 20 BIO_pop() removes the BIO B<b> from a chain and returns the next BIO 21 in the chain, or NULL if there is no next BIO. The removed BIO then 25 BIO_set_next() replaces the existing next BIO in a chain with the BIO pointed to 26 by B<next>. The new chain may include some of the same BIOs from the old chain 43 BIO_pop() returns the next BIO in the chain, or NULL if there is no next
|
/openssl-master/apps/lib/ |
A D | s_socket.c | 274 const BIO_ADDRINFO *next; in do_server() local 301 next = BIO_ADDRINFO_next(res); in do_server() 305 if (next != NULL in do_server() 306 && BIO_ADDRINFO_socktype(next) == sock_type in do_server() 307 && BIO_ADDRINFO_protocol(next) == sock_protocol) { in do_server() 309 && BIO_ADDRINFO_family(next) == AF_INET6) { in do_server() 315 sock_address = BIO_ADDRINFO_address(next); in do_server() 317 && BIO_ADDRINFO_family(next) == AF_INET) { in do_server()
|