/src/lib/libc/yp/ |
yp_maplist.c | 49 struct ypresp_maplist ypml; local in function:__weak_alias 60 memset(&ypml, 0, sizeof ypml); 64 (xdrproc_t)xdr_ypresp_maplist, &ypml, _yplib_timeout); 74 *outmaplist = ypml.list; 75 /* NO: xdr_free(xdr_ypresp_maplist, &ypml); */ 77 return ypprot_err(ypml.status);
|
/src/usr.sbin/ypserv/yptest/ |
yptest.c | 56 struct ypmaplist *ypml, *y; local in function:main 111 ypml = NULL; 112 switch (yp_maplist(Domain, &ypml)) { 114 for (y = ypml; y;) { 115 ypml = y; 116 printf("%s\n", ypml->ypml_name); 117 y = ypml->ypml_next;
|
/src/usr.sbin/ypserv/common/ |
yplib_host.c | 298 struct ypresp_maplist ypml; local in function:yp_maplist_host 301 memset(&ypml, 0, sizeof ypml); 304 indomain, xdr_ypresp_maplist, &ypml, _yplib_host_timeout); 308 *outmaplist = ypml.list; 309 /* NO: xdr_free(xdr_ypresp_maplist, &ypml);*/ 310 return ypprot_err(ypml.status);
|
/src/usr.bin/ypwhich/ |
ypwhich.c | 283 struct ypmaplist fakelist, *ypml; local in function:find_mapmaster 356 ypml = yprespmlist.list; 365 ypml = &fakelist; 372 for ( /* null */ ; ypml != NULL; ypml = ypml->ypml_next) { 374 ypreqkey.map = ypml->ypml_name; 388 warnx("clnt_call: %s: %s: %s", host, ypml->ypml_name, 391 (void)printf("%s %s\n", ypml->ypml_name,
|