Searched refs:ypml (Results 1 - 3 of 3) sorted by relevance

/freebsd-12-stable/usr.bin/ypwhich/
H A Dypwhich.c144 struct ypmaplist *ypml, *y; local
241 ypml = NULL;
243 r = yp_maplist_host(client, domain, &ypml);
245 r = yp_maplist(domain, &ypml);
250 for (y = ypml; y; ) {
251 ypml = y;
254 domain, ypml->map, &master);
256 r = yp_master(domain, ypml->map, &master);
260 printf("%s %s\n", ypml->map, master);
265 ypml
[all...]
/freebsd-12-stable/usr.sbin/ypserv/common/
H A Dyplib_host.c338 struct ypresp_maplist ypml; local
345 memset(&ypml, 0, sizeof ypml);
349 (xdrproc_t)xdr_ypresp_maplist, &ypml, tv);
352 *outmaplist = ypml.maps;
353 /* NO: xdr_free(xdr_ypresp_maplist, &ypml);*/
355 return ypprot_err(ypml.stat);
/freebsd-12-stable/lib/libc/yp/
H A Dyplib.c1109 struct ypresp_maplist ypml; local
1128 bzero((char *)&ypml, sizeof ypml);
1132 (xdrproc_t)xdr_ypresp_maplist, &ypml,tv);
1138 if (!(r = ypprot_err(ypml.stat))) {
1139 *outmaplist = ypml.maps;
1142 /* NO: xdr_free((xdrproc_t)xdr_ypresp_maplist, &ypml);*/

Completed in 62 milliseconds