| /freebsd/sys/netinet/ |
| H A D | tcp_timer.c | 291 tcp_output_locked(struct tcpcb *tp) in tcp_output_locked() argument 295 INP_WLOCK_ASSERT(tptoinpcb(tp)); in tcp_output_locked() 297 if ((rv = tp->t_fb->tfb_tcp_output(tp)) < 0) { in tcp_output_locked() 298 KASSERT(tp->t_fb->tfb_flags & TCP_FUNC_OUTPUT_CANDROP, in tcp_output_locked() 300 tp->t_fb->tfb_tcp_block_name, tp)); in tcp_output_locked() 301 tp = tcp_drop(tp, -rv); in tcp_output_locked() 304 return (tp != NULL); in tcp_output_locked() 308 tcp_timer_delack(struct tcpcb *tp) in tcp_timer_delack() argument 312 struct inpcb *inp = tptoinpcb(tp); in tcp_timer_delack() 319 tp->t_flags |= TF_ACKNOW; in tcp_timer_delack() [all …]
|
| H A D | tcp_input.c | 258 tcp_is_sack_recovery(struct tcpcb *tp, struct tcpopt *to) in tcp_is_sack_recovery() argument 260 return ((tp->t_flags & TF_SACK_PERMIT) && in tcp_is_sack_recovery() 262 (!TAILQ_EMPTY(&tp->snd_holes)))); in tcp_is_sack_recovery() 270 hhook_run_tcp_est_in(struct tcpcb *tp, struct tcphdr *th, struct tcpopt *to) in hhook_run_tcp_est_in() argument 275 hhook_data.tp = tp; in hhook_run_tcp_est_in() 280 &tp->t_osd); in hhook_run_tcp_est_in() 289 cc_ack_received(struct tcpcb *tp, struct tcphdr *th, uint16_t nsegs, in cc_ack_received() argument 296 INP_WLOCK_ASSERT(tptoinpcb(tp)); in cc_ack_received() 298 tp->t_ccv.nsegs = nsegs; in cc_ack_received() 299 tp->t_ccv.bytes_this_ack = BYTES_THIS_ACK(tp, th); in cc_ack_received() [all …]
|
| H A D | tcp_output.c | 140 #define TCP_XMIT_TIMER_ASSERT(tp, len, th_flags) \ argument 142 tcp_timer_active((tp), TT_REXMT) || \ 143 tcp_timer_active((tp), TT_PERSIST), \ 151 hhook_run_tcp_est_out(struct tcpcb *tp, struct tcphdr *th, in hhook_run_tcp_est_out() argument 157 hhook_data.tp = tp; in hhook_run_tcp_est_out() 164 &tp->t_osd); in hhook_run_tcp_est_out() 173 cc_after_idle(struct tcpcb *tp) in cc_after_idle() argument 175 INP_WLOCK_ASSERT(tptoinpcb(tp)); in cc_after_idle() 177 if (CC_ALGO(tp)->after_idle != NULL) in cc_after_idle() 178 CC_ALGO(tp)->after_idle(&tp->t_ccv); in cc_after_idle() [all …]
|
| H A D | tcp_sack.c | 155 tcp_dsack_block_exists(struct tcpcb *tp) in tcp_dsack_block_exists() argument 158 if (tp->rcv_numsacks == 0) in tcp_dsack_block_exists() 160 if (SEQ_LEQ(tp->sackblks[0].end, tp->rcv_nxt)) in tcp_dsack_block_exists() 170 tcp_update_dsack_list(struct tcpcb *tp, tcp_seq rcv_start, tcp_seq rcv_end) in tcp_update_dsack_list() argument 176 INP_WLOCK_ASSERT(tptoinpcb(tp)); in tcp_update_dsack_list() 180 if (SEQ_LT(rcv_end, tp->rcv_nxt) || in tcp_update_dsack_list() 181 ((rcv_end == tp->rcv_nxt) && in tcp_update_dsack_list() 182 (tp->rcv_numsacks > 0 ) && in tcp_update_dsack_list() 183 (tp->sackblks[0].end == tp->rcv_nxt))) { in tcp_update_dsack_list() 195 for (i = 0; i < tp->rcv_numsacks; i++) { in tcp_update_dsack_list() [all …]
|
| H A D | tcp_ecn.c | 119 tcp_ecn_input_syn_sent(struct tcpcb *tp, uint16_t thflags, int iptos) in tcp_ecn_input_syn_sent() argument 129 tp->t_flags2 |= TF2_ECN_PERMIT; in tcp_ecn_input_syn_sent() 130 tp->t_flags2 &= ~TF2_ACE_PERMIT; in tcp_ecn_input_syn_sent() 150 tp->t_flags2 |= TF2_ECN_PERMIT; in tcp_ecn_input_syn_sent() 151 tp->t_flags2 &= ~TF2_ACE_PERMIT; in tcp_ecn_input_syn_sent() 156 tp->t_flags2 |= TF2_ACE_PERMIT; in tcp_ecn_input_syn_sent() 157 tp->t_flags2 &= ~TF2_ECN_PERMIT; in tcp_ecn_input_syn_sent() 158 tp->t_scep = 5; in tcp_ecn_input_syn_sent() 164 tp->t_flags2 |= TF2_ACE_PERMIT; in tcp_ecn_input_syn_sent() 165 tp->t_flags2 &= ~TF2_ECN_PERMIT; in tcp_ecn_input_syn_sent() [all …]
|
| H A D | tcp_usrreq.c | 126 static int tcp_pru_options_support(struct tcpcb *tp, int flags); 129 tcp_bblog_pru(struct tcpcb *tp, uint32_t pru, int error) in tcp_bblog_pru() argument 133 KASSERT(tp != NULL, ("tcp_bblog_pru: tp == NULL")); in tcp_bblog_pru() 134 INP_WLOCK_ASSERT(tptoinpcb(tp)); in tcp_bblog_pru() 135 if (tcp_bblogging_on(tp)) { in tcp_bblog_pru() 136 lgb = tcp_log_event(tp, NULL, NULL, NULL, TCP_LOG_PRU, error, in tcp_bblog_pru() 157 struct tcpcb *tp = NULL; in tcp_usr_attach() local 173 tp = tcp_newtcpcb(inp, NULL); in tcp_usr_attach() 174 if (tp == NULL) { in tcp_usr_attach() 179 tp->t_state = TCPS_CLOSED; in tcp_usr_attach() [all …]
|
| H A D | tcp_offload.c | 112 tcp_offload_listen_start(struct tcpcb *tp) in tcp_offload_listen_start() argument 115 INP_WLOCK_ASSERT(tptoinpcb(tp)); in tcp_offload_listen_start() 117 EVENTHANDLER_INVOKE(tcp_offload_listen_start, tp); in tcp_offload_listen_start() 121 tcp_offload_listen_stop(struct tcpcb *tp) in tcp_offload_listen_stop() argument 124 INP_WLOCK_ASSERT(tptoinpcb(tp)); in tcp_offload_listen_stop() 126 EVENTHANDLER_INVOKE(tcp_offload_listen_stop, tp); in tcp_offload_listen_stop() 130 tcp_offload_input(struct tcpcb *tp, struct mbuf *m) in tcp_offload_input() argument 132 struct toedev *tod = tp->tod; in tcp_offload_input() 134 KASSERT(tod != NULL, ("%s: tp->tod is NULL, tp %p", __func__, tp)); in tcp_offload_input() 135 INP_WLOCK_ASSERT(tptoinpcb(tp)); in tcp_offload_input() [all …]
|
| H A D | tcp_hpts_test.c | 57 #define tcp_hpts_init(pace, tp) __tcp_hpts_init((pace), (tp)) argument 58 #define tcp_hpts_remove(pace, tp) __tcp_hpts_remove((pace), (tp)) argument 59 #define tcp_hpts_insert(pace, tp, usecs, diag) \ argument 60 __tcp_hpts_insert((pace), (tp), (usecs), (diag)) 61 #define tcp_set_hpts(pace, tp) __tcp_set_hpts((pace), (tp)) argument 153 dump_tcpcb(struct tcpcb *tp) in dump_tcpcb() argument 155 struct ktest_test_context *ctx = tp->t_fb_ptr; in dump_tcpcb() 156 struct inpcb *inp = &tp->t_inpcb; in dump_tcpcb() 158 KTEST_LOG(ctx, "tcp_control_block(%p)", tp); in dump_tcpcb() 161 KTEST_LOG(ctx, " t_in_hpts: %d", tp->t_in_hpts); in dump_tcpcb() [all …]
|
| /freebsd/sys/kern/ |
| H A D | tty.c | 74 static void tty_rel_free(struct tty *tp); 98 #define TTY_CALLOUT(tp,d) (dev2unit(d) & TTYUNIT_CALLOUT) argument 123 tty_watermarks(struct tty *tp) in tty_watermarks() argument 129 if (tp->t_termios.c_cflag & CREAD) in tty_watermarks() 130 bs = MIN(tp->t_termios.c_ispeed / 5, TTYBUF_MAX); in tty_watermarks() 131 error = ttyinq_setsize(&tp->t_inq, tp, bs); in tty_watermarks() 136 tp->t_inlow = (ttyinq_getallocatedsize(&tp->t_inq) * 9) / 10; in tty_watermarks() 139 bs = MIN(tp->t_termios.c_ospeed / 5, TTYBUF_MAX); in tty_watermarks() 140 error = ttyoutq_setsize(&tp->t_outq, tp, bs); in tty_watermarks() 145 tp->t_outlow = (ttyoutq_getallocatedsize(&tp->t_outq) * 9) / 10; in tty_watermarks() [all …]
|
| H A D | tty_ttydisc.c | 61 #define CMP_CC(v,c) (tp->t_termios.c_cc[v] != _POSIX_VDISABLE && \ 62 tp->t_termios.c_cc[v] == (c)) 63 #define CMP_FLAG(field,opt) (tp->t_termios.c_ ## field ## flag & (opt)) 92 ttydisc_open(struct tty *tp) in ttydisc_open() argument 94 ttydisc_optimize(tp); in ttydisc_open() 98 ttydisc_close(struct tty *tp) in ttydisc_close() argument 102 tp->t_flags &= ~(TF_STOPPED|TF_HIWAT|TF_ZOMBIE); in ttydisc_close() 103 tp->t_termios.c_lflag &= ~FLUSHO; in ttydisc_close() 109 tty_flush(tp, FREAD | FWRITE); in ttydisc_close() 111 if (ttyhook_hashook(tp, close)) in ttydisc_close() [all …]
|
| H A D | tty_pts.c | 113 struct tty *tp = fp->f_data; in ptsdev_read() local 114 struct pts_softc *psc = tty_softc(tp); in ptsdev_read() 121 tty_lock(tp); in ptsdev_read() 132 tty_unlock(tp); in ptsdev_read() 146 if (ttydisc_getc_poll(tp)) { in ptsdev_read() 153 tty_unlock(tp); in ptsdev_read() 157 tty_lock(tp); in ptsdev_read() 160 error = ttydisc_getc_uio(tp, uio); in ptsdev_read() 173 error = cv_wait_sig(&psc->pts_outwait, tp->t_mtx); in ptsdev_read() 178 tty_unlock(tp); in ptsdev_read() [all …]
|
| /freebsd/contrib/nvi/vi/ |
| H A D | v_txt.c | 224 #define UPDATE_POSITION(sp, tp) do { \ argument 225 (sp)->lno = (tp)->lno; \ 226 (sp)->cno = (tp)->cno; \ 251 TEXT *ntp, *tp; /* Input text structures. */ in v_txt() local 293 tp = TAILQ_FIRST(tiqh); in v_txt() 294 if (TAILQ_NEXT(tp, q) != NULL || in v_txt() 295 tp->lb_len < (len + 32) * sizeof(CHAR_T)) { in v_txt() 299 tp->ai = tp->insert = tp->offset = tp->owrite = 0; in v_txt() 301 tp->len = len; in v_txt() 302 BINC_RETW(sp, tp->lb, tp->lb_len, len); in v_txt() [all …]
|
| /freebsd/sys/sys/ |
| H A D | ttydevsw.h | 43 typedef int tsw_open_t(struct tty *tp); 44 typedef void tsw_close_t(struct tty *tp); 45 typedef void tsw_outwakeup_t(struct tty *tp); 46 typedef void tsw_inwakeup_t(struct tty *tp); 47 typedef int tsw_ioctl_t(struct tty *tp, u_long cmd, caddr_t data, 49 typedef int tsw_cioctl_t(struct tty *tp, int unit, u_long cmd, caddr_t data, 51 typedef int tsw_param_t(struct tty *tp, struct termios *t); 52 typedef int tsw_modem_t(struct tty *tp, int sigon, int sigoff); 53 typedef int tsw_mmap_t(struct tty *tp, vm_ooffset_t offset, 55 typedef void tsw_pktnotify_t(struct tty *tp, char event); [all …]
|
| H A D | ttyhook.h | 43 typedef int th_rint_t(struct tty *tp, char c, int flags); 44 typedef size_t th_rint_bypass_t(struct tty *tp, const void *buf, size_t len); 45 typedef void th_rint_done_t(struct tty *tp); 46 typedef size_t th_rint_poll_t(struct tty *tp); 48 typedef size_t th_getc_inject_t(struct tty *tp, void *buf, size_t len); 49 typedef void th_getc_capture_t(struct tty *tp, const void *buf, size_t len); 50 typedef size_t th_getc_poll_t(struct tty *tp); 52 typedef void th_close_t(struct tty *tp); 72 #define ttyhook_softc(tp) ((tp)->t_hooksoftc) argument 73 #define ttyhook_hashook(tp,hook) ((tp)->t_hook != NULL && \ argument [all …]
|
| H A D | tty.h | 167 void tty_rel_pgrp(struct tty *tp, struct pgrp *pgrp); 168 void tty_rel_sess(struct tty *tp, struct session *sess); 169 void tty_rel_gone(struct tty *tp); 171 #define tty_lock(tp) mtx_lock((tp)->t_mtx) argument 172 #define tty_unlock(tp) mtx_unlock((tp)->t_mtx) argument 173 #define tty_lock_owned(tp) mtx_owned((tp)->t_mtx) argument 174 #define tty_assert_locked(tp) mtx_assert((tp)->t_mtx, MA_OWNED) argument 175 #define tty_getlock(tp) ((tp)->t_mtx) argument 178 #define tty_lock_assert(tp, ma) mtx_assert((tp)->t_mtx, (ma)) argument 181 int tty_makedevf(struct tty *tp, struct ucred *cred, int flags, [all …]
|
| /freebsd/contrib/nvi/ex/ |
| H A D | ex_txt.c | 57 TEXT ait, *ntp, *tp; in ex_txt() local 71 tp = TAILQ_FIRST(tiqh); in ex_txt() 72 if (TAILQ_NEXT(tp, q) != NULL || tp->lb_len < 32) { in ex_txt() 76 tp->len = 0; in ex_txt() 78 newtp: if ((tp = text_init(sp, NULL, 0, 32)) == NULL) in ex_txt() 80 TAILQ_INSERT_HEAD(tiqh, tp, q); in ex_txt() 84 tp->lno = sp->lno + 1; in ex_txt() 104 if (v_txt_auto(sp, sp->lno, NULL, 0, tp)) in ex_txt() 107 txt_prompt(sp, tp, prompt, flags); in ex_txt() 144 BINC_GOTOW(sp, tp->lb, tp->lb_len, tp->len + 1); in ex_txt() [all …]
|
| /freebsd/sys/net/ |
| H A D | if_tuntap.c | 158 #define TUN_LOCK(tp) mtx_lock(&(tp)->tun_mtx) argument 159 #define TUN_UNLOCK(tp) mtx_unlock(&(tp)->tun_mtx) argument 160 #define TUN_LOCK_ASSERT(tp) mtx_assert(&(tp)->tun_mtx, MA_OWNED); argument 221 static int tun_busy_locked(struct tuntap_softc *tp); 222 static void tun_unbusy_locked(struct tuntap_softc *tp); 223 static int tun_busy(struct tuntap_softc *tp); 224 static void tun_unbusy(struct tuntap_softc *tp); 349 tun_busy_locked(struct tuntap_softc *tp) in tun_busy_locked() argument 352 TUN_LOCK_ASSERT(tp); in tun_busy_locked() 353 if ((tp->tun_flags & TUN_DYING) != 0) { in tun_busy_locked() [all …]
|
| /freebsd/contrib/tcpdump/ |
| H A D | print-dhcp6.c | 285 const u_char *tp; in dhcp6opt_print() local 323 tp = (const u_char *)(dh6o + 1); in dhcp6opt_print() 324 switch (GET_BE_U_2(tp)) { in dhcp6opt_print() 328 GET_BE_U_2(tp + 2), in dhcp6opt_print() 329 GET_BE_U_4(tp + 4)); in dhcp6opt_print() 332 GET_U_1(tp + i)); in dhcp6opt_print() 342 ND_PRINT(" enterprise %u ", GET_BE_U_4(tp + 2)); in dhcp6opt_print() 345 GET_U_1(tp + i)); in dhcp6opt_print() 356 GET_BE_U_2(tp + 2)); in dhcp6opt_print() 359 GET_U_1(tp + i)); in dhcp6opt_print() [all …]
|
| H A D | addrtoname.c | 435 struct enamemem *tp; in lookup_emem() local 441 tp = &enametable[(i ^ j) & (HASHNAMESIZE-1)]; in lookup_emem() 442 while (tp->e_nxt) in lookup_emem() 443 if (tp->e_addr0 == i && in lookup_emem() 444 tp->e_addr1 == j && in lookup_emem() 445 tp->e_addr2 == k) in lookup_emem() 446 return tp; in lookup_emem() 448 tp = tp->e_nxt; in lookup_emem() 449 tp->e_addr0 = (u_short)i; in lookup_emem() 450 tp->e_addr1 = (u_short)j; in lookup_emem() [all …]
|
| /freebsd/contrib/lib9p/ |
| H A D | threadpool.c | 38 static void l9p_threadpool_rflush(struct l9p_threadpool *tp, 44 struct l9p_threadpool *tp; in l9p_responder() local 48 tp = worker->ltw_tp; in l9p_responder() 51 pthread_mutex_lock(&tp->ltp_mtx); in l9p_responder() 52 while (STAILQ_EMPTY(&tp->ltp_replyq) && !worker->ltw_exiting) in l9p_responder() 53 pthread_cond_wait(&tp->ltp_reply_cv, &tp->ltp_mtx); in l9p_responder() 55 pthread_mutex_unlock(&tp->ltp_mtx); in l9p_responder() 60 req = STAILQ_FIRST(&tp->ltp_replyq); in l9p_responder() 61 STAILQ_REMOVE_HEAD(&tp->ltp_replyq, lr_worklink); in l9p_responder() 68 l9p_threadpool_rflush(tp, req); in l9p_responder() [all …]
|
| /freebsd/sys/netinet/tcp_stacks/ |
| H A D | rack_bbr_common.c | 323 ctf_process_inbound_raw(struct tcpcb *tp, struct mbuf *m, int has_pkt) in ctf_process_inbound_raw() argument 364 inp = tptoinpcb(tp); in ctf_process_inbound_raw() 383 ("tp:%p m:%p etype:0x%x -- not IP or IPv6", tp, m, etype)); in ctf_process_inbound_raw() 429 KASSERT((tp->t_flags2 & TF2_MBUF_ACKCMP), in ctf_process_inbound_raw() 430 ("tp:%p no TF2_MBUF_ACKCMP flags?", tp)); in ctf_process_inbound_raw() 445 retval = (*tp->t_fb->tfb_do_segment_nounlock)(tp, m, th, in ctf_process_inbound_raw() 468 ctf_do_queued_segments(struct tcpcb *tp, int have_pkt) in ctf_do_queued_segments() argument 473 if ((m = STAILQ_FIRST(&tp->t_inqueue)) != NULL) { in ctf_do_queued_segments() 474 STAILQ_INIT(&tp->t_inqueue); in ctf_do_queued_segments() 475 if (ctf_process_inbound_raw(tp, m, have_pkt)) { in ctf_do_queued_segments() [all …]
|
| /freebsd/contrib/mandoc/ |
| H A D | tbl_term.c | 156 term_tbl(struct termp *tp, const struct tbl_span *sp) 180 tp->flags |= TERMP_NOSPACE | TERMP_NONOSPACE; in term_tbl() 181 save_offset = tp->tcol->offset; in term_tbl() 182 enw = term_len(tp, 1); in term_tbl() 189 if (tp->tbl.cols == NULL) { in term_tbl() 190 borders_locale = tp->enc == TERMENC_UTF8 ? in term_tbl() 193 tp->tbl.len = term_tbl_len; in term_tbl() 194 tp->tbl.slen = term_tbl_strlen; in term_tbl() 195 tp->tbl.arg = tp; in term_tbl() 165 term_tbl(struct termp * tp,const struct tbl_span * sp) term_tbl() argument 570 tbl_hrule(struct termp * tp,const struct tbl_span * spp,const struct tbl_span * sp,const struct tbl_span * spn,int flags) tbl_hrule() argument 715 tbl_data(struct termp * tp,const struct tbl_opts * opts,const struct tbl_cell * cp,const struct tbl_dat * dp,const struct roffcol * col) tbl_data() argument 767 tbl_fill_string(struct termp * tp,const char * cp,size_t len) tbl_fill_string() argument 777 tbl_fill_char(struct termp * tp,char c,size_t len) tbl_fill_char() argument 787 tbl_fill_border(struct termp * tp,int c,size_t len) tbl_fill_border() argument 799 tbl_direct_border(struct termp * tp,int c,size_t len) tbl_direct_border() argument 812 tbl_literal(struct termp * tp,const struct tbl_dat * dp,const struct roffcol * col) tbl_literal() argument 857 tbl_number(struct termp * tp,const struct tbl_opts * opts,const struct tbl_dat * dp,const struct roffcol * col) tbl_number() argument 924 tbl_word(struct termp * tp,const struct tbl_dat * dp) tbl_word() argument [all...] |
| /freebsd/contrib/ncurses/include/ |
| H A D | term_entry.h | 57 #define NUM_BOOLEANS(tp) (tp)->num_Booleans argument 58 #define NUM_NUMBERS(tp) (tp)->num_Numbers argument 59 #define NUM_STRINGS(tp) (tp)->num_Strings argument 60 #define EXT_NAMES(tp,i,limit,index,table) (i >= limit) ? tp->ext_Names[index] : table[i] argument 62 #define NUM_BOOLEANS(tp) BOOLCOUNT 63 #define NUM_NUMBERS(tp) NUMCOUNT 64 #define NUM_STRINGS(tp) STRCOUNT 65 #define EXT_NAMES(tp,i,limit,index,table) table[i] 68 #define NUM_EXT_NAMES(tp) (unsigned) ((tp)->ext_Booleans + (tp)->ext_Numbers + (tp)->ext_Strings) argument 70 #define for_each_boolean(n,tp) for(n = 0; n < NUM_BOOLEANS(tp); n++) argument [all …]
|
| /freebsd/contrib/ncurses/ncurses/trace/ |
| H A D | trace_xnames.c | 42 _nc_trace_xnames(TERMTYPE *tp GCC_UNUSED) in NCURSES_EXPORT() 46 int limit = tp->ext_Booleans + tp->ext_Numbers + tp->ext_Strings; in NCURSES_EXPORT() 50 int begin_num = tp->ext_Booleans; in NCURSES_EXPORT() 51 int begin_str = tp->ext_Booleans + tp->ext_Numbers; in NCURSES_EXPORT() 54 tp->term_names, in NCURSES_EXPORT() 56 tp->ext_Booleans, tp->ext_Numbers, tp->ext_Strings, in NCURSES_EXPORT() 57 tp->num_Booleans, tp->num_Numbers, tp->num_Strings); in NCURSES_EXPORT() 64 tp->ext_Names[n], in NCURSES_EXPORT() 65 _nc_visbuf(tp->Strings[tp->num_Strings + m - tp->ext_Strings])); in NCURSES_EXPORT() 68 tp->ext_Names[n], in NCURSES_EXPORT() [all …]
|
| /freebsd/contrib/unbound/validator/ |
| H A D | autotrust.c | 330 /** create tp */ 335 struct trust_anchor* tp = (struct trust_anchor*)calloc(1, sizeof(*tp)); in autr_tp_create() local 336 if(!tp) return NULL; in autr_tp_create() 337 tp->name = memdup(own, own_len); in autr_tp_create() 338 if(!tp->name) { in autr_tp_create() 339 free(tp); in autr_tp_create() 342 tp->namelen = own_len; in autr_tp_create() 343 tp->namelabs = dname_count_labels(tp in autr_tp_create() 394 autr_point_delete(struct trust_anchor * tp) autr_point_delete() argument 423 struct trust_anchor* tp; find_add_tp() local 445 add_trustanchor_frm_rr(struct val_anchors * anchors,uint8_t * rr,size_t rr_len,size_t dname_len,struct trust_anchor ** tp) add_trustanchor_frm_rr() argument 477 add_trustanchor_frm_str(struct val_anchors * anchors,char * str,struct trust_anchor ** tp,uint8_t * origin,size_t origin_len,uint8_t ** prev,size_t * prev_len,int * skip) add_trustanchor_frm_str() argument 534 struct trust_anchor* tp = NULL; load_trustanchor() local 746 autr_assemble(struct trust_anchor * tp) autr_assemble() argument 816 struct trust_anchor *tp; parse_id() local 856 struct trust_anchor* tp = *anchor; parse_var_line() local 998 struct trust_anchor *tp = NULL, *tp2; autr_read_file() local 1114 autr_write_contents(FILE * out,char * fn,struct trust_anchor * tp) autr_write_contents() argument 1188 autr_write_file(struct module_env * env,struct trust_anchor * tp) autr_write_file() argument 1262 verify_dnskey(struct module_env * env,struct val_env * ve,struct trust_anchor * tp,struct ub_packed_rrset_key * rrset,struct module_qstate * qstate) verify_dnskey() argument 1420 find_key(struct trust_anchor * tp,uint16_t t,uint8_t * rdata,size_t rdata_len,struct autr_ta ** result) find_key() argument 1440 add_key(struct trust_anchor * tp,uint32_t ttl,uint8_t * rdata,size_t rdata_len) add_key() argument 1480 set_tp_times(struct trust_anchor * tp,time_t rrsig_exp_interval,time_t origttl,int * changed) set_tp_times() argument 1524 init_events(struct trust_anchor * tp) init_events() argument 1535 check_contains_revoked(struct module_env * env,struct val_env * ve,struct trust_anchor * tp,struct ub_packed_rrset_key * dnskey_rrset,int * changed,struct module_qstate * qstate) check_contains_revoked() argument 1627 update_events(struct module_env * env,struct val_env * ve,struct trust_anchor * tp,struct ub_packed_rrset_key * dnskey_rrset,int * changed) update_events() argument 1862 init_zsk_to_ksk(struct module_env * env,struct trust_anchor * tp,int * changed) init_zsk_to_ksk() argument 1894 remove_missing_trustanchors(struct module_env * env,struct trust_anchor * tp,int * changed) remove_missing_trustanchors() argument 1956 do_statetable(struct module_env * env,struct trust_anchor * tp,int * changed) do_statetable() argument 1971 autr_holddown_exceed(struct module_env * env,struct trust_anchor * tp,int * c) autr_holddown_exceed() argument 1983 autr_cleanup_keys(struct trust_anchor * tp) autr_cleanup_keys() argument 2059 set_next_probe(struct module_env * env,struct trust_anchor * tp,struct ub_packed_rrset_key * dnskey_rrset) set_next_probe() argument 2102 autr_tp_remove(struct module_env * env,struct trust_anchor * tp,struct ub_packed_rrset_key * dnskey_rrset) autr_tp_remove() argument 2155 autr_process_prime(struct module_env * env,struct val_env * ve,struct trust_anchor * tp,struct ub_packed_rrset_key * dnskey_rrset,struct module_qstate * qstate) autr_process_prime() argument 2288 autr_debug_print_tp(struct trust_anchor * tp) autr_debug_print_tp() argument 2327 struct trust_anchor* tp; autr_debug_print() local 2358 probe_anchor(struct module_env * env,struct trust_anchor * tp) probe_anchor() argument 2411 struct trust_anchor* tp; todo_probe() local 2446 struct trust_anchor* tp; autr_probe_timer() local [all...] |