Home
last modified time | relevance | path

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

/freebsd-12-stable/sys/compat/linux/
Dlinux_file.c379 struct l_dirent64 *linux_dirent64; in linux_getdents64() local
414 linux_dirent64 = (struct l_dirent64*)lbuf; in linux_getdents64()
415 linux_dirent64->d_ino = bdp->d_fileno; in linux_getdents64()
416 linux_dirent64->d_off = base + reclen; in linux_getdents64()
417 linux_dirent64->d_reclen = linuxreclen; in linux_getdents64()
418 linux_dirent64->d_type = bdp->d_type; in linux_getdents64()
419 strlcpy(linux_dirent64->d_name, bdp->d_name, in linux_getdents64()
421 error = copyout(linux_dirent64, outp, linuxreclen); in linux_getdents64()