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()
206 struct PStack *stptr = cs->stlist; in DChannel_proc_rcv() local
209 if (stptr) in DChannel_proc_rcv()
210 if (test_bit(FLG_L1_ACTTIMER, &stptr->l1.Flags)) in DChannel_proc_rcv()
211 FsmEvent(&stptr->l1.l1m, EV_TIMER_ACT, NULL); in DChannel_proc_rcv()
217 stptr = cs->stlist; in DChannel_proc_rcv()
236 while (stptr != NULL) { in DChannel_proc_rcv()
238 stptr->l1.l1l2(stptr, PH_DATA | INDICATION, nskb); in DChannel_proc_rcv()
241 stptr = stptr->next; in DChannel_proc_rcv()
244 while (stptr != NULL) { in DChannel_proc_rcv()
246 stptr->l1.l1tei(stptr, PH_DATA | INDICATION, nskb); in DChannel_proc_rcv()
249 stptr = stptr->next; in DChannel_proc_rcv()
255 while (stptr != NULL) in DChannel_proc_rcv()
256 if (tei == stptr->l2.tei) { in DChannel_proc_rcv()
257 stptr->l1.l1l2(stptr, PH_DATA | INDICATION, skb); in DChannel_proc_rcv()
261 stptr = stptr->next; in DChannel_proc_rcv()