Lines Matching refs:tb
119 struct mountbody **tb, **endtb; in pr_mounts() local
159 tb = table; in pr_mounts()
160 for (; ml != NULL && tb < &table[NTABLEENTRIES]; ml = ml->ml_next) in pr_mounts()
161 *tb++ = ml; in pr_mounts()
162 if (ml != NULL && tb == &table[NTABLEENTRIES]) in pr_mounts()
165 endtb = tb; in pr_mounts()
174 for (tb = table; tb < endtb; tb++) { in pr_mounts()
175 if (*((*tb)->ml_directory) == '\0' || in pr_mounts()
176 *((*tb)->ml_hostname) == '\0') in pr_mounts()
178 if (strcmp(lastpath, (*tb)->ml_directory) == 0) { in pr_mounts()
179 if (strcmp(lastclient, (*tb)->ml_hostname) == 0) { in pr_mounts()
184 " -", host, (*tb)->ml_directory); in pr_mounts()
185 lastpath = (*tb)->ml_directory; in pr_mounts()
190 printf("%s", (*tb)->ml_hostname); in pr_mounts()
191 lastclient = (*tb)->ml_hostname; in pr_mounts()