• Home
  • Raw
  • Download

Lines Matching refs:pf

39 static int ax25_std_state1_machine(ax25_cb *ax25, struct sk_buff *skb, int frametype, int pf, int t…  in ax25_std_state1_machine()  argument
45 ax25_send_control(ax25, AX25_UA, pf, AX25_RESPONSE); in ax25_std_state1_machine()
51 ax25_send_control(ax25, AX25_UA, pf, AX25_RESPONSE); in ax25_std_state1_machine()
55 ax25_send_control(ax25, AX25_DM, pf, AX25_RESPONSE); in ax25_std_state1_machine()
59 if (pf) { in ax25_std_state1_machine()
81 if (pf) { in ax25_std_state1_machine()
103 static int ax25_std_state2_machine(ax25_cb *ax25, struct sk_buff *skb, int frametype, int pf, int t… in ax25_std_state2_machine() argument
108 ax25_send_control(ax25, AX25_DM, pf, AX25_RESPONSE); in ax25_std_state2_machine()
112 ax25_send_control(ax25, AX25_UA, pf, AX25_RESPONSE); in ax25_std_state2_machine()
118 if (pf) in ax25_std_state2_machine()
126 if (pf) ax25_send_control(ax25, AX25_DM, AX25_POLLON, AX25_RESPONSE); in ax25_std_state2_machine()
141 …state3_machine(ax25_cb *ax25, struct sk_buff *skb, int frametype, int ns, int nr, int pf, int type) in ax25_std_state3_machine() argument
155 ax25_send_control(ax25, AX25_UA, pf, AX25_RESPONSE); in ax25_std_state3_machine()
168 ax25_send_control(ax25, AX25_UA, pf, AX25_RESPONSE); in ax25_std_state3_machine()
182 if (type == AX25_COMMAND && pf) in ax25_std_state3_machine()
194 if (type == AX25_COMMAND && pf) in ax25_std_state3_machine()
220 if (pf) ax25_std_enquiry_response(ax25); in ax25_std_state3_machine()
229 if (pf) { in ax25_std_state3_machine()
239 if (pf) ax25_std_enquiry_response(ax25); in ax25_std_state3_machine()
242 ax25_send_control(ax25, AX25_REJ, pf, AX25_RESPONSE); in ax25_std_state3_machine()
266 …state4_machine(ax25_cb *ax25, struct sk_buff *skb, int frametype, int ns, int nr, int pf, int type) in ax25_std_state4_machine() argument
280 ax25_send_control(ax25, AX25_UA, pf, AX25_RESPONSE); in ax25_std_state4_machine()
295 ax25_send_control(ax25, AX25_UA, pf, AX25_RESPONSE); in ax25_std_state4_machine()
309 if (type == AX25_RESPONSE && pf) { in ax25_std_state4_machine()
326 if (type == AX25_COMMAND && pf) in ax25_std_state4_machine()
338 if (pf && type == AX25_RESPONSE) { in ax25_std_state4_machine()
355 if (type == AX25_COMMAND && pf) in ax25_std_state4_machine()
374 if (pf) in ax25_std_state4_machine()
384 if (pf) { in ax25_std_state4_machine()
394 if (pf) ax25_std_enquiry_response(ax25); in ax25_std_state4_machine()
397 ax25_send_control(ax25, AX25_REJ, pf, AX25_RESPONSE); in ax25_std_state4_machine()
421 int queued = 0, frametype, ns, nr, pf; in ax25_std_frame_in() local
423 frametype = ax25_decode(ax25, skb, &ns, &nr, &pf); in ax25_std_frame_in()
427 queued = ax25_std_state1_machine(ax25, skb, frametype, pf, type); in ax25_std_frame_in()
430 queued = ax25_std_state2_machine(ax25, skb, frametype, pf, type); in ax25_std_frame_in()
433 queued = ax25_std_state3_machine(ax25, skb, frametype, ns, nr, pf, type); in ax25_std_frame_in()
436 queued = ax25_std_state4_machine(ax25, skb, frametype, ns, nr, pf, type); in ax25_std_frame_in()