Home
last modified time | relevance | path

Searched defs:tp (Results 1 – 25 of 1108) sorted by relevance

12345678910>>...45

/freebsd-11-stable/sys/kern/
HDtty_ttydisc.c85 ttydisc_open(struct tty *tp) in ttydisc_open()
91 ttydisc_close(struct tty *tp) in ttydisc_close()
108 ttydisc_read_canonical(struct tty *tp, struct uio *uio, int ioflag) in ttydisc_read_canonical()
181 ttydisc_read_raw_no_timer(struct tty *tp, struct uio *uio, int ioflag) in ttydisc_read_raw_no_timer()
220 ttydisc_read_raw_read_timer(struct tty *tp, struct uio *uio, int ioflag, in ttydisc_read_raw_read_timer()
274 ttydisc_read_raw_interbyte_timer(struct tty *tp, struct uio *uio, int ioflag) in ttydisc_read_raw_interbyte_timer()
323 ttydisc_read(struct tty *tp, struct uio *uio, int ioflag) in ttydisc_read()
366 ttydisc_write_oproc(struct tty *tp, char c) in ttydisc_write_oproc()
452 ttydisc_write(struct tty *tp, struct uio *uio, int ioflag) in ttydisc_write()
572 ttydisc_optimize(struct tty *tp) in ttydisc_optimize()
[all …]
HDtty.c96 #define TTY_CALLOUT(tp,d) (dev2unit(d) & TTYUNIT_CALLOUT) argument
115 tty_watermarks(struct tty *tp) in tty_watermarks()
143 tty_drain(struct tty *tp, int leaving) in tty_drain()
205 ttydev_enter(struct tty *tp) in ttydev_enter()
220 ttydev_leave(struct tty *tp) in ttydev_leave()
267 struct tty *tp; in ttydev_open() local
366 struct tty *tp = dev->si_drv1; in ttydev_close() local
404 tty_is_ctty(struct tty *tp, struct proc *p) in tty_is_ctty()
413 tty_wait_background(struct tty *tp, struct thread *td, int sig) in tty_wait_background()
478 struct tty *tp = dev->si_drv1; in ttydev_read() local
[all …]
HDtty_pts.c114 struct tty *tp = fp->f_data; in ptsdev_read() local
188 struct tty *tp = fp->f_data; in ptsdev_write() local
261 struct tty *tp = fp->f_data; in ptsdev_ioctl() local
389 struct tty *tp = fp->f_data; in ptsdev_poll() local
444 struct tty *tp = fp->f_data; in pts_kqops_read_detach() local
454 struct tty *tp = fp->f_data; in pts_kqops_read_event() local
470 struct tty *tp = fp->f_data; in pts_kqops_write_detach() local
480 struct tty *tp = fp->f_data; in pts_kqops_write_event() local
506 struct tty *tp = fp->f_data; in ptsdev_kqfilter() local
534 struct tty *tp = fp->f_data; in ptsdev_stat() local
[all …]
/freebsd-11-stable/contrib/atf/atf-c/
HDtp.c50 find_tc(const atf_tp_t *tp, const char *ident) in find_tc()
76 atf_tp_init(atf_tp_t *tp, const char *const *config) in atf_tp_init()
102 atf_tp_fini(atf_tp_t *tp) in atf_tp_fini()
122 atf_tp_get_config(const atf_tp_t *tp) in atf_tp_get_config()
128 atf_tp_has_tc(const atf_tp_t *tp, const char *id) in atf_tp_has_tc()
135 atf_tp_get_tc(const atf_tp_t *tp, const char *id) in atf_tp_get_tc()
143 atf_tp_get_tcs(const atf_tp_t *tp) in atf_tp_get_tcs()
176 atf_tp_add_tc(atf_tp_t *tp, atf_tc_t *tc) in atf_tp_add_tc()
194 atf_tp_run(const atf_tp_t *tp, const char *tcname, const char *resfile) in atf_tp_run()
205 atf_tp_cleanup(const atf_tp_t *tp, const char *tcname) in atf_tp_cleanup()
/freebsd-11-stable/contrib/ncurses/include/
HDterm_entry.h91 #define NUM_BOOLEANS(tp) (tp)->num_Booleans argument
92 #define NUM_NUMBERS(tp) (tp)->num_Numbers argument
93 #define NUM_STRINGS(tp) (tp)->num_Strings argument
94 #define EXT_NAMES(tp,i,limit,index,table) (i >= limit) ? tp->ext_Names[index] : table[i] argument
96 #define NUM_BOOLEANS(tp) BOOLCOUNT argument
97 #define NUM_NUMBERS(tp) NUMCOUNT argument
98 #define NUM_STRINGS(tp) STRCOUNT argument
99 #define EXT_NAMES(tp,i,limit,index,table) table[i] argument
102 #define NUM_EXT_NAMES(tp) (unsigned) ((tp)->ext_Booleans + (tp)->ext_Numbers + (tp)->ext_Strings) argument
104 #define for_each_boolean(n,tp) for(n = 0; n < NUM_BOOLEANS(tp); n++) argument
[all …]
/freebsd-11-stable/sys/sys/
HDttyhook.h72 #define ttyhook_softc(tp) ((tp)->t_hooksoftc) argument
73 #define ttyhook_hashook(tp,hook) ((tp)->t_hook != NULL && \ argument
77 ttyhook_rint(struct tty *tp, char c, int flags) in ttyhook_rint()
86 ttyhook_rint_bypass(struct tty *tp, const void *buf, size_t len) in ttyhook_rint_bypass()
95 ttyhook_rint_done(struct tty *tp) in ttyhook_rint_done()
104 ttyhook_rint_poll(struct tty *tp) in ttyhook_rint_poll()
113 ttyhook_getc_inject(struct tty *tp, void *buf, size_t len) in ttyhook_getc_inject()
122 ttyhook_getc_capture(struct tty *tp, const void *buf, size_t len) in ttyhook_getc_capture()
131 ttyhook_getc_poll(struct tty *tp) in ttyhook_getc_poll()
140 ttyhook_close(struct tty *tp) in ttyhook_close()
HDttydevsw.h84 ttydevsw_open(struct tty *tp) in ttydevsw_open()
94 ttydevsw_close(struct tty *tp) in ttydevsw_close()
104 ttydevsw_outwakeup(struct tty *tp) in ttydevsw_outwakeup()
118 ttydevsw_inwakeup(struct tty *tp) in ttydevsw_inwakeup()
132 ttydevsw_ioctl(struct tty *tp, u_long cmd, caddr_t data, struct thread *td) in ttydevsw_ioctl()
142 ttydevsw_cioctl(struct tty *tp, int unit, u_long cmd, caddr_t data, in ttydevsw_cioctl()
153 ttydevsw_param(struct tty *tp, struct termios *t) in ttydevsw_param()
162 ttydevsw_modem(struct tty *tp, int sigon, int sigoff) in ttydevsw_modem()
171 ttydevsw_mmap(struct tty *tp, vm_ooffset_t offset, vm_paddr_t *paddr, in ttydevsw_mmap()
181 ttydevsw_pktnotify(struct tty *tp, char event) in ttydevsw_pktnotify()
[all …]
HDttydisc.h53 #define ttydisc_can_bypass(tp) ((tp)->t_flags & TF_BYPASS) argument
70 ttydisc_read_poll(struct tty *tp) in ttydisc_read_poll()
79 ttydisc_write_poll(struct tty *tp) in ttydisc_write_poll()
/freebsd-11-stable/contrib/gdb/gdb/
HDthread.c72 struct thread_info *tp; in delete_step_resume_breakpoint() local
86 free_thread (struct thread_info *tp) in free_thread()
104 struct thread_info *tp, *tpnext; in init_thread_list() local
125 struct thread_info *tp; in add_thread() local
139 struct thread_info *tp, *tpprev; in delete_thread() local
161 struct thread_info *tp; in find_thread_id() local
174 struct thread_info *tp; in find_thread_pid() local
201 struct thread_info *tp; in iterate_over_threads() local
213 struct thread_info *tp; in valid_thread_id() local
225 struct thread_info *tp; in pid_to_thread_id() local
[all …]
/freebsd-11-stable/sys/netinet/
HDtcp_usrreq.c142 struct tcpcb *tp = NULL; in tcp_usr_attach() local
177 struct tcpcb *tp; in tcp_detach() local
298 struct tcpcb *tp = NULL; in tcp_usr_bind() local
340 struct tcpcb *tp = NULL; in tcp6_usr_bind() local
407 struct tcpcb *tp = NULL; in tcp_usr_listen() local
453 struct tcpcb *tp = NULL; in tcp6_usr_listen() local
515 struct tcpcb *tp = NULL; in tcp_usr_connect() local
568 struct tcpcb *tp = NULL; in tcp6_usr_connect() local
689 struct tcpcb *tp = NULL; in tcp_usr_disconnect() local
724 struct tcpcb *tp = NULL; in tcp_usr_accept() local
[all …]
HDtcp_sack.c159 tcp_update_dsack_list(struct tcpcb *tp, tcp_seq rcv_start, tcp_seq rcv_end) in tcp_update_dsack_list()
255 tcp_update_sack_list(struct tcpcb *tp, tcp_seq rcv_start, tcp_seq rcv_end) in tcp_update_sack_list()
392 tcp_clean_dsack_blocks(struct tcpcb *tp) in tcp_clean_dsack_blocks()
434 tcp_clean_sackreport(struct tcpcb *tp) in tcp_clean_sackreport()
448 tcp_sackhole_alloc(struct tcpcb *tp, tcp_seq start, tcp_seq end) in tcp_sackhole_alloc()
476 tcp_sackhole_free(struct tcpcb *tp, struct sackhole *hole) in tcp_sackhole_free()
492 tcp_sackhole_insert(struct tcpcb *tp, tcp_seq start, tcp_seq end, in tcp_sackhole_insert()
519 tcp_sackhole_remove(struct tcpcb *tp, struct sackhole *hole) in tcp_sackhole_remove()
543 tcp_sack_doack(struct tcpcb *tp, struct tcpopt *to, tcp_seq th_ack) in tcp_sack_doack()
750 tcp_free_sackholes(struct tcpcb *tp) in tcp_free_sackholes()
[all …]
HDtcp_offload.c93 tcp_offload_listen_start(struct tcpcb *tp) in tcp_offload_listen_start()
102 tcp_offload_listen_stop(struct tcpcb *tp) in tcp_offload_listen_stop()
111 tcp_offload_input(struct tcpcb *tp, struct mbuf *m) in tcp_offload_input()
122 tcp_offload_output(struct tcpcb *tp) in tcp_offload_output()
147 tcp_offload_rcvd(struct tcpcb *tp) in tcp_offload_rcvd()
158 tcp_offload_ctloutput(struct tcpcb *tp, int sopt_dir, int sopt_name) in tcp_offload_ctloutput()
169 tcp_offload_detach(struct tcpcb *tp) in tcp_offload_detach()
HDtcp_timer.c279 struct tcpcb *tp = xtp; in tcp_timer_delack() local
313 struct tcpcb *tp = xtp; in tcp_timer_2msl() local
394 struct tcpcb *tp = xtp; in tcp_timer_keep() local
496 struct tcpcb *tp = xtp; in tcp_timer_persist() local
575 struct tcpcb *tp = xtp; in tcp_timer_rexmt() local
832 tcp_timer_activate(struct tcpcb *tp, uint32_t timer_type, u_int delta) in tcp_timer_activate()
904 tcp_timer_active(struct tcpcb *tp, uint32_t timer_type) in tcp_timer_active()
934 tcp_timer_stop(struct tcpcb *tp, uint32_t timer_type) in tcp_timer_stop()
989 tcp_timer_to_xtimer(struct tcpcb *tp, struct tcp_timer *timer, in tcp_timer_to_xtimer()
HDtcp_input.c282 hhook_run_tcp_est_in(struct tcpcb *tp, struct tcphdr *th, struct tcpopt *to) in hhook_run_tcp_est_in()
300 cc_ack_received(struct tcpcb *tp, struct tcphdr *th, uint16_t type) in cc_ack_received()
332 cc_conn_init(struct tcpcb *tp) in cc_conn_init()
405 cc_cong_signal(struct tcpcb *tp, struct tcphdr *th, uint32_t type) in cc_cong_signal()
466 cc_post_recovery(struct tcpcb *tp, struct tcphdr *th) in cc_post_recovery()
489 #define DELAY_ACK(tp, tlen) \ argument
496 cc_ecnpkt_handler(struct tcpcb *tp, struct tcphdr *th, uint8_t iptos) in cc_ecnpkt_handler()
579 struct tcpcb *tp = NULL; in tcp_input() local
1527 struct tcpcb *tp, int tlen) in tcp_autorcvbuf()
1553 struct tcpcb *tp, int drop_hdrlen, int tlen, uint8_t iptos, in tcp_do_segment()
[all …]
HDtcp_reass.c201 tcp_log_reassm(struct tcpcb *tp, struct tseg_qent *q, struct tseg_qent *p, in tcp_log_reassm()
240 tcp_reass_log_dump(struct tcpcb *tp) in tcp_reass_log_dump()
252 tcp_reass_log_new_in(struct tcpcb *tp, tcp_seq seq, int len, struct mbuf *m, in tcp_reass_log_new_in()
302 tcp_reass_flush(struct tcpcb *tp) in tcp_reass_flush()
321 tcp_reass_append(struct tcpcb *tp, struct tseg_qent *last, in tcp_reass_append()
347 tcp_reass_prepend(struct tcpcb *tp, struct tseg_qent *first, struct mbuf *m, struct tcphdr *th, in tcp_reass_prepend()
383 tcp_reass_replace(struct tcpcb *tp, struct tseg_qent *q, struct mbuf *m, in tcp_reass_replace()
418 tcp_reass_merge_into(struct tcpcb *tp, struct tseg_qent *ent, in tcp_reass_merge_into()
443 tcp_reass_merge_forward(struct tcpcb *tp, struct tseg_qent *ent) in tcp_reass_merge_forward()
524 tcp_reass(struct tcpcb *tp, struct tcphdr *th, tcp_seq *seq_start, in tcp_reass()
/freebsd-11-stable/sys/net/
HDif_tap.c221 tap_destroy(struct tap_softc *tp) in tap_destroy()
247 struct tap_softc *tp = ifp->if_softc; in tap_clone_destroy() local
271 struct tap_softc *tp = NULL; in tapmodevent() local
417 struct tap_softc *tp = NULL; in tapcreate() local
490 struct tap_softc *tp = NULL; in tapopen() local
538 struct tap_softc *tp = dev->si_drv1; in tapclose() local
592 struct tap_softc *tp = (struct tap_softc *)xtp; in tapifinit() local
615 struct tap_softc *tp; in tapifioctl() local
683 struct tap_softc *tp = ifp->if_softc; in tapifstart() local
747 struct tap_softc *tp = dev->si_drv1; in tapioctl() local
[all …]
HDif_tun.c270 tun_destroy(struct tun_softc *tp) in tun_destroy()
306 struct tun_softc *tp = ifp->if_softc; in tun_clone_destroy() local
336 struct tun_softc *tp; in tun_uninit() local
389 struct tun_softc *tp = ifp->if_softc; in tunstart() local
462 struct tun_softc *tp; in tunopen() local
498 struct tun_softc *tp; in tunclose() local
569 struct tun_softc *tp = ifp->if_softc; in tuninit() local
608 struct tun_softc *tp; in tunifioctl() local
656 struct tun_softc *tp = ifp->if_softc; in tunoutput() local
746 struct tun_softc *tp = dev->si_drv1; in tunioctl() local
[all …]
/freebsd-11-stable/sys/dev/uart/
HDuart_tty.c162 uart_tty_open(struct tty *tp) in uart_tty_open()
176 uart_tty_close(struct tty *tp) in uart_tty_close()
196 uart_tty_outwakeup(struct tty *tp) in uart_tty_outwakeup()
221 uart_tty_inwakeup(struct tty *tp) in uart_tty_inwakeup()
238 uart_tty_ioctl(struct tty *tp, u_long cmd, caddr_t data, in uart_tty_ioctl()
258 uart_tty_param(struct tty *tp, struct termios *t) in uart_tty_param()
303 uart_tty_modem(struct tty *tp, int biton, int bitoff) in uart_tty_modem()
317 struct tty *tp; in uart_tty_intr() local
380 uart_tty_busy(struct tty *tp) in uart_tty_busy()
407 struct tty *tp; in uart_tty_attach() local
[all …]
/freebsd-11-stable/sys/sparc64/sparc64/
HDpmap.c307 struct tte *tp; in pmap_bootstrap() local
774 pmap_bootstrap_set_tte(struct tte *tp, u_long vpn, u_long data) in pmap_bootstrap_set_tte()
832 struct tte *tp; in pmap_extract() local
855 struct tte *tp; in pmap_extract_and_hold() local
896 struct tte *tp; in pmap_kextract() local
909 struct tte *tp; in pmap_cache_enter() local
984 struct tte *tp; in pmap_cache_remove() local
1058 struct tte *tp; in pmap_kenter() local
1106 struct tte *tp; in pmap_kenter_flags() local
1121 struct tte *tp; in pmap_kremove() local
[all …]
/freebsd-11-stable/sys/dev/altera/jtag_uart/
HDaltera_jtag_uart_tty.c210 aju_handle_input(struct altera_jtag_uart_softc *sc, struct tty *tp) in aju_handle_input()
241 aju_handle_output(struct altera_jtag_uart_softc *sc, struct tty *tp) in aju_handle_output()
302 aju_outwakeup(struct tty *tp) in aju_outwakeup()
317 struct tty *tp = sc->ajus_ttyp; in aju_io_callout() local
348 struct tty *tp = sc->ajus_ttyp; in aju_ac_callout() local
379 struct tty *tp = sc->ajus_ttyp; in aju_intr() local
396 struct tty *tp; in altera_jtag_uart_attach() local
470 struct tty *tp = sc->ajus_ttyp; in altera_jtag_uart_detach() local
/freebsd-11-stable/sys/sparc64/include/
HDtte.h129 #define TTE_GET_SIZE(tp) \ argument
131 #define TTE_GET_PAGE_SHIFT(tp) \ argument
133 #define TTE_GET_PAGE_SIZE(tp) \ argument
135 #define TTE_GET_PAGE_MASK(tp) \ argument
138 #define TTE_GET_PA(tp) \ argument
140 #define TTE_GET_VPN(tp) \ argument
142 #define TTE_GET_VA(tp) \ argument
144 #define TTE_GET_PMAP(tp) \ argument
147 #define TTE_ZERO(tp) \ argument
159 tte_match(struct tte *tp, vm_offset_t va) in tte_match()
/freebsd-11-stable/usr.sbin/dumpcis/
HDreadcis.c126 struct tuple *tp; in freecis() local
197 struct tuple *tp; in read_tuples() local
251 struct tuple *tp, *last_tp = 0; in read_one_tuplelist() local
348 struct tuple *tp; in find_tuple_in_list() local
362 struct tuple_info *tp; in get_tuple_info() local
373 struct tuple_info *tp; in tuple_name() local
/freebsd-11-stable/contrib/mdocml/
HDtbl_term.c73 term_tbl(struct termp *tp, const struct tbl_span *sp) in term_tbl()
458 tbl_hrule(struct termp *tp, const struct tbl_span *sp, int kind) in tbl_hrule()
509 tbl_data(struct termp *tp, const struct tbl_opts *opts, in tbl_data()
561 tbl_char(struct termp *tp, char c, size_t len) in tbl_char()
576 tbl_literal(struct termp *tp, const struct tbl_dat *dp, in tbl_literal()
618 tbl_number(struct termp *tp, const struct tbl_opts *opts, in tbl_number()
663 tbl_word(struct termp *tp, const struct tbl_dat *dp) in tbl_word()
/freebsd-11-stable/cddl/contrib/opensolaris/common/ctf/
HDctf_types.c31 ctf_get_ctt_size(const ctf_file_t *fp, const ctf_type_t *tp, ssize_t *sizep, in ctf_get_ctt_size()
61 const ctf_type_t *tp; in ctf_member_iter() local
112 const ctf_type_t *tp; in ctf_enum_iter() local
151 const ctf_type_t *tp = LCTF_INDEX_TO_TYPEPTR(fp, id); in ctf_type_iter() local
172 const ctf_type_t *tp; in ctf_type_resolve() local
241 const ctf_type_t *tp = in ctf_type_qlname() local
347 const ctf_type_t *tp; in ctf_type_size() local
396 const ctf_type_t *tp; in ctf_type_align() local
460 const ctf_type_t *tp; in ctf_type_kind() local
476 const ctf_type_t *tp; in ctf_type_reference() local
[all …]
/freebsd-11-stable/contrib/unbound/validator/
HDautotrust.c335 struct trust_anchor* tp = (struct trust_anchor*)calloc(1, sizeof(*tp)); in autr_tp_create() local
390 void autr_point_delete(struct trust_anchor* tp) in autr_point_delete()
419 struct trust_anchor* tp; in find_add_tp() local
441 size_t dname_len, struct trust_anchor** tp) in add_trustanchor_frm_rr()
473 struct trust_anchor** tp, uint8_t* origin, size_t origin_len, in add_trustanchor_frm_str()
530 struct trust_anchor* tp = NULL; in load_trustanchor() local
742 autr_assemble(struct trust_anchor* tp) in autr_assemble()
812 struct trust_anchor *tp; in parse_id() local
852 struct trust_anchor* tp = *anchor; in parse_var_line() local
994 struct trust_anchor *tp = NULL, *tp2; in autr_read_file() local
[all …]

12345678910>>...45