Lines Matching refs:tpp
222 struct netconfig **tpp; in getnetconfigent() local
231 for (tpp = netpp; *tpp; tpp++) { in getnetconfigent()
232 if (strcmp((*tpp)->nc_netid, netid) == 0) { in getnetconfigent()
233 if (*tpp && (strcmp((*tpp)->nc_netid, "udp6") == 0 || in getnetconfigent()
234 strcmp((*tpp)->nc_netid, "tcp6") == 0)) { in getnetconfigent()
241 return (netconfig_dup(*tpp)); in getnetconfigent()
271 struct netconfig **tpp; /* used to traverse the netconfig list */ in getnetlist() local
308 for (tpp = listpp; *tpp = fgetnetconfig(fp, NULL); tpp++) in getnetlist()
398 struct netconfig **tpp; /* scans the list from netconfig file */ in setnetpath() local
442 for (tpp = netpp; *tpp; tpp++) { in setnetpath()
443 if ((*tpp)->nc_flag & NC_VISIBLE) { in setnetpath()
444 (void) strcat(valid_netpath, (*tpp)->nc_netid); in setnetpath()
474 for (tpp = netpp; *tpp; tpp++) { in setnetpath()
475 if (strcmp(netid, (*tpp)->nc_netid) == 0) { in setnetpath()
477 (*tpp)->nc_netid); in setnetpath()
510 for (tpp = netpp; *tpp; tpp++) { in setnetpath()
511 if (strcmp(netid, (*tpp)->nc_netid) == 0) { in setnetpath()
512 *curr_pp++ = *tpp; in setnetpath()
669 char **tpp; /* traverses the list, populating it */ in getlookups() local
678 tpp = listpp; in getlookups()
698 if ((*tpp++ = strdup(start)) == NULL) { in getlookups()
699 for (tpp = listpp; *tpp; tpp++) in getlookups()
700 free(*tpp); in getlookups()
705 *tpp = NULL; in getlookups()
882 struct netconfig **tpp; in netlist_free() local
884 for (tpp = *netppp; *tpp; tpp++) { in netlist_free()
885 netconfig_free(*tpp); in netlist_free()