Home
last modified time | relevance | path

Searched refs:stcb (Results 1 – 25 of 29) sorted by relevance

12

/netbsd-src/sys/netinet/
H A Dsctp_timer.c134 sctp_threshold_management(struct sctp_inpcb *inp, struct sctp_tcb *stcb, in sctp_threshold_management() argument
151 if (net == stcb->asoc.primary_destination) { in sctp_threshold_management()
155 stcb, in sctp_threshold_management()
167 if (stcb == NULL) in sctp_threshold_management()
172 stcb->asoc.overall_error_count++; in sctp_threshold_management()
175 stcb->asoc.overall_error_count++; in sctp_threshold_management()
180 &stcb->asoc, in sctp_threshold_management()
181 stcb->asoc.overall_error_count, in sctp_threshold_management()
189 if (stcb->asoc.overall_error_count > threshold) { in sctp_threshold_management()
205 sctp_abort_an_association(inp, stcb, SCTP_FAILED_THRESHOLD, oper); in sctp_threshold_management()
[all …]
H A Dsctp_input.c99 struct sctp_tcb *stcb, struct sctp_nets *net) in sctp_handle_init() argument
105 printf("sctp_handle_init: handling INIT tcb:%p\n", stcb); in sctp_handle_init()
113 sctp_abort_association(inp, stcb, m, iphlen, sh, op_err); in sctp_handle_init()
119 sctp_abort_association(inp, stcb, m, iphlen, sh, op_err); in sctp_handle_init()
126 sctp_abort_association(inp, stcb, m, iphlen, sh, op_err); in sctp_handle_init()
132 sctp_abort_association(inp, stcb, m, iphlen, sh, op_err); in sctp_handle_init()
138 sctp_abort_association(inp, stcb, m, iphlen, sh, op_err); in sctp_handle_init()
144 sctp_abort_association(inp, stcb, m, iphlen, sh, op_err); in sctp_handle_init()
155 sctp_send_initiate_ack(inp, stcb, m, iphlen, offset, sh, cp); in sctp_handle_init()
164 sctp_process_init(struct sctp_init_chunk *cp, struct sctp_tcb *stcb, in sctp_process_init() argument
[all …]
H A Dsctp_usrreq.c237 struct sctp_tcb *stcb, in sctp_notify_mbuf() argument
248 if ((inp == NULL) || (stcb == NULL) || (net == NULL) || in sctp_notify_mbuf()
250 if (stcb != NULL) { in sctp_notify_mbuf()
251 SCTP_TCB_UNLOCK(stcb); in sctp_notify_mbuf()
256 if (ntohl(sh->v_tag) != (stcb->asoc.peer_vtag)) { in sctp_notify_mbuf()
257 SCTP_TCB_UNLOCK(stcb); in sctp_notify_mbuf()
264 SCTP_TCB_UNLOCK(stcb); in sctp_notify_mbuf()
269 SCTP_TCB_UNLOCK(stcb); in sctp_notify_mbuf()
284 sctp_timer_stop(SCTP_TIMER_TYPE_PATHMTURAISE, inp, stcb, NULL); in sctp_notify_mbuf()
291 if (stcb in sctp_notify_mbuf()
347 sctp_notify(struct sctp_inpcb * inp,int errno,struct sctphdr * sh,struct sockaddr * to,struct sctp_tcb * stcb,struct sctp_nets * net) sctp_notify() argument
434 struct sctp_tcb *stcb; sctp_ctlinput() local
709 struct sctp_tcb *stcb; sctp_disconnect() local
829 struct sctp_tcb *stcb; sctp_shutdown() local
909 sctp_fill_up_addresses(struct sctp_inpcb * inp,struct sctp_tcb * stcb,int limit,struct sockaddr_storage * sas) sctp_fill_up_addresses() argument
1146 struct sctp_tcb *stcb = NULL; sctp_do_connect_x() local
1332 struct sctp_tcb *stcb = NULL; sctp_optsget() local
2381 struct sctp_tcb *stcb = NULL; sctp_optsset() local
3303 struct sctp_tcb *stcb; sctp_connect() local
3432 struct sctp_tcb *stcb=NULL; sctp_rcvd() local
3625 struct sctp_tcb *stcb; sctp_accept() local
3719 struct sctp_tcb *stcb; sctp_sockaddr() local
3781 struct sctp_tcb *stcb; sctp_peeraddr() local
[all...]
H A Dsctputil.c431 void sctp_auditing(int from, struct sctp_inpcb *inp, struct sctp_tcb *stcb, in sctp_auditing() argument
453 if (stcb == NULL) { in sctp_auditing()
464 (0x000000ff & stcb->asoc.sent_queue_retran_cnt); in sctp_auditing()
472 TAILQ_FOREACH(chk, &stcb->asoc.sent_queue, sctp_next) { in sctp_auditing()
480 if (resend_cnt != stcb->asoc.sent_queue_retran_cnt) { in sctp_auditing()
488 resend_cnt, stcb->asoc.sent_queue_retran_cnt); in sctp_auditing()
490 stcb->asoc.sent_queue_retran_cnt = resend_cnt; in sctp_auditing()
493 (0x000000ff & stcb->asoc.sent_queue_retran_cnt); in sctp_auditing()
499 if (tot_out != stcb->asoc.total_flight) { in sctp_auditing()
508 (int)stcb->asoc.total_flight); in sctp_auditing()
[all …]
H A Dsctp_indata.c107 sctp_set_rwnd(struct sctp_tcb *stcb, struct sctp_association *asoc) in sctp_set_rwnd() argument
114 (u_long)stcb->sctp_socket->so_rcv.sb_cc, in sctp_set_rwnd()
115 (u_long)stcb->sctp_socket->so_rcv.sb_hiwat, in sctp_set_rwnd()
116 (u_long)stcb->sctp_socket->so_rcv.sb_lowat, in sctp_set_rwnd()
117 (u_long)stcb->sctp_socket->so_rcv.sb_mbcnt, in sctp_set_rwnd()
118 (u_long)stcb->sctp_socket->so_rcv.sb_mbmax); in sctp_set_rwnd()
120 sctp_sbspace(&stcb->sctp_socket->so_rcv), in sctp_set_rwnd()
126 if (stcb->sctp_socket->so_rcv.sb_cc == 0 && in sctp_set_rwnd()
131 asoc->my_rwnd = uimax(stcb->sctp_socket->so_rcv.sb_hiwat, in sctp_set_rwnd()
136 calc = (u_int32_t)sctp_sbspace(&stcb in sctp_set_rwnd()
180 sctp_build_ctl_nchunk(struct sctp_tcb * stcb,uint32_t tsn,uint32_t ppid,uint32_t context,uint16_t stream_no,uint16_t stream_seq,uint8_t flags) sctp_build_ctl_nchunk() argument
233 sctp_build_ctl(struct sctp_tcb * stcb,struct sctp_tmit_chunk * chk) sctp_build_ctl() argument
274 sctp_deliver_data(struct sctp_tcb * stcb,struct sctp_association * asoc,struct sctp_tmit_chunk * chk,int hold_locks) sctp_deliver_data() argument
512 sctp_service_reassembly(struct sctp_tcb * stcb,struct sctp_association * asoc,int hold_locks) sctp_service_reassembly() argument
801 sctp_queue_data_to_stream(struct sctp_tcb * stcb,struct sctp_association * asoc,struct sctp_tmit_chunk * chk,int * abort_flag) sctp_queue_data_to_stream() argument
1040 sctp_queue_data_for_reasm(struct sctp_tcb * stcb,struct sctp_association * asoc,struct sctp_tmit_chunk * chk,int * abort_flag) sctp_queue_data_for_reasm() argument
1664 sctp_process_a_data_chunk(struct sctp_tcb * stcb,struct sctp_association * asoc,struct mbuf ** m,int offset,struct sctp_data_chunk * ch,int chk_length,struct sctp_nets * net,u_int32_t * high_tsn,int * abort_flag,int * break_flag,int last_chunk) sctp_process_a_data_chunk() argument
2205 sctp_sack_check(struct sctp_tcb * stcb,int ok_to_sack,int was_a_gap,int * abort_flag) sctp_sack_check() argument
2423 sctp_service_queues(struct sctp_tcb * stcb,struct sctp_association * asoc,int hold_locks) sctp_service_queues() argument
2500 sctp_process_data(struct mbuf ** mm,int iphlen,int * offset,int length,struct sctphdr * sh,struct sctp_inpcb * inp,struct sctp_tcb * stcb,struct sctp_nets * net,u_int32_t * high_tsn) sctp_process_data() argument
2698 sctp_handle_segments(struct sctp_tcb * stcb,struct sctp_association * asoc,struct sctp_sack_chunk * ch,u_long last_tsn,u_long * biggest_tsn_acked,u_long * biggest_newly_acked_tsn,int num_seg,int * ecn_seg_sums) sctp_handle_segments() argument
2928 sctp_strike_gap_ack_chunks(struct sctp_tcb * stcb,struct sctp_association * asoc,u_long biggest_tsn_acked,int strike_enabled,u_long biggest_tsn_newly_acked,int accum_moved) sctp_strike_gap_ack_chunks() argument
3189 sctp_try_advance_peer_ack_point(struct sctp_tcb * stcb,struct sctp_association * asoc) sctp_try_advance_peer_ack_point() argument
3466 sctp_handle_sack(struct sctp_sack_chunk * ch,struct sctp_tcb * stcb,struct sctp_nets * net_from,int * abort_now) sctp_handle_sack() argument
4302 sctp_update_acked(struct sctp_tcb * stcb,struct sctp_shutdown_chunk * cp,struct sctp_nets * netp,int * abort_flag) sctp_update_acked() argument
4329 sctp_kick_prsctp_reorder_queue(struct sctp_tcb * stcb,struct sctp_stream_in * strmin) sctp_kick_prsctp_reorder_queue() argument
4388 sctp_handle_forward_tsn(struct sctp_tcb * stcb,struct sctp_forward_tsn_chunk * fwd,int * abort_flag) sctp_handle_forward_tsn() argument
[all...]
H A Dsctp_pcb.c129 struct sctp_tcb *stcb; in SCTP_INP_RLOCK() local
130 LIST_FOREACH(stcb, &inp->sctp_asoc_list, sctp_tcblist) { in SCTP_INP_RLOCK()
131 if (mtx_owned(&(stcb)->tcb_mtx)) in SCTP_INP_RLOCK()
149 struct sctp_tcb *stcb; in SCTP_INP_INFO_RLOCK() local
153 LIST_FOREACH(stcb, &inp->sctp_asoc_list, sctp_tcblist) { in SCTP_INP_INFO_RLOCK()
154 if (mtx_owned(&(stcb)->tcb_mtx)) in SCTP_INP_INFO_RLOCK()
173 struct sctp_tcb *stcb; in sctp_validate_no_locks() local
181 LIST_FOREACH(stcb, &inp->sctp_asoc_list, sctp_tcblist) { in sctp_validate_no_locks()
182 if (mtx_owned(&(stcb)->tcb_mtx)) in sctp_validate_no_locks()
246 struct sctp_tcb *stcb; in sctp_tcb_special_locate() local
[all …]
H A Dsctp_asconf.c197 struct sctp_tcb *stcb, int response_required) in sctp_process_asconf_add_ip() argument
229 sin->sin_port = stcb->rport; in sctp_process_asconf_add_ip()
248 sin6->sin6_port = stcb->rport; in sctp_process_asconf_add_ip()
279 if (sctp_add_remote_addr(stcb, sa, 0, 6) != 0) { in sctp_process_asconf_add_ip()
290 sctp_ulp_notify(SCTP_NOTIFY_ASCONF_ADD_IP, stcb, 0, sa); in sctp_process_asconf_add_ip()
302 struct sctp_tcb *stcb, int response_required) in sctp_process_asconf_delete_ip() argument
333 sin->sin_port = stcb->rport; in sctp_process_asconf_delete_ip()
345 sin6->sin6_port = stcb->rport; in sctp_process_asconf_delete_ip()
364 sin->sin_port = stcb->rport; in sctp_process_asconf_delete_ip()
383 sin6->sin6_port = stcb->rport; in sctp_process_asconf_delete_ip()
[all …]
H A Dsctp_output.c450 sctp_is_addr_restricted(struct sctp_tcb *stcb, struct sockaddr *addr) in sctp_is_addr_restricted() argument
456 if (stcb == NULL) { in sctp_is_addr_restricted()
461 LIST_FOREACH(laddr, &stcb->asoc.sctp_local_addr_list, sctp_nxt_addr) { in sctp_is_addr_restricted()
469 LIST_FOREACH(laddr, &stcb->asoc.sctp_local_addr_list, sctp_nxt_addr) { in sctp_is_addr_restricted()
608 struct sctp_tcb *stcb, in sctp_choose_v4_boundspecific_stcb() argument
655 (sctp_is_addr_restricted(stcb, (struct sockaddr *)sin))) { in sctp_choose_v4_boundspecific_stcb()
669 (sctp_is_addr_restricted(stcb, (struct sockaddr *)sin))) { in sctp_choose_v4_boundspecific_stcb()
682 starting_point = stcb->asoc.last_used_address; in sctp_choose_v4_boundspecific_stcb()
684 if (stcb->asoc.last_used_address == NULL) { in sctp_choose_v4_boundspecific_stcb()
686 stcb in sctp_choose_v4_boundspecific_stcb()
830 sctp_select_v4_nth_prefered_addr_from_ifn_boundall(struct ifnet * ifn,struct sctp_tcb * stcb,int non_asoc_addr_ok,uint8_t loopscope,uint8_t ipv4_scope,int cur_addr_num) sctp_select_v4_nth_prefered_addr_from_ifn_boundall() argument
858 sctp_count_v4_num_prefered_boundall(struct ifnet * ifn,struct sctp_tcb * stcb,int non_asoc_addr_ok,uint8_t loopscope,uint8_t ipv4_scope,uint8_t * sin_loop,uint8_t * sin_local) sctp_count_v4_num_prefered_boundall() argument
885 sctp_choose_v4_boundall(struct sctp_inpcb * inp,struct sctp_tcb * stcb,struct sctp_nets * net,struct rtentry * rt,uint8_t ipv4_scope,uint8_t loopscope,int non_asoc_addr_ok) sctp_choose_v4_boundall() argument
1077 sctp_ipv4_source_address_selection(struct sctp_inpcb * inp,struct sctp_tcb * stcb,struct route * ro,struct sctp_nets * net,int non_asoc_addr_ok) sctp_ipv4_source_address_selection() argument
1272 sctp_choose_v6_boundspecific_stcb(struct sctp_inpcb * inp,struct sctp_tcb * stcb,struct sctp_nets * net,struct rtentry * rt,uint8_t loc_scope,uint8_t loopscope,int non_asoc_addr_ok) sctp_choose_v6_boundspecific_stcb() argument
1553 sctp_select_v6_nth_addr_from_ifn_boundall(struct ifnet * ifn,struct sctp_tcb * stcb,int non_asoc_addr_ok,uint8_t loopscope,uint8_t loc_scope,int cur_addr_num,int match_scope) sctp_select_v6_nth_addr_from_ifn_boundall() argument
1601 sctp_count_v6_num_eligible_boundall(struct ifnet * ifn,struct sctp_tcb * stcb,int non_asoc_addr_ok,uint8_t loopscope,uint8_t loc_scope) sctp_count_v6_num_eligible_boundall() argument
1629 sctp_choose_v6_boundall(struct sctp_inpcb * inp,struct sctp_tcb * stcb,struct sctp_nets * net,struct rtentry * rt,uint8_t loc_scope,uint8_t loopscope,int non_asoc_addr_ok) sctp_choose_v6_boundall() argument
1838 sctp_ipv6_source_address_selection(struct sctp_inpcb * inp,struct sctp_tcb * stcb,struct route * ro,struct sctp_nets * net,int non_asoc_addr_ok) sctp_ipv6_source_address_selection() argument
2009 sctp_get_ect(struct sctp_tcb * stcb,struct sctp_tmit_chunk * chk) sctp_get_ect() argument
2063 sctp_lowlevel_chunk_output(struct sctp_inpcb * inp,struct sctp_tcb * stcb,struct sctp_nets * net,const struct sockaddr * to,struct mbuf * m,int nofragment_flag,int ecn_ok,struct sctp_tmit_chunk * chk,int out_of_asoc_ok) sctp_lowlevel_chunk_output() argument
2566 sctp_send_initiate(struct sctp_inpcb * inp,struct sctp_tcb * stcb) sctp_send_initiate() argument
3245 sctp_send_initiate_ack(struct sctp_inpcb * inp,struct sctp_tcb * stcb,struct mbuf * init_pkt,int iphlen,int offset,struct sctphdr * sh,struct sctp_init_chunk * init_chk) sctp_send_initiate_ack() argument
3908 sctp_prune_prsctp(struct sctp_tcb * stcb,struct sctp_association * asoc,struct sctp_sndrcvinfo * srcv,int dataout) sctp_prune_prsctp() argument
3994 sctp_prepare_chunk(struct sctp_tmit_chunk * template,struct sctp_tcb * stcb,struct sctp_sndrcvinfo * srcv,struct sctp_stream_out * strq,struct sctp_nets * net) sctp_prepare_chunk() argument
4085 sctp_get_frag_point(struct sctp_tcb * stcb,struct sctp_association * asoc) sctp_get_frag_point() argument
4122 sctp_msg_append(struct sctp_tcb * stcb,struct sctp_nets * net,struct mbuf * m,struct sctp_sndrcvinfo * srcv,int flags) global() argument
4650 sctp_sendall_iterator(struct sctp_inpcb * inp,struct sctp_tcb * stcb,void * ptr,u_int32_t val) global() argument
4853 sctp_toss_old_asconf(struct sctp_tcb * stcb) global() argument
4883 sctp_clean_up_datalist(struct sctp_tcb * stcb,struct sctp_association * asoc,struct sctp_tmit_chunk ** data_list,int bundle_at,struct sctp_nets * net) global() argument
4988 sctp_move_to_outqueue(struct sctp_tcb * stcb,struct sctp_stream_out * strq) global() argument
5124 sctp_fill_outqueue(struct sctp_tcb * stcb,struct sctp_nets * net) global() argument
5228 sctp_move_to_an_alt(struct sctp_tcb * stcb,struct sctp_association * asoc,struct sctp_nets * net) global() argument
5258 sctp_med_chunk_output(struct sctp_inpcb * inp,struct sctp_tcb * stcb,struct sctp_association * asoc,int * num_out,int * reason_code,int control_only,int * cwnd_full,int from_where,struct timeval * now,int * now_filled) global() argument
5972 sctp_queue_op_err(struct sctp_tcb * stcb,struct mbuf * op_err) global() argument
6029 sctp_send_cookie_echo(struct mbuf * m,int offset,struct sctp_tcb * stcb,struct sctp_nets * net) global() argument
6116 sctp_send_heartbeat_ack(struct sctp_tcb * stcb,struct mbuf * m,int offset,int chk_length,struct sctp_nets * net) global() argument
6185 sctp_send_cookie_ack(struct sctp_tcb * stcb) global() argument
6233 sctp_send_shutdown_ack(struct sctp_tcb * stcb,struct sctp_nets * net) global() argument
6278 sctp_send_shutdown(struct sctp_tcb * stcb,struct sctp_nets * net) global() argument
6330 sctp_send_asconf(struct sctp_tcb * stcb,struct sctp_nets * net) global() argument
6368 sctp_send_asconf_ack(struct sctp_tcb * stcb,uint32_t retrans) global() argument
6452 sctp_chunk_retransmission(struct sctp_inpcb * inp,struct sctp_tcb * stcb,struct sctp_association * asoc,int * cnt_out,struct timeval * now,int * now_filled) global() argument
6845 sctp_timer_validation(struct sctp_inpcb * inp,struct sctp_tcb * stcb,struct sctp_association * asoc,int ret) global() argument
6869 sctp_chunk_output(struct sctp_inpcb * inp,struct sctp_tcb * stcb,int from_where) global() argument
7089 struct sctp_tcb *stcb; global() local
7495 send_forward_tsn(struct sctp_tcb * stcb,struct sctp_association * asoc) global() argument
7651 sctp_send_sack(struct sctp_tcb * stcb) global() argument
7957 sctp_send_abort_tcb(struct sctp_tcb * stcb,struct mbuf * operr) global() argument
7998 sctp_send_shutdown_complete(struct sctp_tcb * stcb,struct sctp_nets * net) global() argument
8152 sctp_select_hb_destination(struct sctp_tcb * stcb,struct timeval * now) global() argument
8249 sctp_send_hb(struct sctp_tcb * stcb,int user_req,struct sctp_nets * u_net) global() argument
8425 sctp_send_ecn_echo(struct sctp_tcb * stcb,struct sctp_nets * net,uint32_t high_tsn) global() argument
8477 sctp_send_packet_dropped(struct sctp_tcb * stcb,struct sctp_nets * net,struct mbuf * m,int iphlen,int bad_crc) global() argument
8606 sctp_send_cwr(struct sctp_tcb * stcb,struct sctp_nets * net,uint32_t high_tsn) global() argument
8659 sctp_reset_the_streams(struct sctp_tcb * stcb,struct sctp_stream_reset_request * req,int number_entries,uint16_t * list) global() argument
8681 sctp_send_str_reset_ack(struct sctp_tcb * stcb,struct sctp_stream_reset_request * req) global() argument
8818 sctp_send_str_reset_req(struct sctp_tcb * stcb,int number_entrys,uint16_t * list,uint8_t two_way,uint8_t not_peer) global() argument
9272 sctp_copy_it_in(struct sctp_inpcb * inp,struct sctp_tcb * stcb,struct sctp_association * asoc,struct sctp_nets * net,struct sctp_sndrcvinfo * srcv,struct uio * uio,int flags) global() argument
9806 struct sctp_tcb *stcb=NULL; global() local
[all...]
H A Dsctp_peeloff.c90 struct sctp_tcb *stcb; in sctp_can_peel_off() local
95 stcb = sctp_findassociation_ep_asocid(inp, assoc_id); in sctp_can_peel_off()
96 if (stcb == NULL) { in sctp_can_peel_off()
107 struct sctp_tcb *stcb; in sctp_do_peeloff() local
112 stcb = sctp_findassociation_ep_asocid(inp, assoc_id); in sctp_do_peeloff()
113 if (stcb == NULL) in sctp_do_peeloff()
127 sctp_move_pcb_and_assoc(inp, n_inp, stcb); in sctp_do_peeloff()
133 sctp_grub_through_socket_buffer(inp, head, so, stcb); in sctp_do_peeloff()
142 struct sctp_tcb *stcb; in sctp_get_peeloff() local
155 stcb = sctp_findassociation_ep_asocid(inp, assoc_id); in sctp_get_peeloff()
[all …]
H A Dsctp_var.h123 #define sctp_total_flight_decrease(stcb, tp1) do { \ argument
124 if (stcb->asoc.total_flight >= tp1->book_size) { \
125 stcb->asoc.total_flight -= tp1->book_size; \
126 if (stcb->asoc.total_flight_count > 0) \
127 stcb->asoc.total_flight_count--; \
129 stcb->asoc.total_flight = 0; \
130 stcb->asoc.total_flight_count = 0; \
134 #define sctp_total_flight_increase(stcb, tp1) do { \ argument
135 (stcb)->asoc.total_flight_count++; \
136 (stcb)->asoc.total_flight += (tp1)->book_size; \
H A Dsctputil.h132 #define sctp_get_associd(stcb) ((sctp_assoc_t)stcb->asoc.my_vtag)
H A Dsctp_timer.h60 int sctp_strreset_timer(struct sctp_inpcb *inp, struct sctp_tcb *stcb,
H A Dsctp_structs.h95 struct sctp_tcb *stcb; /* assoc */ member
/netbsd-src/sys/netinet6/
H A Dsctp6_usrreq.c125 struct sctp_tcb *stcb = NULL; in sctp6_input() local
183 stcb = sctp_findassociation_addr(m, iphlen, offset - sizeof(*ch), in sctp6_input()
186 if ((in6p) && (stcb)) { in sctp6_input()
187 sctp_send_packet_dropped(stcb, net, m, iphlen, 1); in sctp6_input()
188 sctp_chunk_output((struct sctp_inpcb *)in6p, stcb, 2); in sctp6_input()
189 } else if ((in6p != NULL) && (stcb == NULL)) { in sctp6_input()
210 stcb = sctp_findassociation_addr(m, iphlen, offset - sizeof(*ch), in sctp6_input()
229 } else if (stcb == NULL) { in sctp6_input()
279 in6p, stcb, net, ecn_bits); in sctp6_input()
296 if (stcb) { in sctp6_input()
[all …]
/netbsd-src/crypto/external/bsd/openssl/dist/crypto/
H A Dself_test_core.c37 SELF_TEST_CB *stcb; in self_test_set_callback_new() local
39 stcb = OPENSSL_zalloc(sizeof(*stcb)); in self_test_set_callback_new()
40 return stcb; in self_test_set_callback_new()
43 static void self_test_set_callback_free(void *stcb) in self_test_set_callback_free() argument
45 OPENSSL_free(stcb); in self_test_set_callback_free()
63 SELF_TEST_CB *stcb = get_self_test_callback(libctx); in OSSL_SELF_TEST_set_callback() local
65 if (stcb != NULL) { in OSSL_SELF_TEST_set_callback()
66 stcb->cb = cb; in OSSL_SELF_TEST_set_callback()
67 stcb->cbarg = cbarg; in OSSL_SELF_TEST_set_callback()
74 SELF_TEST_CB *stcb = get_self_test_callback(libctx); in OSSL_SELF_TEST_get_callback() local
[all …]
/netbsd-src/crypto/external/bsd/openssl/dist/providers/implementations/rands/
H A Dcrngt.c118 OSSL_CALLBACK *stcb = NULL; in ossl_crngt_get_entropy() local
151 OSSL_SELF_TEST_get_callback(libctx, &stcb, &stcbarg); in ossl_crngt_get_entropy()
152 if (stcb != NULL) { in ossl_crngt_get_entropy()
153 st = OSSL_SELF_TEST_new(stcb, stcbarg); in ossl_crngt_get_entropy()
/netbsd-src/external/gpl3/binutils.old/dist/cpu/
H A Dmep-h1.cpu25 "stcb $rn,($rma)"
31 (unit u-stcb))))
H A Dmep-c5.cpu36 "stcb $rn,($rma)"
42 (unit u-stcb))))
/netbsd-src/external/gpl3/gdb.old/dist/cpu/
H A Dmep-h1.cpu25 "stcb $rn,($rma)"
31 (unit u-stcb))))
H A Dmep-c5.cpu36 "stcb $rn,($rma)"
42 (unit u-stcb))))
/netbsd-src/external/gpl3/binutils/dist/cpu/
H A Dmep-h1.cpu25 "stcb $rn,($rma)"
31 (unit u-stcb))))
H A Dmep-c5.cpu36 "stcb $rn,($rma)"
42 (unit u-stcb))))
/netbsd-src/external/gpl3/gdb/dist/cpu/
H A Dmep-h1.cpu25 "stcb $rn,($rma)"
31 (unit u-stcb))))
H A Dmep-c5.cpu36 "stcb $rn,($rma)"
42 (unit u-stcb))))
/netbsd-src/crypto/external/bsd/openssl/dist/crypto/rsa/
H A Drsa_gen.c446 OSSL_CALLBACK *stcb = NULL; in rsa_keygen() local
449 OSSL_SELF_TEST_get_callback(libctx, &stcb, &stcbarg); in rsa_keygen()
450 ok = rsa_keygen_pairwise_test(rsa, stcb, stcbarg); in rsa_keygen()

12