HomeSort by: relevance | last modified time | path
    Searched defs:old_reclen (Results 1 - 2 of 2) sorted by relevancy

  /src/sys/compat/common/
vfs_syscalls_12.c 124 int resid, old_reclen = 0; /* Dirent12-format */ local in function:compat_12_sys_getdirentries
210 old_reclen = _DIRENT_RECLEN(&idb, bdp->d_namlen);
211 if (reclen > len || resid < old_reclen) {
222 idb.d_reclen = (uint16_t)old_reclen;
227 if ((error = copyout(&idb, outp, old_reclen)))
236 outp += old_reclen;
237 resid -= old_reclen;
vfs_syscalls_43.c 342 int resid, old_reclen = 0; /* Dirent12-format */ local in function:compat_43_sys_getdirentries
428 old_reclen = _DIRENT_RECLEN(&idb, bdp->d_namlen);
429 if (reclen > len || resid < old_reclen) {
440 idb.d_reclen = (uint16_t)old_reclen;
445 if ((error = copyout(&idb, outp, old_reclen)))
454 outp += old_reclen;
455 resid -= old_reclen;

Completed in 12 milliseconds