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