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

  /src/sys/compat/sunos/
sunos_dirent.h 46 #define SUNOS_RECLEN(de,namlen) ALIGN((SUNOS_NAMEOFF(de) + (namlen) + 1))
  /src/sys/rump/kern/lib/libsys_sunos/
rump_sunos_compat.c 57 #define SUNOS_RECLEN(de,namlen) ALIGN((SUNOS_NAMEOFF(de) + (namlen) + 1))
264 int resid, sunos_reclen;/* Sun-format */ local in function:rump_sunos_sys_getdents
336 sunos_reclen = SUNOS_RECLEN(&idb, bdp->d_namlen);
337 if (reclen > len || resid < sunos_reclen) {
353 idb.d_reclen = sunos_reclen;
355 if ((error = copyout((void *)&idb, outp, sunos_reclen)) != 0)
360 outp += sunos_reclen;
361 resid -= sunos_reclen;

Completed in 11 milliseconds