Lines Matching refs:stptr
188 struct PStack *stptr; in DChannel_proc_xmt() local
193 stptr = cs->stlist; in DChannel_proc_xmt()
194 while (stptr != NULL) { in DChannel_proc_xmt()
195 if (test_and_clear_bit(FLG_L1_PULL_REQ, &stptr->l1.Flags)) { in DChannel_proc_xmt()
196 stptr->l1.l1l2(stptr, PH_PULL | CONFIRM, NULL); in DChannel_proc_xmt()
199 stptr = stptr->next; in DChannel_proc_xmt()
207 struct PStack *stptr = cs->stlist; in DChannel_proc_rcv() local
210 if (stptr) in DChannel_proc_rcv()
211 if (test_bit(FLG_L1_ACTTIMER, &stptr->l1.Flags)) in DChannel_proc_rcv()
212 FsmEvent(&stptr->l1.l1m, EV_TIMER_ACT, NULL); in DChannel_proc_rcv()
218 stptr = cs->stlist; in DChannel_proc_rcv()
237 while (stptr != NULL) { in DChannel_proc_rcv()
239 stptr->l1.l1l2(stptr, PH_DATA | INDICATION, nskb); in DChannel_proc_rcv()
242 stptr = stptr->next; in DChannel_proc_rcv()
245 while (stptr != NULL) { in DChannel_proc_rcv()
247 stptr->l1.l1tei(stptr, PH_DATA | INDICATION, nskb); in DChannel_proc_rcv()
250 stptr = stptr->next; in DChannel_proc_rcv()
256 while (stptr != NULL) in DChannel_proc_rcv()
257 if (tei == stptr->l2.tei) { in DChannel_proc_rcv()
258 stptr->l1.l1l2(stptr, PH_DATA | INDICATION, skb); in DChannel_proc_rcv()
262 stptr = stptr->next; in DChannel_proc_rcv()