Lines Matching defs:argres
360 typedef struct argres {
378 argres_t *argres = (argres_t *)ap;
381 nra.uid = argres->uid;
387 argres->result = _nfssys(NFS_REVAUTH, &nra);
388 if (argres->result < 0 && errno == ENOSYS) {
389 argres->result = 0;
392 argres->result = -1;
407 argres_t argres;
469 argres.uid = uid;
470 argres.result = -1;
472 if (pthread_create(&tid, NULL, revoke_nfs_cred, (void *)&argres) == 0)
475 if (argres.result < 0) {