Lines Matching defs:netid
256 char *netid = NULL;
265 netid = strdup(xprt->xp_netid);
268 netid = strdup(nconf->nc_netid);
271 netid = strdup(tnconf->nc_netid);
275 if ((netid == NULL) && (flag == 1)) {
280 if ((s = svc_find(prog, vers, &prev, netid)) != NULL) {
281 if (netid)
282 free(netid);
290 if (netid)
291 free(netid);
296 if ((xprt->xp_netid == NULL) && (flag == 1) && netid)
297 if ((((SVCXPRT *) xprt)->xp_netid = strdup(netid)) == NULL) {
307 s->sc_netid = netid;
418 svc_find(rpcprog_t prog, rpcvers_t vers, struct svc_callout **prev, char *netid)
423 /* netid is handled below */
428 ((netid == NULL) || (s->sc_netid == NULL) ||
429 (strcmp(netid, s->sc_netid) == 0)))