/titanic_41/usr/src/uts/common/ktli/ |
H A D | t_kconnect.c | 69 t_kconnect(TIUSER *tiptr, struct t_call *sndcall, struct t_call *rcvcall) in t_kconnect() argument 187 if (rcvcall != NULL) { in t_kconnect() 192 rcvcall->addr.maxlen); in t_kconnect() 194 rcvcall->addr.buf, len); in t_kconnect() 195 rcvcall->addr.len = len; in t_kconnect() 198 rcvcall->opt.maxlen); in t_kconnect() 200 rcvcall->opt.buf, len); in t_kconnect() 201 rcvcall->opt.len = len; in t_kconnect() 207 len = MIN(msgsz, rcvcall->udata.maxlen); in t_kconnect() 208 bcopy(bp->b_rptr, rcvcall->udata.buf, len); in t_kconnect() [all …]
|
/titanic_41/usr/src/lib/libnsl/dial/ |
H A D | callers.c | 476 struct t_call *sndcall = 0, *rcvcall = 0; in tlicall() local 518 (rcvcall = (struct t_call *)t_alloc(fd, T_CALL, T_ALL)) == NULL) { in tlicall() 522 TFREE(rcvcall, T_CALL); in tlicall() 533 TFREE(rcvcall, T_CALL); in tlicall() 572 TFREE(rcvcall, T_CALL); in tlicall() 597 TFREE(rcvcall, T_CALL); in tlicall() 610 if (t_connect(fd, sndcall, rcvcall) == 0) in tlicall() 620 TFREE(rcvcall, T_CALL); in tlicall() 630 TFREE(rcvcall, T_CALL); in tlicall()
|
/titanic_41/usr/src/lib/libnsl/nsl/ |
H A D | t_connect.c | 57 struct t_call *rcvcall, in _tx_connect() argument 135 if (_t_rcv_conn_con(tiptr, rcvcall, &ctlbuf, api_semantics) < 0) { in _tx_connect()
|
H A D | tli_wrappers.c | 68 t_connect(int fd, struct t_call *sndcall, struct t_call *rcvcall) in t_connect() argument 70 return (_tx_connect(fd, sndcall, rcvcall, TX_TLI_API)); in t_connect()
|
H A D | xti_wrappers.c | 88 _xti_connect(int fd, const struct t_call *sndcall, struct t_call *rcvcall) in _xti_connect() argument 90 return (_tx_connect(fd, sndcall, rcvcall, TX_XTI_API)); in _xti_connect()
|
/titanic_41/usr/src/cmd/bnu/ |
H A D | callers.c | 1058 struct t_call *sndcall = 0, *rcvcall = 0; local 1100 || (rcvcall = (struct t_call *)t_alloc(fd, T_CALL, T_ALL)) == 1104 TFREE(rcvcall, T_CALL); 1114 TFREE(rcvcall, T_CALL); 1152 TFREE(rcvcall, T_CALL); 1177 TFREE(rcvcall, T_CALL); 1190 if (t_connect(fd, sndcall, rcvcall) == 0) 1199 TFREE(rcvcall, T_CALL); 1208 TFREE(rcvcall, T_CALL);
|
/titanic_41/usr/src/lib/krb5/kadm5/clnt/ |
H A D | client_init.c | 233 struct t_call *rcvcall = NULL; in get_connection() local 264 if (t_connect(fd, &sndcall, rcvcall) != 0) { in get_connection() 273 if (t_rcvconnect(fd, rcvcall) == 0) in get_connection() 279 if (rcvcall != NULL) in get_connection() 280 t_free((char *)rcvcall, T_CALL); in get_connection() 289 if (rcvcall != NULL) in get_connection() 290 t_free((char *)rcvcall, T_CALL); in get_connection()
|
/titanic_41/usr/src/lib/libnsl/rpc/ |
H A D | clnt_vc.c | 462 struct t_call sndcallstr, *rcvcall; in set_up_connection() local 488 rcvcall = (struct t_call *)t_alloc(fd, T_CALL, T_OPT|T_ADDR); in set_up_connection() 489 if (rcvcall == NULL) { in set_up_connection() 495 rcvcall->udata.maxlen = 0; in set_up_connection() 556 if (t_connect(fd, &sndcallstr, rcvcall) != -1) { in set_up_connection() 582 if (t_rcvconnect(fd, rcvcall) != -1) { in set_up_connection() 600 (void) t_free((char *)rcvcall, T_CALL); in set_up_connection() 607 ct->ct_addr = rcvcall->addr; /* To get the new address */ in set_up_connection() 609 rcvcall->addr.buf = NULL; in set_up_connection() 610 (void) t_free((char *)rcvcall, T_CALL); in set_up_connection()
|
/titanic_41/usr/src/uts/common/sys/ |
H A D | tiuser.h | 202 struct t_call *rcvcall);
|