Home
last modified time | relevance | path

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

/freebsd/sys/compat/linux/
H A Dlinux_file.c486 struct l_dirent64 *linux_dirent64; in linux_getdents64() local
500 linux_dirent64 = malloc(LINUX_RECLEN64(LINUX_NAME_MAX), M_LINUX, in linux_getdents64()
522 linux_dirent64->d_ino = bdp->d_fileno; in linux_getdents64()
523 linux_dirent64->d_off = bdp->d_off; in linux_getdents64()
524 linux_dirent64->d_reclen = linuxreclen; in linux_getdents64()
525 linux_dirent64->d_type = bdp->d_type; in linux_getdents64()
526 strlcpy(linux_dirent64->d_name, bdp->d_name, in linux_getdents64()
528 error = copyout(linux_dirent64, outp, linuxreclen); in linux_getdents64()
543 free(linux_dirent64, M_LINUX); in linux_getdents64()