Searched refs:kern_ftruncate (Results 1 - 5 of 5) sorted by relevance

/freebsd-current/sys/kern/
H A Dsys_generic.c596 kern_ftruncate(struct thread *td, int fd, off_t length) function
628 return (kern_ftruncate(td, uap->fd, uap->length));
642 return (kern_ftruncate(td, uap->fd, uap->length));
H A Dvfs_syscalls.c3556 return (kern_ftruncate(td, uap->fd, uap->length));
/freebsd-current/sys/compat/linux/
H A Dlinux_file.c891 return (kern_ftruncate(td, args->fd, args->length));
906 return (kern_ftruncate(td, args->fd, length));
/freebsd-current/sys/sys/
H A Dsyscallsubr.h178 int kern_ftruncate(struct thread *td, int fd, off_t length);
/freebsd-current/sys/compat/freebsd32/
H A Dfreebsd32_misc.c2018 return (kern_ftruncate(td, uap->fd, PAIR32TO64(off_t, uap->length)));
2025 return (kern_ftruncate(td, uap->fd, uap->length));
2116 return (kern_ftruncate(td, uap->fd, PAIR32TO64(off_t, uap->length)));

Completed in 230 milliseconds