Lines Matching refs:next
35 struct listen_struct *next; member
48 ap->next = protocol_list; in ax25_register_pid()
65 protocol_list = protocol->next; in ax25_protocol_release()
69 while (protocol != NULL && protocol->next != NULL) { in ax25_protocol_release()
70 if (protocol->next->pid == pid) { in ax25_protocol_release()
71 protocol->next = protocol->next->next; in ax25_protocol_release()
75 protocol = protocol->next; in ax25_protocol_release()
115 listen->next = listen_list; in ax25_listen_register()
136 listen_list = listen->next; in ax25_listen_release()
142 while (listen != NULL && listen->next != NULL) { in ax25_listen_release()
143 if (ax25cmp(&listen->next->callsign, callsign) == 0 && listen->next->dev == dev) { in ax25_listen_release()
144 s = listen->next; in ax25_listen_release()
145 listen->next = listen->next->next; in ax25_listen_release()
151 listen = listen->next; in ax25_listen_release()
164 for (protocol = protocol_list; protocol != NULL; protocol = protocol->next) in ax25_protocol_function()
179 for (listen = listen_list; listen != NULL; listen = listen->next) in ax25_listen_mine()
206 for (protocol = protocol_list; protocol != NULL; protocol = protocol->next) in ax25_protocol_is_registered()