/src/lib/libc/yp/ |
yp_order.c | 49 struct ypresp_order ypro; local in function:__weak_alias 68 (void)memset(&ypro, 0, sizeof ypro); 72 (xdrproc_t)xdr_ypresp_order, &ypro, 88 *outorder = ypro.ordernum; 89 xdr_free((xdrproc_t)xdr_ypresp_order, (char *)(void *)&ypro); 90 r = ypprot_err(ypro.status);
|
/src/usr.sbin/yppoll/ |
yppoll.c | 164 struct ypresp_order ypro; local in function:get_remote_info 193 (void)memset(&ypro, 0, sizeof(ypro)); 199 &yprnk, xdr_ypresp_order, &ypro, tv); 203 *outorder = ypro.ordernum; 204 xdr_free((xdrproc_t)xdr_ypresp_order, (void *)&ypro); 206 r = ypprot_err(ypro.status);
|
/src/usr.sbin/ypserv/common/ |
yplib_host.c | 252 struct ypresp_order ypro; local in function:yp_order_host 259 memset(&ypro, 0, sizeof ypro); 262 xdr_ypresp_order, &ypro, _yplib_host_timeout); 266 *outorder = ypro.ordernum; 267 xdr_free((xdrproc_t)xdr_ypresp_order, (char *)&ypro); 268 return ypprot_err(ypro.status);
|