Searched defs:qfile (Results 1 - 5 of 5) sorted by relevance

/illumos-gate/usr/src/cmd/fs.d/ufs/quotaon/
H A Dquotaon.c303 char qfile[MAXPATHLEN]; local
309 if ((strlcpy(qfile, mountpt, sizeof (qfile)) >= sizeof (qfile)) ||
310 (strlcat(qfile, "/" QFNAME, sizeof (qfile)) >= sizeof (qfile))) {
314 if ((fd = open64(qfile, O_RDWR)) < 0) {
315 fprintf(stderr, "quotactl: %s ", qfile);
/illumos-gate/usr/src/cmd/fs.d/ufs/repquota/
H A Drepquota.c438 char qfile[MAXPATHLEN]; local
461 if ((strlcpy(qfile, mntp.mnt_mountp,
462 sizeof (qfile)) >= sizeof (qfile)) ||
463 (strlcat(qfile, "/" QFNAME, sizeof (qfile)) >=
464 sizeof (qfile))) {
469 if ((fd = open64(qfile, O_RDONLY)) >= 0)
/illumos-gate/usr/src/cmd/fs.d/ufs/edquota/
H A Dedquota.c818 char qfile[MAXPATHLEN]; local
843 qfile[0] = '\0';
857 if (strlcpy(qfile, mntp.mnt_mountp,
858 sizeof (qfile)) >= sizeof (qfile)) {
865 if (strlcpy(qfile, mntp.mnt_mountp,
866 sizeof (qfile)) >= sizeof (qfile)) {
873 if (qfile[0] == '\0') {
883 if (strlcat(qfile, "/" QFNAM
[all...]
/illumos-gate/usr/src/cmd/fs.d/ufs/quota/
H A Dquota.c669 char qfile[MAXPATHLEN]; local
691 if ((strlcpy(qfile, mnt.mnt_mountp,
692 sizeof (qfile)) >= sizeof (qfile)) ||
693 (strlcat(qfile, "/" QFNAME, sizeof (qfile)) >=
694 sizeof (qfile))) {
698 fd = open64(qfile, O_RDONLY);
713 if ((strlcpy(qfile, mountp, sizeof (qfile)) >
[all...]
/illumos-gate/usr/src/cmd/fs.d/ufs/quotacheck/
H A Dquotacheck.c707 char qfile[MAXPATHLEN]; local
728 if ((strlcpy(qfile, mntp.mnt_mountp,
729 sizeof (qfile)) >= sizeof (qfile)) ||
730 (strlcat(qfile, "/" QFNAME, sizeof (qfile)) >=
731 sizeof (qfile))) {
734 if ((fd = open64(qfile, O_RDWR)) == -1)
747 if ((strlcpy(qfile, mountp, sizeof (qfile)) >
[all...]

Completed in 65 milliseconds