Lines Matching refs:tip

3054 	tl_icon_t	*tip;
3186 tip = kmem_zalloc(sizeof (*tip), KM_NOSLEEP);
3187 if (tip == NULL) {
3192 tl_memrecover(wq, indmp, sizeof (*tip));
3202 tip->ti_mp = NULL;
3239 ASSERT(tip->ti_mp == NULL);
3240 kmem_free(tip, sizeof (*tip));
3281 tip->ti_tep = tep;
3282 tip->ti_seqno = tep->te_seqno;
3283 list_insert_tail(&peer_tep->te_iconp, tip);
3334 tl_icon_t *tip;
3498 tip = tl_icon_find(tep, cres->SEQ_number);
3499 if (tip == NULL) {
3515 ASSERT(tip->ti_tep == NULL ||
3516 tip->ti_tep->te_seqno == cres->SEQ_number);
3517 cl_ep = tip->ti_tep;
3529 * still need to send all messages from tip->ti_mp to the acceptor).
3684 tl_icon_sendmsgs(acc_ep, &tip->ti_mp);
3690 tl_freetip(tep, tip);
3695 } else if (tip->ti_mp != NULL) {
3703 tl_icon_sendmsgs(acc_ep, &tip->ti_mp);
3761 * on client: it should already have one from tip->ti_tep linkage.
3807 tip->ti_tep = NULL;
3808 tl_freetip(tep, tip);
3864 tl_icon_t *tip;
3944 tip = tl_icon_find(tep, dr->SEQ_number);
3945 if (tip == NULL) {
3959 IMPLY(tip->ti_tep != NULL,
3960 tip->ti_tep->te_seqno == dr->SEQ_number);
3961 peer_tep = tip->ti_tep;
4031 tl_freetip(tep, tip);
4077 tip = tl_icon_find(peer_tep, tep->te_seqno);
4078 if (tip != NULL) {
4079 ASSERT(tep == tip->ti_tep);
4089 tl_freetip(peer_tep, tip);
5532 tl_icon_t *tip;
5559 tip = list_head(l);
5560 cl_tep = tip->ti_tep;
5563 tl_freetip(tep, tip);
5573 tl_freetip(tep, tip);
5589 tl_freetip(tep, tip);
5632 tip = tl_icon_find(srv_tep, tep->te_seqno);
5633 if (tip == NULL) {
5636 ASSERT(tep == tip->ti_tep);
5639 * Delete tip from the server list.
5653 tl_freetip(srv_tep, tip);
5812 tl_icon_t *tip = list_head(l);
5816 for (; tip != NULL && (tip->ti_seqno != seqno); tip = list_next(l, tip))
5819 return (tip);
5830 tl_icon_t *tip;
5839 tip = tl_icon_find(tep, seqno);
5840 if (tip == NULL) {
5845 ASSERT(tip->ti_seqno != 0);
5846 mpp = &tip->ti_mp;
5882 tl_icon_t *tip = tl_icon_find(tep, seqno);
5885 if (tip != NULL) {
5887 for (mp = tip->ti_mp; !found && mp != NULL; mp = mp->b_next) {
6267 tl_freetip(tl_endpt_t *tep, tl_icon_t *tip)
6269 ASSERT(tip->ti_seqno != 0);
6271 if (tip->ti_mp != NULL) {
6272 tl_icon_freemsgs(&tip->ti_mp);
6273 tip->ti_mp = NULL;
6275 if (tip->ti_tep != NULL) {
6276 tl_refrele(tip->ti_tep);
6277 tip->ti_tep = NULL;
6279 list_remove(&tep->te_iconp, tip);
6280 kmem_free(tip, sizeof (tl_icon_t));