Home
last modified time | relevance | path

Searched refs:t_call (Results 1 – 25 of 41) sorted by relevance

12

/titanic_41/usr/src/uts/common/sys/
H A Dtiuser.h131 struct t_call { struct
197 extern int t_accept(int fildes, int resfd, struct t_call *call);
201 extern int t_connect(int fildes, struct t_call *sndcall,
202 struct t_call *rcvcall);
208 extern int t_listen(int fildes, struct t_call *call);
214 extern int t_rcvconnect(int fildes, struct t_call *call);
220 extern int t_snddis(int fildes, struct t_call *call);
H A Dt_kuser.h97 extern int t_kconnect(TIUSER *, struct t_call *, struct t_call *);
/titanic_41/usr/src/cmd/listen/
H A Dnlsaddr.c110 struct t_call *
115 struct t_call *call;
125 return ((struct t_call *)0);
128 if (!(call = (struct t_call *)t_alloc(fd, T_CALL, T_NONE))) {
130 return ((struct t_call *)0);
157 return((struct t_call *)0);
H A Dlisten.c180 static void clr_call(struct t_call *call);
1075 struct t_call *call; in doevent()
1133 struct t_call *call; in send_dis()
1167 struct t_call *call; in trycon()
1494 struct t_call *call; in senviron()
1608 clr_call(struct t_call *call) in clr_call()
1749 if ((tmp->c_cp = (struct t_call *) t_alloc(bindfd, T_CALL,
1878 struct t_call *call;
/titanic_41/usr/src/lib/libnsl/nsl/
H A Dtx.h285 extern int _t_rcv_conn_con(struct _ti_user *, struct t_call *, struct strbuf *,
287 extern int _t_snd_conn_req(struct _ti_user *, const struct t_call *,
304 extern int _tx_accept(int, int, const struct t_call *, int);
308 extern int _tx_connect(int, const struct t_call *, struct t_call *, int);
315 extern int _tx_listen(int, struct t_call *, int);
320 extern int _tx_rcvconnect(int, struct t_call *, int);
326 extern int _tx_snddis(int, const struct t_call *, int);
H A Dtli_wrappers.c44 t_accept(int fd, int resfd, struct t_call *call) in t_accept()
68 t_connect(int fd, struct t_call *sndcall, struct t_call *rcvcall) in t_connect()
107 t_listen(int fd, struct t_call *call) in t_listen()
142 t_rcvconnect(int fd, struct t_call *call) in t_rcvconnect()
178 t_snddis(int fd, struct t_call *call) in t_snddis()
H A Dxti_wrappers.c58 _xti_accept(int fd, int resfd, const struct t_call *call) in _xti_accept()
64 _xti_xns5_accept(int fd, int resfd, const struct t_call *call) in _xti_xns5_accept()
88 _xti_connect(int fd, const struct t_call *sndcall, struct t_call *rcvcall) in _xti_connect()
128 _xti_listen(int fd, struct t_call *call) in _xti_listen()
158 _xti_rcvconnect(int fd, struct t_call *call) in _xti_rcvconnect()
220 _xti_snddis(int fd, const struct t_call *call) in _xti_snddis()
H A Dt_connect.c56 const struct t_call *sndcall, in _tx_connect()
57 struct t_call *rcvcall, in _tx_connect()
H A Dt_free.c46 struct t_call *call; in _tx_free()
69 p.call = (struct t_call *)ptr; in _tx_free()
H A D_conn_util.c59 const struct t_call *call, in _t_snd_conn_req()
154 struct t_call *call, in _t_rcv_conn_con()
H A Dt_rcvconnect.c52 _tx_rcvconnect(int fd, struct t_call *call, int api_semantics) in _tx_rcvconnect()
H A Dt_alloc.c59 struct t_call *call; in _tx_alloc()
123 if ((p.call = calloc(1, sizeof (struct t_call))) == NULL) in _tx_alloc()
/titanic_41/usr/src/head/
H A Dxti.h334 struct t_call { struct
484 extern int t_accept(int, int, struct t_call *);
487 extern int t_connect(int, struct t_call *, struct t_call *);
494 extern int t_snddis(int, struct t_call *);
498 extern int t_accept(int, int, const struct t_call *);
501 extern int t_connect(int, const struct t_call *, struct t_call *);
508 extern int t_snddis(int, const struct t_call *);
516 extern int t_listen(int, struct t_call *);
518 extern int t_rcvconnect(int, struct t_call *);
H A Dlisten.h94 struct t_call *c_cp;
/titanic_41/usr/src/lib/libnls/common/
H A Dnlsenv.c128 struct t_call *
131 struct t_call *call; in nlsgetcall()
134 if (!(call = (struct t_call *) calloc(1, sizeof(struct t_call)))) in nlsgetcall()
135 return((struct t_call *)0); in nlsgetcall()
H A Dnlsdata.c35 struct t_call *_nlscall; /* call struct allocated by routines */
/titanic_41/usr/src/lib/libnsl/rpc/
H A Dsvc_vc.c97 struct t_call *t_call; member
180 if (r->t_call) in svc_vc_xprtfree()
181 (void) t_free((char *)r->t_call, T_CALL); in svc_vc_xprtfree()
252 r->t_call = (struct t_call *)t_alloc(fd, T_CALL, T_ADDR | T_OPT); in svc_vc_create_private()
253 if (r->t_call == NULL) { in svc_vc_create_private()
266 (void) t_free((char *)r->t_call, T_CALL); in svc_vc_create_private()
358 r->t_call = (struct t_call *)t_alloc(fd, T_CALL, T_ADDR | T_OPT); in svc_vc_xprtcopy()
359 if (r->t_call == NULL) { in svc_vc_xprtcopy()
683 if (t_listen(xprt->xp_fd, r->t_call) == -1) { in rendezvous_request()
729 struct t_call *t_call; member
[all …]
/titanic_41/usr/src/cmd/cmd-inet/usr.lib/inetd/
H A Dtlx.c384 static struct t_call *
387 struct t_call *call; in get_new_conind()
390 if ((call = (struct t_call *)t_alloc(fd, T_CALL, T_ALL)) == NULL) { in get_new_conind()
405 queue_conind(uu_list_t *queue, struct t_call *call) in queue_conind()
425 struct t_call *
428 struct t_call *ret; in dequeue_conind()
453 struct t_call *call; in process_tlook()
539 struct t_call *call; in tlx_accept()
H A Dinetd_impl.h285 extern struct t_call *dequeue_conind(uu_list_t *);
286 extern int queue_conind(uu_list_t *, struct t_call *);
/titanic_41/usr/src/uts/common/ktli/
H A Dt_kfree.c71 struct t_call *call; in t_kfree()
95 p.call = (struct t_call *)ptr; in t_kfree()
102 kmem_free(ptr, sizeof (struct t_call)); in t_kfree()
H A Dt_kalloc.c74 struct t_call *call; in t_kalloc()
100 p.call = kmem_zalloc(sizeof (struct t_call), KM_SLEEP); in t_kalloc()
H A Dt_kconnect.c69 t_kconnect(TIUSER *tiptr, struct t_call *sndcall, struct t_call *rcvcall) in t_kconnect()
/titanic_41/usr/src/cmd/cvcd/sparc/sun4u/starfire/
H A Dcvcd.c556 struct t_call *tcall;
558 tcall = (struct t_call *)t_alloc(fd, T_CALL, T_ALL);
559 if (tcall == (struct t_call *)NULL) {
583 struct t_call *tcall;
593 tcall = (struct t_call *)t_alloc(fd, T_CALL, T_ALL);
594 if (tcall == (struct t_call *)NULL) {
/titanic_41/usr/src/lib/libnsl/dial/
H A Dcallers.c476 struct t_call *sndcall = 0, *rcvcall = 0; in tlicall()
516 (sndcall = (struct t_call *)t_alloc(fd, T_CALL, T_ALL)) == NULL || in tlicall()
518 (rcvcall = (struct t_call *)t_alloc(fd, T_CALL, T_ALL)) == NULL) { in tlicall()
/titanic_41/usr/src/lib/libbc/inc/include/nettli/
H A Dtiuser.h145 struct t_call { struct

12