Home
last modified time | relevance | path

Searched refs:vbufsize (Results 1 – 3 of 3) sorted by relevance

/dragonfly/lib/libc/gen/
H A Dgetmntvinfo.c49 static int vbufsize; in getmntvinfo() local
53 if (vbufsize > 0 && (mntsize = getvfsstat(mntsbuf, mntvbuf, vbufsize, flags)) < 0) in getmntvinfo()
55 while (vbufsize <= mntsize * (int)sizeof(struct statvfs)) { in getmntvinfo()
59 vbufsize = (mntsize + 1) * sizeof(struct statvfs); in getmntvinfo()
62 if ((mntvbuf = (struct statvfs *)malloc(vbufsize)) == NULL) in getmntvinfo()
64 if ((mntsize = getvfsstat(mntsbuf, mntvbuf, vbufsize, flags)) < 0) in getmntvinfo()
/dragonfly/sys/sys/
H A Dsysproto.h1200 long vbufsize; char vbufsize_[PAD_(long)]; member
/dragonfly/sys/kern/
H A Dvfs_syscalls.c1749 info.maxcount = uap->vbufsize / sizeof(struct statvfs); in sys_getvfsstat()