Home
last modified time | relevance | path

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

12345678910>>...42

/freebsd-10-stable/sys/kern/
Dtty_ttydisc.c85 ttydisc_open(struct tty *tp) in ttydisc_open()
91 ttydisc_close(struct tty *tp) in ttydisc_close()
111 ttydisc_read_canonical(struct tty *tp, struct uio *uio, int ioflag) in ttydisc_read_canonical()
184 ttydisc_read_raw_no_timer(struct tty *tp, struct uio *uio, int ioflag) in ttydisc_read_raw_no_timer()
223 ttydisc_read_raw_read_timer(struct tty *tp, struct uio *uio, int ioflag, in ttydisc_read_raw_read_timer()
277 ttydisc_read_raw_interbyte_timer(struct tty *tp, struct uio *uio, int ioflag) in ttydisc_read_raw_interbyte_timer()
326 ttydisc_read(struct tty *tp, struct uio *uio, int ioflag) in ttydisc_read()
369 ttydisc_write_oproc(struct tty *tp, char c) in ttydisc_write_oproc()
455 ttydisc_write(struct tty *tp, struct uio *uio, int ioflag) in ttydisc_write()
575 ttydisc_optimize(struct tty *tp) in ttydisc_optimize()
[all …]
Dtty.c96 #define TTY_CALLOUT(tp,d) (dev2unit(d) & TTYUNIT_CALLOUT) argument
105 tty_watermarks(struct tty *tp) in tty_watermarks()
126 tty_drain(struct tty *tp, int leaving) in tty_drain()
176 ttydev_enter(struct tty *tp) in ttydev_enter()
191 ttydev_leave(struct tty *tp) in ttydev_leave()
242 struct tty *tp; in ttydev_open() local
339 struct tty *tp = dev->si_drv1; in ttydev_close() local
377 tty_is_ctty(struct tty *tp, struct proc *p) in tty_is_ctty()
386 tty_wait_background(struct tty *tp, struct thread *td, int sig) in tty_wait_background()
451 struct tty *tp = dev->si_drv1; in ttydev_read() local
[all …]
Dtty_pts.c112 struct tty *tp = fp->f_data; in ptsdev_read() local
186 struct tty *tp = fp->f_data; in ptsdev_write() local
267 struct tty *tp = fp->f_data; in ptsdev_ioctl() local
395 struct tty *tp = fp->f_data; in ptsdev_poll() local
450 struct tty *tp = fp->f_data; in pts_kqops_read_detach() local
460 struct tty *tp = fp->f_data; in pts_kqops_read_event() local
476 struct tty *tp = fp->f_data; in pts_kqops_write_detach() local
486 struct tty *tp = fp->f_data; in pts_kqops_write_event() local
512 struct tty *tp = fp->f_data; in ptsdev_kqfilter() local
540 struct tty *tp = fp->f_data; in ptsdev_stat() local
[all …]
/freebsd-10-stable/contrib/atf/atf-c/
Dtp.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-10-stable/contrib/ncurses/include/
Dterm_entry.h73 #define NUM_BOOLEANS(tp) (tp)->num_Booleans argument
74 #define NUM_NUMBERS(tp) (tp)->num_Numbers argument
75 #define NUM_STRINGS(tp) (tp)->num_Strings argument
76 #define EXT_NAMES(tp,i,limit,index,table) (i >= limit) ? tp->ext_Names[index] : table[i] argument
78 #define NUM_BOOLEANS(tp) BOOLCOUNT argument
79 #define NUM_NUMBERS(tp) NUMCOUNT argument
80 #define NUM_STRINGS(tp) STRCOUNT argument
81 #define EXT_NAMES(tp,i,limit,index,table) table[i] argument
84 #define NUM_EXT_NAMES(tp) ((tp)->ext_Booleans + (tp)->ext_Numbers + (tp)->ext_Strings) argument
86 #define for_each_boolean(n,tp) for(n = 0; n < NUM_BOOLEANS(tp); n++) argument
[all …]
/freebsd-10-stable/sys/sys/
Dttyhook.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()
Dttydevsw.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 …]
Dttydisc.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-10-stable/sys/netinet/
Dtcp_sack.c157 tcp_update_sack_list(struct tcpcb *tp, tcp_seq rcv_start, tcp_seq rcv_end) in tcp_update_sack_list()
244 tcp_clean_sackreport(struct tcpcb *tp) in tcp_clean_sackreport()
258 tcp_sackhole_alloc(struct tcpcb *tp, tcp_seq start, tcp_seq end) in tcp_sackhole_alloc()
286 tcp_sackhole_free(struct tcpcb *tp, struct sackhole *hole) in tcp_sackhole_free()
302 tcp_sackhole_insert(struct tcpcb *tp, tcp_seq start, tcp_seq end, in tcp_sackhole_insert()
329 tcp_sackhole_remove(struct tcpcb *tp, struct sackhole *hole) in tcp_sackhole_remove()
353 tcp_sack_doack(struct tcpcb *tp, struct tcpopt *to, tcp_seq th_ack) in tcp_sack_doack()
563 tcp_free_sackholes(struct tcpcb *tp) in tcp_free_sackholes()
586 tcp_sack_partialack(struct tcpcb *tp, struct tcphdr *th) in tcp_sack_partialack()
648 tcp_sack_output(struct tcpcb *tp, int *sack_bytes_rexmt) in tcp_sack_output()
[all …]
Dtcp_usrreq.c133 struct tcpcb *tp = NULL; in tcp_usr_attach() local
167 struct tcpcb *tp; in tcp_detach() local
288 struct tcpcb *tp = NULL; in tcp_usr_bind() local
329 struct tcpcb *tp = NULL; in tcp6_usr_bind() local
395 struct tcpcb *tp = NULL; in tcp_usr_listen() local
440 struct tcpcb *tp = NULL; in tcp6_usr_listen() local
501 struct tcpcb *tp = NULL; in tcp_usr_connect() local
553 struct tcpcb *tp = NULL; in tcp6_usr_connect() local
664 struct tcpcb *tp = NULL; in tcp_usr_disconnect() local
698 struct tcpcb *tp = NULL; in tcp_usr_accept() local
[all …]
Dtcp_offload.c92 tcp_offload_listen_start(struct tcpcb *tp) in tcp_offload_listen_start()
101 tcp_offload_listen_stop(struct tcpcb *tp) in tcp_offload_listen_stop()
110 tcp_offload_input(struct tcpcb *tp, struct mbuf *m) in tcp_offload_input()
121 tcp_offload_output(struct tcpcb *tp) in tcp_offload_output()
146 tcp_offload_rcvd(struct tcpcb *tp) in tcp_offload_rcvd()
157 tcp_offload_ctloutput(struct tcpcb *tp, int sopt_dir, int sopt_name) in tcp_offload_ctloutput()
168 tcp_offload_detach(struct tcpcb *tp) in tcp_offload_detach()
Dtcp_input.c273 hhook_run_tcp_est_in(struct tcpcb *tp, struct tcphdr *th, struct tcpopt *to) in hhook_run_tcp_est_in()
291 cc_ack_received(struct tcpcb *tp, struct tcphdr *th, uint16_t type) in cc_ack_received()
323 cc_conn_init(struct tcpcb *tp) in cc_conn_init()
394 cc_cong_signal(struct tcpcb *tp, struct tcphdr *th, uint32_t type) in cc_cong_signal()
446 cc_post_recovery(struct tcpcb *tp, struct tcphdr *th) in cc_post_recovery()
476 #define ND6_HINT(tp) \ argument
483 #define ND6_HINT(tp) argument
496 #define DELAY_ACK(tp, tlen) \ argument
548 struct tcpcb *tp = NULL; in tcp_input() local
1509 struct tcpcb *tp, int tlen) in tcp_autorcvbuf()
[all …]
Dtcp_timer.c228 struct tcpcb *tp = xtp; in tcp_timer_delack() local
262 struct tcpcb *tp = xtp; in tcp_timer_2msl() local
341 struct tcpcb *tp = xtp; in tcp_timer_keep() local
441 struct tcpcb *tp = xtp; in tcp_timer_persist() local
519 struct tcpcb *tp = xtp; in tcp_timer_rexmt() local
773 tcp_timer_activate(struct tcpcb *tp, uint32_t timer_type, u_int delta) in tcp_timer_activate()
841 tcp_timer_active(struct tcpcb *tp, uint32_t timer_type) in tcp_timer_active()
868 tcp_timer_stop(struct tcpcb *tp, uint32_t timer_type) in tcp_timer_stop()
929 tcp_timer_to_xtimer(struct tcpcb *tp, struct tcp_timer *timer, in tcp_timer_to_xtimer()
/freebsd-10-stable/contrib/gdb/gdb/
Dthread.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-10-stable/sys/dev/uart/
Duart_tty.c151 uart_tty_open(struct tty *tp) in uart_tty_open()
165 uart_tty_close(struct tty *tp) in uart_tty_close()
185 uart_tty_outwakeup(struct tty *tp) in uart_tty_outwakeup()
210 uart_tty_inwakeup(struct tty *tp) in uart_tty_inwakeup()
227 uart_tty_ioctl(struct tty *tp, u_long cmd, caddr_t data, in uart_tty_ioctl()
247 uart_tty_param(struct tty *tp, struct termios *t) in uart_tty_param()
298 uart_tty_modem(struct tty *tp, int biton, int bitoff) in uart_tty_modem()
312 struct tty *tp; in uart_tty_intr() local
375 uart_tty_busy(struct tty *tp) in uart_tty_busy()
402 struct tty *tp; in uart_tty_attach() local
[all …]
/freebsd-10-stable/contrib/mdocml/
Dtbl_term.c63 term_tbl(struct termp *tp, const struct tbl_span *sp) in term_tbl()
220 tbl_rulewidth(struct termp *tp, const struct tbl_head *hp) in tbl_rulewidth()
244 tbl_hrule(struct termp *tp, const struct tbl_span *sp) in tbl_hrule()
266 tbl_hframe(struct termp *tp, const struct tbl_span *sp, int outer) in tbl_hframe()
280 tbl_data(struct termp *tp, const struct tbl *tbl, in tbl_data()
338 tbl_vrule(struct termp *tp, const struct tbl_head *hp) in tbl_vrule()
354 tbl_char(struct termp *tp, char c, size_t len) in tbl_char()
369 tbl_literal(struct termp *tp, const struct tbl_dat *dp, in tbl_literal()
404 tbl_number(struct termp *tp, const struct tbl *tbl, in tbl_number()
/freebsd-10-stable/sys/net/
Dif_tap.c216 tap_destroy(struct tap_softc *tp) in tap_destroy()
236 struct tap_softc *tp = ifp->if_softc; in tap_clone_destroy() local
260 struct tap_softc *tp = NULL; in tapmodevent() local
406 struct tap_softc *tp = NULL; in tapcreate() local
479 struct tap_softc *tp = NULL; in tapopen() local
527 struct tap_softc *tp = dev->si_drv1; in tapclose() local
581 struct tap_softc *tp = (struct tap_softc *)xtp; in tapifinit() local
604 struct tap_softc *tp = ifp->if_softc; in tapifioctl() local
664 struct tap_softc *tp = ifp->if_softc; in tapifstart() local
727 struct tap_softc *tp = dev->si_drv1; in tapioctl() local
[all …]
Dif_tun.c244 tun_destroy(struct tun_softc *tp) in tun_destroy()
272 struct tun_softc *tp = ifp->if_softc; in tun_clone_destroy() local
284 struct tun_softc *tp; in tunmodevent() local
330 struct tun_softc *tp = ifp->if_softc; in tunstart() local
403 struct tun_softc *tp; in tunopen() local
444 struct tun_softc *tp; in tunclose() local
500 struct tun_softc *tp = ifp->if_softc; in tuninit() local
539 struct tun_softc *tp = ifp->if_softc; in tunifioctl() local
577 struct tun_softc *tp = ifp->if_softc; in tunoutput() local
667 struct tun_softc *tp = dev->si_drv1; in tunioctl() local
[all …]
/freebsd-10-stable/sys/sparc64/sparc64/
Dpmap.c306 struct tte *tp; in pmap_bootstrap() local
754 pmap_bootstrap_set_tte(struct tte *tp, u_long vpn, u_long data) in pmap_bootstrap_set_tte()
812 struct tte *tp; in pmap_extract() local
835 struct tte *tp; in pmap_extract_and_hold() local
876 struct tte *tp; in pmap_kextract() local
889 struct tte *tp; in pmap_cache_enter() local
964 struct tte *tp; in pmap_cache_remove() local
1038 struct tte *tp; in pmap_kenter() local
1086 struct tte *tp; in pmap_kenter_flags() local
1101 struct tte *tp; in pmap_kremove() local
[all …]
/freebsd-10-stable/sys/dev/altera/jtag_uart/
Daltera_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-10-stable/sys/sparc64/include/
Dtte.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-10-stable/usr.sbin/dumpcis/
Dreadcis.c124 struct tuple *tp; in freecis() local
195 struct tuple *tp; in read_tuples() local
249 struct tuple *tp, *last_tp = 0; in read_one_tuplelist() local
346 struct tuple *tp; in find_tuple_in_list() local
360 struct tuple_info *tp; in get_tuple_info() local
371 struct tuple_info *tp; in tuple_name() local
/freebsd-10-stable/cddl/contrib/opensolaris/common/ctf/
Dctf_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-10-stable/contrib/ncurses/ncurses/tinfo/
Dlib_ti.c49 TERMTYPE *tp = &(cur_term->type); in NCURSES_EXPORT() local
70 TERMTYPE *tp = &(cur_term->type); in tigetnum() local
92 TERMTYPE *tp = &(cur_term->type); in tigetstr() local
/freebsd-10-stable/contrib/unbound/validator/
Dautotrust.c336 struct trust_anchor* tp = (struct trust_anchor*)calloc(1, sizeof(*tp)); in autr_tp_create() local
391 void autr_point_delete(struct trust_anchor* tp) in autr_point_delete()
420 struct trust_anchor* tp; in find_add_tp() local
440 size_t dname_len, struct trust_anchor** tp) in add_trustanchor_frm_rr()
472 struct trust_anchor** tp, uint8_t* origin, size_t origin_len, in add_trustanchor_frm_str()
529 struct trust_anchor* tp = NULL; in load_trustanchor() local
740 autr_assemble(struct trust_anchor* tp) in autr_assemble()
810 struct trust_anchor *tp; in parse_id() local
850 struct trust_anchor* tp = *anchor; in parse_var_line() local
992 struct trust_anchor *tp = NULL, *tp2; in autr_read_file() local
[all …]

12345678910>>...42