Lines Matching full:rh

202 #define CLNT_ACQUIRE(rh)			\  argument
203 refcount_acquire(&(rh)->cl_refs)
204 #define CLNT_RELEASE(rh) \ argument
205 if (refcount_release(&(rh)->cl_refs)) \
206 CLNT_DESTROY(rh)
210 * CLNT_CLOSE(rh);
211 * CLIENT *rh;
213 #define CLNT_CLOSE(rh) ((*(rh)->cl_ops->cl_close)(rh)) argument
220 * CLNT_CALL_MBUF(rh, ext, proc, mreq, mrepp, timeout)
221 * CLIENT *rh;
231 #define CLNT_CALL_MBUF(rh, ext, proc, mreq, mrepp, secs) \ argument
232 ((*(rh)->cl_ops->cl_call)(rh, ext, proc, mreq, mrepp, secs))
236 * CLNT_CALL_EXT(rh, ext, proc, xargs, argsp, xres, resp, timeout)
237 * CLIENT *rh;
246 #define CLNT_CALL_EXT(rh, ext, proc, xargs, argsp, xres, resp, secs) \ argument
247 clnt_call_private(rh, ext, proc, xargs, \
253 * CLNT_CALL(rh, proc, xargs, argsp, xres, resp, timeout)
254 * CLIENT *rh;
263 #define CLNT_CALL(rh, proc, xargs, argsp, xres, resp, secs) \ argument
264 clnt_call_private(rh, NULL, proc, xargs, \
266 #define clnt_call(rh, proc, xargs, argsp, xres, resp, secs) \ argument
267 clnt_call_private(rh, NULL, proc, xargs, \
270 #define CLNT_CALL(rh, proc, xargs, argsp, xres, resp, secs) \ argument
271 ((*(rh)->cl_ops->cl_call)(rh, proc, xargs, \
273 #define clnt_call(rh, proc, xargs, argsp, xres, resp, secs) \ argument
274 ((*(rh)->cl_ops->cl_call)(rh, proc, xargs, \
280 * CLNT_ABORT(rh);
281 * CLIENT *rh;
283 #define CLNT_ABORT(rh) ((*(rh)->cl_ops->cl_abort)(rh)) argument
284 #define clnt_abort(rh) ((*(rh)->cl_ops->cl_abort)(rh)) argument
288 * CLNT_GETERR(rh);
289 * CLIENT *rh;
291 #define CLNT_GETERR(rh,errp) ((*(rh)->cl_ops->cl_geterr)(rh, errp)) argument
292 #define clnt_geterr(rh,errp) ((*(rh)->cl_ops->cl_geterr)(rh, errp)) argument
297 * CLNT_FREERES(rh, xres, resp);
298 * CLIENT *rh;
302 #define CLNT_FREERES(rh,xres,resp) ((*(rh)->cl_ops->cl_freeres)(rh,xres,resp)) argument
303 #define clnt_freeres(rh,xres,resp) ((*(rh)->cl_ops->cl_freeres)(rh,xres,resp)) argument
370 * CLNT_DESTROY(rh);
371 * CLIENT *rh;
373 #define CLNT_DESTROY(rh) ((*(rh)->cl_ops->cl_destroy)(rh)) argument
374 #define clnt_destroy(rh) ((*(rh)->cl_ops->cl_destroy)(rh)) argument