Searched defs:fdt (Results 1 - 1 of 1) sorted by relevance

/include/linux/
H A Dfdtable.h33 static inline void __set_close_on_exec(int fd, struct fdtable *fdt) argument
35 __set_bit(fd, fdt->close_on_exec);
38 static inline void __clear_close_on_exec(int fd, struct fdtable *fdt) argument
40 __clear_bit(fd, fdt->close_on_exec);
43 static inline bool close_on_exec(int fd, const struct fdtable *fdt) argument
45 return test_bit(fd, fdt->close_on_exec);
48 static inline void __set_open_fd(int fd, struct fdtable *fdt) argument
50 __set_bit(fd, fdt->open_fds);
53 static inline void __clear_open_fd(int fd, struct fdtable *fdt) argument
55 __clear_bit(fd, fdt
58 fd_is_open(int fd, const struct fdtable *fdt) argument
71 struct fdtable __rcu *fdt; member in struct:files_struct
100 free_fdtable(struct fdtable *fdt) argument
108 struct fdtable *fdt = files_fdtable(files); local
[all...]

Completed in 5 milliseconds