Lines Matching refs:quot
90 struct quotctl quot; in quotactl() local
95 if (copyin((caddr_t)arg, ", sizeof (struct quotctl))) in quotactl()
104 quot.op = quot32.op; in quotactl()
105 quot.uid = quot32.uid; in quotactl()
106 quot.addr = (caddr_t)(uintptr_t)quot32.addr; in quotactl()
110 if (quot.uid < 0) in quotactl()
111 quot.uid = crgetruid(cr); in quotactl()
112 if (quot.op == Q_SYNC && vp == NULL) { in quotactl()
114 } else if (quot.op != Q_ALLSYNC) { in quotactl()
117 switch (quot.op) { in quotactl()
138 error = setquota(quot.op, (uid_t)quot.uid, ufsvfsp, in quotactl()
139 quot.addr, cr); in quotactl()
143 error = getquota((uid_t)quot.uid, ufsvfsp, (caddr_t)quot.addr, in quotactl()