Home
last modified time | relevance | path

Searched refs:this_reclen (Results 1 – 6 of 6) sorted by relevance

/illumos-gate/usr/src/uts/common/fs/autofs/
H A Dauto_vnops.c966 int this_reclen; in auto_readdir() local
1044 this_reclen = cdp->d_reclen; in auto_readdir()
1058 (size_t)this_reclen); in auto_readdir()
1060 outcount += this_reclen; in auto_readdir()
1072 count += this_reclen; in auto_readdir()
1074 ((char *)cdp + this_reclen); in auto_readdir()
1109 this_reclen = DIRENT64_RECLEN(1); in auto_readdir()
1110 if (alloc_count < this_reclen) { in auto_readdir()
1121 DIRENT64_NAMELEN(this_reclen)); in auto_readdir()
1125 this_reclen = DIRENT64_RECLEN(2); in auto_readdir()
[all …]
/illumos-gate/usr/src/cmd/fs.d/autofs/
H A Dautod_readdir.c227 ushort_t this_reclen; in create_dirents() local
287 this_reclen = DIRENT64_RECLEN(namelen); in create_dirents()
288 if (outcount + this_reclen > total_bytes_wanted) { in create_dirents()
305 dp->d_reclen = (ushort_t)this_reclen; in create_dirents()
/illumos-gate/usr/src/uts/common/fs/nfs/
H A Dnfs3_xdr.c2181 uint_t this_reclen; in xdr_READDIR3vres() local
2209 this_reclen = DIRENT64_RECLEN(namlen); in xdr_READDIR3vres()
2214 if ((outcount + this_reclen) > entries_size) { in xdr_READDIR3vres()
2218 dp->d_reclen = this_reclen; in xdr_READDIR3vres()
2224 DIRENT64_NAMELEN(this_reclen) - namlen); in xdr_READDIR3vres()
2233 outcount += this_reclen; in xdr_READDIR3vres()
2423 uint_t this_reclen; in xdr_READDIRPLUS3vres() local
2454 this_reclen = DIRENT64_RECLEN(namlen); in xdr_READDIRPLUS3vres()
2463 dp->d_reclen = this_reclen; in xdr_READDIRPLUS3vres()
2469 DIRENT64_NAMELEN(this_reclen) - namlen); in xdr_READDIRPLUS3vres()
[all …]
H A Dnfs_xdr.c839 uint_t fileid, this_reclen; in xdr_getrddirres() local
860 this_reclen = DIRENT64_RECLEN(namlen); in xdr_getrddirres()
861 if (this_reclen > size) { in xdr_getrddirres()
870 DIRENT64_NAMELEN(this_reclen) - namlen); in xdr_getrddirres()
872 dp->d_reclen = this_reclen; in xdr_getrddirres()
/illumos-gate/usr/src/uts/common/fs/dev/
H A Dsdev_subr.c2305 int this_reclen; in devname_readdir_func() local
2404 this_reclen = DIRENT64_RECLEN(1); in devname_readdir_func()
2405 if (alloc_count < this_reclen) { in devname_readdir_func()
2412 dp->d_reclen = (ushort_t)this_reclen; in devname_readdir_func()
2415 DIRENT64_NAMELEN(this_reclen)); in devname_readdir_func()
2422 this_reclen = DIRENT64_RECLEN(2); in devname_readdir_func()
2423 if (alloc_count < outcount + this_reclen) { in devname_readdir_func()
2428 dp->d_reclen = (ushort_t)this_reclen; in devname_readdir_func()
2433 DIRENT64_NAMELEN(this_reclen)); in devname_readdir_func()
/illumos-gate/usr/src/uts/common/fs/ufs/
H A Dufs_vnops.c3914 ushort_t this_reclen = in ufs_readdir() local
3917 if (!outcount && this_reclen > bufsize) { in ufs_readdir()
3923 if (outcount + this_reclen > bufsize) { in ufs_readdir()
3928 odp->d_reclen = (ushort_t)this_reclen; in ufs_readdir()
3934 DIRENT64_NAMELEN(this_reclen)); in ufs_readdir()
3936 DIRENT64_NAMELEN(this_reclen)); in ufs_readdir()