Lines Matching refs:phyint
97 struct phyint { struct
102 struct phyint *pi_next; argument
103 struct phyint *pi_prev; argument
119 struct phyint *li_physical; /* Back pointer */
122 struct phyint *phyint; variable
157 struct phyint *pi);
167 static struct phyint *find_phyint(char *name);
168 static struct phyint *add_phyint(char *name);
169 static void free_phyint(struct phyint *pi);
170 static struct logint *find_logint(struct phyint *pi, char *name);
171 static struct logint *add_logint(struct phyint *pi, char *name);
174 static void deleted_phyint(struct phyint *pi, int s,
606 struct phyint *pi; in advertise()
618 for (pi = phyint; pi != NULL; pi = pi->pi_next) { in advertise()
1129 struct phyint *pi; in sendbcast()
1134 for (pi = phyint; pi != NULL; pi = pi->pi_next) { in sendbcast()
1198 struct phyint *pi; in sendmcast()
1203 for (pi = phyint; pi != NULL; pi = pi->pi_next) { in sendmcast()
1282 struct phyint *pi; in force_preference()
1285 for (pi = phyint; pi != NULL; pi = pi->pi_next) { in force_preference()
1308 struct phyint *pi; in initifs()
1319 for (pi = phyint; pi != NULL; pi = pi->pi_next) { in initifs()
1470 for (pi = phyint; pi != NULL; pi = pi->pi_next) { in initifs()
1485 struct phyint *nextpi; in initifs()
1488 for (pi = phyint; pi != NULL; pi = pi->pi_next) { in initifs()
1508 for (pi = phyint; pi != NULL; pi = nextpi) { in initifs()
1629 find_directly_connected_logint(struct in_addr in, struct phyint *opi) in find_directly_connected_logint()
1631 struct phyint *pi; in find_directly_connected_logint()
1635 pi = phyint; in find_directly_connected_logint()
1664 struct phyint *pi; in report_interfaces()
1668 for (pi = phyint; pi != NULL; pi = pi->pi_next) { in report_interfaces()
1687 static struct phyint *
1690 struct phyint *pi; in find_phyint()
1692 for (pi = phyint; pi != NULL; pi = pi->pi_next) { in find_phyint()
1700 static struct phyint *
1703 struct phyint *pi; in add_phyint()
1712 pi->pi_next = phyint; in add_phyint()
1714 if (phyint != NULL) in add_phyint()
1715 phyint->pi_prev = pi; in add_phyint()
1716 phyint = pi; in add_phyint()
1721 free_phyint(struct phyint *pi) in free_phyint()
1728 assert(phyint == pi); in free_phyint()
1729 phyint = pi->pi_next; in free_phyint()
1742 find_logint(struct phyint *pi, char *name) in find_logint()
1758 add_logint(struct phyint *pi, char *name) in add_logint()
1787 struct phyint *pi; in free_logint()
1812 deleted_phyint(struct phyint *pi, int s, in deleted_phyint()
1878 struct phyint *pi; in deleted_logint()