Lines Matching defs:off_t
23 pub type off_t = i64;
169 pub st_size: off_t,
651 pub fn lseek(fd: ::c_int, offset: off_t, whence: ::c_int) -> off_t;
656 pub fn pread(fd: ::c_int, buf: *mut ::c_void, count: ::size_t, offset: off_t) -> ::ssize_t;
657 pub fn pwrite(fd: ::c_int, buf: *const ::c_void, count: ::size_t, offset: off_t) -> ::ssize_t;
666 pub fn truncate(path: *const c_char, length: off_t) -> ::c_int;
667 pub fn ftruncate(fd: ::c_int, length: off_t) -> ::c_int;
691 pub fn fseeko(stream: *mut ::FILE, offset: ::off_t, whence: ::c_int) -> ::c_int;
692 pub fn ftello(stream: *mut ::FILE) -> ::off_t;
693 pub fn posix_fallocate(fd: ::c_int, offset: ::off_t, len: ::off_t) -> ::c_int;
706 pub fn pwritev(fd: ::c_int, iov: *const ::iovec, iovcnt: ::c_int, offset: ::off_t)
708 pub fn preadv(fd: ::c_int, iov: *const ::iovec, iovcnt: ::c_int, offset: ::off_t) -> ::ssize_t;
709 pub fn posix_fadvise(fd: ::c_int, offset: ::off_t, len: ::off_t, advise: ::c_int) -> ::c_int;
742 pub fn __wasilibc_tell(fd: c_int) -> ::off_t;