Lines Matching refs:fd
37 #define __close_nocancel(fd) \ argument
38 __close (fd)
39 #define __close_nocancel_nostatus(fd) \ argument
40 (void) __close (fd)
41 #define __read_nocancel(fd, buf, n) \ argument
42 __read (fd, buf, n)
43 #define __pread64_nocancel(fd, buf, count, offset) \ argument
44 __pread64 (fd, buf, count, offset)
45 #define __write_nocancel(fd, buf, n) \ argument
46 __write (fd, buf, n)
47 #define __writev_nocancel_nostatus(fd, iov, n) \ argument
48 (void) __writev (fd, iov, n)
49 #define __fcntl64_nocancel(fd, cmd, ...) \ argument
50 __fcntl64 (fd, cmd, __VA_ARGS__)