Lines Matching defs:res

24 	static nlm_testres res;
26 bzero((char *)&res, sizeof(res));
27 if (clnt_call(clnt, NLM_TEST, xdr_nlm_testargs, argp, xdr_nlm_testres, &res, TIMEOUT) != RPC_SUCCESS) {
30 return (&res);
40 static nlm_res res;
42 bzero((char *)&res, sizeof(res));
43 if (st = clnt_call(clnt, NLM_LOCK, xdr_nlm_lockargs, argp, xdr_nlm_res, &res, TIMEOUT) != RPC_SUCCESS) {
48 return (&res);
57 static nlm_res res;
59 bzero((char *)&res, sizeof(res));
60 if (clnt_call(clnt, NLM_CANCEL, xdr_nlm_cancargs, argp, xdr_nlm_res, &res, TIMEOUT) != RPC_SUCCESS) {
63 return (&res);
72 static nlm_res res;
74 bzero((char *)&res, sizeof(res));
75 if (clnt_call(clnt, NLM_UNLOCK, xdr_nlm_unlockargs, argp, xdr_nlm_res, &res, TIMEOUT) != RPC_SUCCESS) {
78 return (&res);
87 static nlm_res res;
89 bzero((char *)&res, sizeof(res));
90 if (clnt_call(clnt, NLM_GRANTED, xdr_nlm_testargs, argp, xdr_nlm_res, &res, TIMEOUT) != RPC_SUCCESS) {
93 return (&res);
102 static char res;
104 bzero((char *)&res, sizeof(res));
105 if (clnt_call(clnt, NLM_TEST_MSG, xdr_nlm_testargs, argp, xdr_void, &res, TIMEOUT) != RPC_SUCCESS) {
108 return ((void *)&res);
117 static char res;
119 bzero((char *)&res, sizeof(res));
124 return ((void *)&res);
133 static char res;
135 bzero((char *)&res, sizeof(res));
136 if (clnt_call(clnt, NLM_CANCEL_MSG, xdr_nlm_cancargs, argp, xdr_void, &res, TIMEOUT) != RPC_SUCCESS) {
139 return ((void *)&res);
148 static char res;
150 bzero((char *)&res, sizeof(res));
151 if (clnt_call(clnt, NLM_UNLOCK_MSG, xdr_nlm_unlockargs, argp, xdr_void, &res, TIMEOUT) != RPC_SUCCESS) {
154 return ((void *)&res);
163 static char res;
165 bzero((char *)&res, sizeof(res));
166 if (clnt_call(clnt, NLM_GRANTED_MSG, xdr_nlm_testargs, argp, xdr_void, &res, TIMEOUT) != RPC_SUCCESS) {
169 return ((void *)&res);
178 static char res;
180 bzero((char *)&res, sizeof(res));
181 if (clnt_call(clnt, NLM_TEST_RES, xdr_nlm_testres, argp, xdr_void, &res, TIMEOUT) != RPC_SUCCESS) {
184 return ((void *)&res);
193 static char res;
195 bzero((char *)&res, sizeof(res));
196 if (clnt_call(clnt, NLM_LOCK_RES, xdr_nlm_res, argp, xdr_void, &res, TIMEOUT) != RPC_SUCCESS) {
199 return ((void *)&res);
208 static char res;
210 bzero((char *)&res, sizeof(res));
211 if (clnt_call(clnt, NLM_CANCEL_RES, xdr_nlm_res, argp, xdr_void, &res, TIMEOUT) != RPC_SUCCESS) {
214 return ((void *)&res);
223 static char res;
225 bzero((char *)&res, sizeof(res));
226 if (clnt_call(clnt, NLM_UNLOCK_RES, xdr_nlm_res, argp, xdr_void, &res, TIMEOUT) != RPC_SUCCESS) {
229 return ((void *)&res);
238 static char res;
240 bzero((char *)&res, sizeof(res));
241 if (clnt_call(clnt, NLM_GRANTED_RES, xdr_nlm_res, argp, xdr_void, &res, TIMEOUT) != RPC_SUCCESS) {
244 return ((void *)&res);
253 static nlm_shareres res;
255 bzero((char *)&res, sizeof(res));
256 if (clnt_call(clnt, NLM_SHARE, xdr_nlm_shareargs, argp, xdr_nlm_shareres, &res, TIMEOUT) != RPC_SUCCESS) {
259 return (&res);
268 static nlm_shareres res;
270 bzero((char *)&res, sizeof(res));
271 if (clnt_call(clnt, NLM_UNSHARE, xdr_nlm_shareargs, argp, xdr_nlm_shareres, &res, TIMEOUT) != RPC_SUCCESS) {
274 return (&res);
283 static nlm_res res;
285 bzero((char *)&res, sizeof(res));
286 if (clnt_call(clnt, NLM_NM_LOCK, xdr_nlm_lockargs, argp, xdr_nlm_res, &res, TIMEOUT) != RPC_SUCCESS) {
289 return (&res);
298 static char res;
300 bzero((char *)&res, sizeof(res));
301 if (clnt_call(clnt, NLM_FREE_ALL, xdr_nlm_notify, argp, xdr_void, &res, TIMEOUT) != RPC_SUCCESS) {
304 return ((void *)&res);