Lines Matching defs:off_t
79 pub type off_t = i64;
297 pub aio_offset: off_t,
327 pub l_start: ::off_t,
328 pub l_len: ::off_t,
927 pub d_off: ::off_t,
3616 pub fn lseek(fd: ::c_int, offset: off_t, whence: ::c_int) -> off_t;
3638 pub fn pread(fd: ::c_int, buf: *mut ::c_void, count: ::size_t, offset: off_t) -> ::ssize_t;
3639 pub fn pwrite(fd: ::c_int, buf: *const ::c_void, count: ::size_t, offset: off_t) -> ::ssize_t;
3657 offset: off_t,
3673 pub fn ftruncate(fd: ::c_int, length: off_t) -> ::c_int;
3830 pub fn fseeko(stream: *mut ::FILE, offset: ::off_t, whence: ::c_int) -> ::c_int;
3831 pub fn ftello(stream: *mut ::FILE) -> ::off_t;
3879 pub fn posix_fadvise(fd: ::c_int, offset: ::off_t, len: ::off_t, advise: ::c_int) -> ::c_int;
3982 pub fn fallocate(fd: ::c_int, mode: ::c_int, offset: ::off_t, len: ::off_t) -> ::c_int;
3983 pub fn posix_fallocate(fd: ::c_int, offset: ::off_t, len: ::off_t) -> ::c_int;
3994 pub fn pwritev(fd: ::c_int, iov: *const ::iovec, iovcnt: ::c_int, offset: ::off_t)
3996 pub fn preadv(fd: ::c_int, iov: *const ::iovec, iovcnt: ::c_int, offset: ::off_t) -> ::ssize_t;