Lines Matching refs:__fd
148 int fexecve(int __fd, char* _Nullable const* _Nullable __argv, char* _Nullable const* _Nullable __e…
251 long fpathconf(int __fd, int __name);
261 int fchdir(int __fd);
273 int fchown(int __fd, uid_t __owner, gid_t __group);
280 int syncfs(int __fd) __INTRODUCED_IN(28);
283 int close(int __fd);
295 ssize_t read(int __fd, void* __BIONIC_COMPLICATED_NULLNESS __buf, size_t __count);
307 ssize_t write(int __fd, const void* __BIONIC_COMPLICATED_NULLNESS __buf, size_t __count);
312 int fsync(int __fd);
313 int fdatasync(int __fd);
318 off_t lseek(int __fd, off_t __offset, int __whence) __RENAME(lseek64);
319 ssize_t pread(int __fd, void* _Nonnull __buf, size_t __count, off_t __offset) __RENAME(pread64);
320 ssize_t pwrite(int __fd, const void* _Nonnull __buf, size_t __count, off_t __offset) __RENAME(pwrit…
321 int ftruncate(int __fd, off_t __length) __RENAME(ftruncate64);
324 off_t lseek(int __fd, off_t __offset, int __whence);
325 ssize_t pread(int __fd, void* _Nonnull __buf, size_t __count, off_t __offset);
326 ssize_t pwrite(int __fd, const void* _Nonnull __buf, size_t __count, off_t __offset);
327 int ftruncate(int __fd, off_t __length);
331 off64_t lseek64(int __fd, off64_t __offset, int __whence);
332 ssize_t pread64(int __fd, void* _Nonnull __buf, size_t __count, off64_t __offset);
333 ssize_t pwrite64(int __fd, const void* _Nonnull __buf, size_t __count, off64_t __offset);
334 int ftruncate64(int __fd, off64_t __length);
347 int isatty(int __fd);
348 char* _Nullable ttyname(int __fd);
349 int ttyname_r(int __fd, char* _Nonnull __buf, size_t __buf_size);
374 pid_t tcgetpgrp(int __fd);
375 int tcsetpgrp(int __fd, pid_t __pid);