Searched defs:this_reclen (Results 1 - 6 of 6) sorted by relevance

/illumos-gate/usr/src/cmd/fs.d/autofs/
H A Dautod_readdir.c229 ushort_t this_reclen; local
289 this_reclen = DIRENT64_RECLEN(namelen);
290 if (outcount + this_reclen > total_bytes_wanted) {
307 dp->d_reclen = (ushort_t)this_reclen;
/illumos-gate/usr/src/uts/common/fs/autofs/
H A Dauto_vnops.c965 int this_reclen; local
1043 this_reclen = cdp->d_reclen;
1057 (size_t)this_reclen);
1059 outcount += this_reclen;
1071 count += this_reclen;
1073 ((char *)cdp + this_reclen);
1108 this_reclen = DIRENT64_RECLEN(1);
1109 if (alloc_count < this_reclen) {
1115 dp->d_reclen = (ushort_t)this_reclen;
1120 DIRENT64_NAMELEN(this_reclen));
[all...]
/illumos-gate/usr/src/uts/common/fs/nfs/
H A Dnfs_xdr.c839 uint_t fileid, this_reclen; local
860 this_reclen = DIRENT64_RECLEN(namlen);
861 if (this_reclen > size) {
870 DIRENT64_NAMELEN(this_reclen) - namlen);
872 dp->d_reclen = this_reclen;
H A Dnfs3_xdr.c2182 uint_t this_reclen; local
2210 this_reclen = DIRENT64_RECLEN(namlen);
2215 if ((outcount + this_reclen) > entries_size) {
2219 dp->d_reclen = this_reclen;
2225 DIRENT64_NAMELEN(this_reclen) - namlen);
2234 outcount += this_reclen;
2235 dp = (dirent64_t *)((intptr_t)dp + this_reclen);
2424 uint_t this_reclen; local
2455 this_reclen = DIRENT64_RECLEN(namlen);
2460 if ((outcount + this_reclen) > entries_siz
[all...]
/illumos-gate/usr/src/uts/common/fs/dev/
H A Dsdev_subr.c2437 int this_reclen; local
2536 this_reclen = DIRENT64_RECLEN(1);
2537 if (alloc_count < this_reclen) {
2544 dp->d_reclen = (ushort_t)this_reclen;
2547 DIRENT64_NAMELEN(this_reclen));
2554 this_reclen = DIRENT64_RECLEN(2);
2555 if (alloc_count < outcount + this_reclen) {
2560 dp->d_reclen = (ushort_t)this_reclen;
2565 DIRENT64_NAMELEN(this_reclen));
/illumos-gate/usr/src/uts/common/fs/ufs/
H A Dufs_vnops.c4035 ushort_t this_reclen = local
4038 if (!outcount && this_reclen > bufsize) {
4044 if (outcount + this_reclen > bufsize) {
4049 odp->d_reclen = (ushort_t)this_reclen;
4055 DIRENT64_NAMELEN(this_reclen));
4057 DIRENT64_NAMELEN(this_reclen));

Completed in 69 milliseconds