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

/freebsd-10.1-release/usr.bin/ypwhich/
H A Dypwhich.c143 struct ypmaplist *ypml, *y; local
227 ypml = NULL;
228 r = yp_maplist(domnam, &ypml);
231 for (y = ypml; y;) {
232 ypml = y;
233 r = yp_master(domnam, ypml->ypml_name, &master);
236 printf("%s %s\n", ypml->ypml_name, master);
241 ypml->ypml_name, yperr_string(r));
244 y = ypml->ypml_next;
245 free(ypml);
[all...]
/freebsd-10.1-release/lib/libc/yp/
H A Dyplib.c1108 struct ypresp_maplist ypml; local
1127 bzero((char *)&ypml, sizeof ypml);
1131 (xdrproc_t)xdr_ypresp_maplist, &ypml,tv);
1137 if (!(r = ypprot_err(ypml.stat))) {
1138 *outmaplist = ypml.maps;
1141 /* NO: xdr_free((xdrproc_t)xdr_ypresp_maplist, &ypml);*/

Completed in 53 milliseconds