Lines Matching defs:phyint

102 struct phyint {
107 struct phyint *pi_next;
108 struct phyint *pi_prev;
124 struct phyint *li_physical; /* Back pointer */
127 struct phyint *phyint;
162 struct phyint *pi);
172 static struct phyint *find_phyint(char *name);
173 static struct phyint *add_phyint(char *name);
174 static void free_phyint(struct phyint *pi);
175 static struct logint *find_logint(struct phyint *pi, char *name);
176 static struct logint *add_logint(struct phyint *pi, char *name);
179 static void deleted_phyint(struct phyint *pi, int s,
608 struct phyint *pi;
620 for (pi = phyint; pi != NULL; pi = pi->pi_next) {
1131 struct phyint *pi;
1136 for (pi = phyint; pi != NULL; pi = pi->pi_next) {
1200 struct phyint *pi;
1205 for (pi = phyint; pi != NULL; pi = pi->pi_next) {
1284 struct phyint *pi;
1287 for (pi = phyint; pi != NULL; pi = pi->pi_next) {
1310 struct phyint *pi;
1321 for (pi = phyint; pi != NULL; pi = pi->pi_next) {
1472 for (pi = phyint; pi != NULL; pi = pi->pi_next) {
1487 struct phyint *nextpi;
1490 for (pi = phyint; pi != NULL; pi = pi->pi_next) {
1510 for (pi = phyint; pi != NULL; pi = nextpi) {
1631 find_directly_connected_logint(struct in_addr in, struct phyint *opi)
1633 struct phyint *pi;
1637 pi = phyint;
1666 struct phyint *pi;
1670 for (pi = phyint; pi != NULL; pi = pi->pi_next) {
1689 static struct phyint *
1692 struct phyint *pi;
1694 for (pi = phyint; pi != NULL; pi = pi->pi_next) {
1702 static struct phyint *
1705 struct phyint *pi;
1714 pi->pi_next = phyint;
1716 if (phyint != NULL)
1717 phyint->pi_prev = pi;
1718 phyint = pi;
1723 free_phyint(struct phyint *pi)
1730 assert(phyint == pi);
1731 phyint = pi->pi_next;
1744 find_logint(struct phyint *pi, char *name)
1760 add_logint(struct phyint *pi, char *name)
1789 struct phyint *pi;
1814 deleted_phyint(struct phyint *pi, int s,
1880 struct phyint *pi;