Searched defs:rcvcall (Results 1 - 6 of 6) sorted by relevance

/osnet-11/usr/src/lib/libnsl/nsl/
H A Dt_connect.c57 struct t_call *rcvcall,
135 if (_t_rcv_conn_con(tiptr, rcvcall, &ctlbuf, api_semantics) < 0) {
54 _tx_connect( int fd, const struct t_call *sndcall, struct t_call *rcvcall, int api_semantics ) argument
H A Dtli_wrappers.c65 t_connect(int fd, const struct t_call *sndcall, struct t_call *rcvcall) argument
67 return (_tx_connect(fd, sndcall, rcvcall, TX_TLI_API));
H A Dxti_wrappers.c84 _xti_connect(int fd, const struct t_call *sndcall, struct t_call *rcvcall) argument
86 return (_tx_connect(fd, sndcall, rcvcall, TX_XTI_API));
/osnet-11/usr/src/lib/libnsl/dial/
H A Dcallers.c475 struct t_call *sndcall = 0, *rcvcall = 0; local
514 (rcvcall = (struct t_call *)t_alloc(fd, T_CALL, T_ALL)) == NULL) {
518 TFREE(rcvcall, T_CALL);
529 TFREE(rcvcall, T_CALL);
568 TFREE(rcvcall, T_CALL);
593 TFREE(rcvcall, T_CALL);
606 if (t_connect(fd, sndcall, rcvcall) == 0)
616 TFREE(rcvcall, T_CALL);
626 TFREE(rcvcall, T_CALL);
/osnet-11/usr/src/lib/krb5/kadm5/clnt/
H A Dclient_init.c244 struct t_call *rcvcall = NULL; local
275 if (t_connect(fd, &sndcall, rcvcall) != 0) {
284 if (t_rcvconnect(fd, rcvcall) == 0)
290 if (rcvcall != NULL)
291 t_free((char *)rcvcall, T_CALL);
300 if (rcvcall != NULL)
301 t_free((char *)rcvcall, T_CALL);
/osnet-11/usr/src/lib/libnsl/rpc/
H A Dclnt_vc.c455 struct t_call sndcallstr, *rcvcall; local
482 rcvcall = (struct t_call *)t_alloc(fd, T_CALL, T_OPT|T_ADDR);
483 if (rcvcall == NULL) {
489 rcvcall->udata.maxlen = 0;
494 * Even NULL could have sufficed for rcvcall, because
530 if (t_connect(fd, &sndcallstr, rcvcall) != -1) {
569 if (t_rcvconnect(fd, rcvcall) != -1) {
587 (void) t_free((char *)rcvcall, T_CALL);
598 ct->ct_addr = rcvcall->addr; /* To get the new address */
600 rcvcall
[all...]

Completed in 22 milliseconds