/src/lib/libc/yp/ |
yp_master.c | 50 struct ypresp_master yprm; local in function:__weak_alias 71 (void)memset(&yprm, 0, sizeof yprm); 75 (xdrproc_t)xdr_ypresp_master, &yprm, _yplib_timeout); 85 if (!(r = ypprot_err(yprm.status))) { 86 if ((*outname = strdup(yprm.master)) == NULL) 89 xdr_free((xdrproc_t)xdr_ypresp_master, (char *)(void *)&yprm);
|
/src/usr.sbin/yppoll/ |
yppoll.c | 165 struct ypresp_master yprm; local in function:get_remote_info 208 (void)memset(&yprm, 0, sizeof(yprm)); 211 xdr_ypreq_nokey, &yprnk, xdr_ypresp_master, &yprm, tv); 214 r = ypprot_err(yprm.status); 216 *outname = (char *)strdup(yprm.master); 217 xdr_free((xdrproc_t)xdr_ypresp_master, (void *)&yprm);
|
/src/usr.sbin/ypserv/common/ |
yplib_host.c | 274 struct ypresp_master yprm; local in function:yp_master_host 281 memset(&yprm, 0, sizeof yprm); 284 xdr_ypresp_master, &yprm, _yplib_host_timeout); 288 if (!(r = ypprot_err(yprm.status))) { 289 *outname = (char *)strdup(yprm.master); 291 xdr_free((xdrproc_t)xdr_ypresp_master, (char *)&yprm);
|