Home
last modified time | relevance | path

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

/freebsd/usr.bin/ypwhich/
H A Dypwhich.c141 struct ypmaplist *ypml, *y; in main() local
238 ypml = NULL; in main()
240 r = yp_maplist_host(client, domain, &ypml); in main()
242 r = yp_maplist(domain, &ypml); in main()
247 for (y = ypml; y; ) { in main()
248 ypml = y; in main()
251 domain, ypml->map, &master); in main()
257 printf("%s %s\n", ypml->map, master); in main()
262 ypml->map, yperr_string(r)); in main()
265 y = ypml->next; in main()
[all …]
/freebsd/usr.sbin/ypserv/common/
H A Dyplib_host.c335 struct ypresp_maplist ypml; in yp_maplist_host() local
342 memset(&ypml, 0, sizeof ypml); in yp_maplist_host()
346 (xdrproc_t)xdr_ypresp_maplist, &ypml, tv); in yp_maplist_host()
349 *outmaplist = ypml.maps; in yp_maplist_host()
352 return ypprot_err(ypml.stat); in yp_maplist_host()
/freebsd/lib/libc/yp/
H A Dyplib.c1102 struct ypresp_maplist ypml; in yp_maplist() local
1121 bzero((char *)&ypml, sizeof ypml); in yp_maplist()
1125 (xdrproc_t)xdr_ypresp_maplist, &ypml,tv); in yp_maplist()
1131 if (!(r = ypprot_err(ypml.stat))) { in yp_maplist()
1132 *outmaplist = ypml.maps; in yp_maplist()