/linux-4.4.14/tools/testing/selftests/memfd/ |
D | memfd_test.c | 32 int r, fd; in mfd_assert_new() local 63 static unsigned int mfd_assert_get_seals(int fd) in mfd_assert_get_seals() 76 static void mfd_assert_has_seals(int fd, unsigned int seals) in mfd_assert_has_seals() 87 static void mfd_assert_add_seals(int fd, unsigned int seals) in mfd_assert_add_seals() 100 static void mfd_fail_add_seals(int fd, unsigned int seals) in mfd_fail_add_seals() 119 static void mfd_assert_size(int fd, size_t size) in mfd_assert_size() 135 static int mfd_assert_dup(int fd) in mfd_assert_dup() 148 static void *mfd_assert_mmap_shared(int fd) in mfd_assert_mmap_shared() 166 static void *mfd_assert_mmap_private(int fd) in mfd_assert_mmap_private() 184 static int mfd_assert_open(int fd, int flags, mode_t mode) in mfd_assert_open() [all …]
|
D | fuse_test.c | 46 int r, fd; in mfd_assert_new() local 64 static __u64 mfd_assert_get_seals(int fd) in mfd_assert_get_seals() 77 static void mfd_assert_has_seals(int fd, __u64 seals) in mfd_assert_has_seals() 89 static void mfd_assert_add_seals(int fd, __u64 seals) in mfd_assert_add_seals() 103 static int mfd_busy_add_seals(int fd, __u64 seals) in mfd_busy_add_seals() 124 static void *mfd_assert_mmap_shared(int fd) in mfd_assert_mmap_shared() 142 static void *mfd_assert_mmap_private(int fd) in mfd_assert_mmap_private() 231 int fd, mfd, r; in main() local
|
/linux-4.4.14/arch/um/os-Linux/ |
D | file.c | 37 int os_stat_fd(const int fd, struct uml_stat *ubuf) in os_stat_fd() 82 int os_ioctl_generic(int fd, unsigned int cmd, unsigned long arg) in os_ioctl_generic() 94 int os_get_ifname(int fd, char* namebuf) in os_get_ifname() 102 int os_set_slip(int fd) in os_set_slip() 117 int os_mode_fd(int fd, int mode) in os_mode_fd() 175 int fd, err, f = 0; in os_open_file() local 212 int fd, err; in os_connect_socket() local 237 void os_close_file(int fd) in os_close_file() 241 int os_fsync_file(int fd) in os_fsync_file() 248 int os_seek_file(int fd, unsigned long long offset) in os_seek_file() [all …]
|
D | mem.c | 98 int fd; in make_tempfile() local 138 int fd, err; in create_tmp_file() local 173 int err, fd; in create_mem_file() local 188 int err, fd = create_tmp_file(UM_KERN_PAGE_SIZE); in check_tmpexec() local
|
D | tty.c | 14 int fd; member 30 int fd, err; in get_pty() local
|
D | process.c | 31 int fd, err; in os_process_pc() local 63 int parent = FAILURE_PID, n, fd; in os_process_parent() local 138 int os_map_memory(void *virt, int fd, unsigned long long off, unsigned long len, in os_map_memory() 192 int fd, ok = 0; in can_drop_memory() local
|
D | sigio.c | 167 int add_sigio_fd(int fd) in add_sigio_fd() 202 int ignore_sigio_fd(int fd) in ignore_sigio_fd() 240 static struct pollfd *setup_initial_poll(int fd) in setup_initial_poll() 339 void sigio_broken(int fd, int read) in sigio_broken() 365 void maybe_sigio_broken(int fd, int read) in maybe_sigio_broken()
|
D | umid.c | 137 int dead, fd, p, n, err; in is_umdir_used() local 212 int fd, n; in create_pid_file() local 248 int fd, err; in make_umid() local
|
D | irq.c | 52 int os_create_pollfd(int fd, int events, void *tmp_pfd, int size_tmpfds) in os_create_pollfd() 127 void os_set_pollfd(int i, int fd) in os_set_pollfd()
|
/linux-4.4.14/include/linux/ |
D | file.h | 29 struct fd { struct 36 static inline void fdput(struct fd fd) in fdput() 53 static inline struct fd fdget(unsigned int fd) in fdget() 58 static inline struct fd fdget_raw(unsigned int fd) in fdget_raw()
|
D | fdtable.h | 26 struct file __rcu **fd; /* current fd array */ member 33 static inline bool close_on_exec(int fd, const struct fdtable *fdt) in close_on_exec() 38 static inline bool fd_is_open(int fd, const struct fdtable *fdt) in fd_is_open() 80 static inline struct file *__fcheck_files(struct files_struct *files, unsigned int fd) in __fcheck_files() 89 static inline struct file *fcheck_files(struct files_struct *files, unsigned int fd) in fcheck_files() 100 #define fcheck(fd) fcheck_files(current->files, fd) argument
|
/linux-4.4.14/samples/uhid/ |
D | uhid-example.c | 158 static int uhid_write(int fd, const struct uhid_event *ev) in uhid_write() 175 static int create(int fd) in create() 193 static void destroy(int fd) in destroy() 224 static int event(int fd) in event() 277 static int send_event(int fd) in send_event() 300 static int keyboard(int fd) in keyboard() 388 int fd; in main() local
|
/linux-4.4.14/fs/ |
D | file.c | 245 static inline void __set_close_on_exec(int fd, struct fdtable *fdt) in __set_close_on_exec() 250 static inline void __clear_close_on_exec(int fd, struct fdtable *fdt) in __clear_close_on_exec() 256 static inline void __set_open_fd(unsigned int fd, struct fdtable *fdt) in __set_open_fd() 264 static inline void __clear_open_fd(unsigned int fd, struct fdtable *fdt) in __clear_open_fd() 499 unsigned int fd; in __alloc_fd() local 565 static void __put_unused_fd(struct files_struct *files, unsigned int fd) in __put_unused_fd() 573 void put_unused_fd(unsigned int fd) in put_unused_fd() 603 void __fd_install(struct files_struct *files, unsigned int fd, in __fd_install() 624 void fd_install(unsigned int fd, struct file *file) in fd_install() 634 int __close_fd(struct files_struct *files, unsigned fd) in __close_fd() [all …]
|
D | sync.c | 154 SYSCALL_DEFINE1(syncfs, int, fd) in SYSCALL_DEFINE1() argument 213 static int do_fsync(unsigned int fd, int datasync) in do_fsync() 225 SYSCALL_DEFINE1(fsync, unsigned int, fd) in SYSCALL_DEFINE1() argument 230 SYSCALL_DEFINE1(fdatasync, unsigned int, fd) in SYSCALL_DEFINE1() argument 282 SYSCALL_DEFINE4(sync_file_range, int, fd, loff_t, offset, loff_t, nbytes, in SYSCALL_DEFINE4() argument 368 SYSCALL_DEFINE4(sync_file_range2, int, fd, unsigned int, flags, in SYSCALL_DEFINE4() argument
|
D | fcntl.c | 32 static int setfl(int fd, struct file * filp, unsigned long arg) in setfl() 243 static long do_fcntl(int fd, unsigned int cmd, unsigned long arg, in do_fcntl() 356 SYSCALL_DEFINE3(fcntl, unsigned int, fd, unsigned int, cmd, unsigned long, arg) in SYSCALL_DEFINE3() argument 380 SYSCALL_DEFINE3(fcntl64, unsigned int, fd, unsigned int, cmd, in SYSCALL_DEFINE3() argument 450 int fd, int reason, int group) in send_sigio_to_task() 490 void send_sigio(struct fown_struct *fown, int fd, int band) in send_sigio() 623 struct fasync_struct *fasync_insert_entry(int fd, struct file *filp, struct fasync_struct **fapp, s… in fasync_insert_entry() 657 static int fasync_add_entry(int fd, struct file *filp, struct fasync_struct **fapp) in fasync_add_entry() 686 int fasync_helper(int fd, struct file * filp, int on, struct fasync_struct **fapp) in fasync_helper()
|
D | read_write.c | 264 static inline struct fd fdget_pos(int fd) in fdget_pos() 276 SYSCALL_DEFINE3(lseek, unsigned int, fd, off_t, offset, unsigned int, whence) in SYSCALL_DEFINE3() argument 295 COMPAT_SYSCALL_DEFINE3(lseek, unsigned int, fd, compat_off_t, offset, unsigned int, whence) in COMPAT_SYSCALL_DEFINE3() argument 302 SYSCALL_DEFINE5(llseek, unsigned int, fd, unsigned long, offset_high, in SYSCALL_DEFINE5() argument 562 SYSCALL_DEFINE3(read, unsigned int, fd, char __user *, buf, size_t, count) in SYSCALL_DEFINE3() argument 577 SYSCALL_DEFINE3(write, unsigned int, fd, const char __user *, buf, in SYSCALL_DEFINE3() argument 594 SYSCALL_DEFINE4(pread64, unsigned int, fd, char __user *, buf, in SYSCALL_DEFINE4() argument 614 SYSCALL_DEFINE4(pwrite64, unsigned int, fd, const char __user *, buf, in SYSCALL_DEFINE4() argument 852 SYSCALL_DEFINE3(readv, unsigned long, fd, const struct iovec __user *, vec, in SYSCALL_DEFINE3() argument 872 SYSCALL_DEFINE3(writev, unsigned long, fd, const struct iovec __user *, vec, in SYSCALL_DEFINE3() argument [all …]
|
D | compat_ioctl.c | 118 static int w_long(unsigned int fd, unsigned int cmd, in w_long() 142 static int do_video_get_event(unsigned int fd, unsigned int cmd, in do_video_get_event() 172 static int do_video_stillpicture(unsigned int fd, unsigned int cmd, in do_video_stillpicture() 203 static int do_video_set_spu_palette(unsigned int fd, unsigned int cmd, in do_video_set_spu_palette() 279 static int sg_ioctl_trans(unsigned int fd, unsigned int cmd, in sg_ioctl_trans() 383 static int sg_grt_trans(unsigned int fd, unsigned int cmd, struct in sg_grt_trans() 415 static int ppp_sock_fprog_ioctl_trans(unsigned int fd, unsigned int cmd, in ppp_sock_fprog_ioctl_trans() 454 static int ppp_gidle(unsigned int fd, unsigned int cmd, in ppp_gidle() 475 static int ppp_scompress(unsigned int fd, unsigned int cmd, in ppp_scompress() 515 static int mt_ioctl_trans(unsigned int fd, unsigned int cmd, void __user *argp) in mt_ioctl_trans() [all …]
|
D | open.c | 154 static long do_sys_ftruncate(unsigned int fd, loff_t length, int small) in do_sys_ftruncate() 201 SYSCALL_DEFINE2(ftruncate, unsigned int, fd, unsigned long, length) in SYSCALL_DEFINE2() argument 207 COMPAT_SYSCALL_DEFINE2(ftruncate, unsigned int, fd, compat_ulong_t, length) in COMPAT_SYSCALL_DEFINE2() argument 220 SYSCALL_DEFINE2(ftruncate64, unsigned int, fd, loff_t, length) in SYSCALL_DEFINE2() argument 320 SYSCALL_DEFINE4(fallocate, int, fd, int, mode, loff_t, offset, loff_t, len) in SYSCALL_DEFINE4() argument 444 SYSCALL_DEFINE1(fchdir, unsigned int, fd) in SYSCALL_DEFINE1() argument 531 SYSCALL_DEFINE2(fchmod, unsigned int, fd, umode_t, mode) in SYSCALL_DEFINE2() argument 652 SYSCALL_DEFINE3(fchown, unsigned int, fd, uid_t, user, gid_t, group) in SYSCALL_DEFINE3() argument 1007 int fd = build_open_flags(flags, mode, &op); in do_sys_open() local 1093 SYSCALL_DEFINE1(close, unsigned int, fd) in SYSCALL_DEFINE1() argument
|
D | statfs.c | 95 int fd_statfs(int fd, struct kstatfs *st) in fd_statfs() 193 SYSCALL_DEFINE2(fstatfs, unsigned int, fd, struct statfs __user *, buf) in SYSCALL_DEFINE2() argument 202 SYSCALL_DEFINE3(fstatfs64, unsigned int, fd, size_t, sz, struct statfs64 __user *, buf) in SYSCALL_DEFINE3() argument
|
D | eventfd.c | 322 struct file *eventfd_fget(int fd) in eventfd_fget() 347 struct eventfd_ctx *eventfd_ctx_fdget(int fd) in eventfd_ctx_fdget() 422 int fd, error; in SYSCALL_DEFINE2() local
|
D | fhandle.c | 114 static struct vfsmount *get_vfsmount_from_fd(int fd) in get_vfsmount_from_fd() 220 int fd; in do_handle_open() local
|
D | readdir.c | 110 SYSCALL_DEFINE3(old_readdir, unsigned int, fd, in SYSCALL_DEFINE3() argument 196 SYSCALL_DEFINE3(getdents, unsigned int, fd, in SYSCALL_DEFINE3() argument 277 SYSCALL_DEFINE3(getdents64, unsigned int, fd, in SYSCALL_DEFINE3() argument
|
D | ioctl.c | 496 static int ioctl_fioasync(unsigned int fd, struct file *filp, in ioctl_fioasync() 555 int do_vfs_ioctl(struct file *filp, unsigned int fd, unsigned int cmd, in do_vfs_ioctl() 613 SYSCALL_DEFINE3(ioctl, unsigned int, fd, unsigned int, cmd, unsigned long, arg) in SYSCALL_DEFINE3() argument
|
D | stat.c | 77 int vfs_fstat(unsigned int fd, struct kstat *stat) in vfs_fstat() 203 SYSCALL_DEFINE2(fstat, unsigned int, fd, struct __old_kernel_stat __user *, statbuf) in SYSCALL_DEFINE2() argument 304 SYSCALL_DEFINE2(newfstat, unsigned int, fd, struct stat __user *, statbuf) in SYSCALL_DEFINE2() argument 422 SYSCALL_DEFINE2(fstat64, unsigned long, fd, struct stat64 __user *, statbuf) in SYSCALL_DEFINE2() argument
|
/linux-4.4.14/fs/hfsplus/ |
D | bfind.c | 14 int hfs_find_init(struct hfs_btree *tree, struct hfs_find_data *fd) in hfs_find_init() 43 void hfs_find_exit(struct hfs_find_data *fd) in hfs_find_exit() 54 struct hfs_find_data *fd, in hfs_find_1st_rec_by_cnid() 92 struct hfs_find_data *fd, in hfs_find_rec_by_key() 113 int __hfs_brec_find(struct hfs_bnode *bnode, struct hfs_find_data *fd, in __hfs_brec_find() 163 int hfs_brec_find(struct hfs_find_data *fd, search_strategy_t do_key_compare) in hfs_brec_find() 217 int hfs_brec_read(struct hfs_find_data *fd, void *rec, int rec_len) in hfs_brec_read() 230 int hfs_brec_goto(struct hfs_find_data *fd, int cnt) in hfs_brec_goto()
|
D | attributes.c | 137 const char *name, struct hfs_find_data *fd) in hfsplus_find_attr() 172 struct hfs_find_data fd; in hfsplus_attr_exists() local 198 struct hfs_find_data fd; in hfsplus_create_attr() local 261 struct hfs_find_data *fd) in __hfsplus_delete_attr() 301 struct hfs_find_data fd; in hfsplus_delete_attr() local 342 struct hfs_find_data fd; in hfsplus_delete_all_attrs() local
|
D | extents.c | 87 struct hfs_find_data *fd) in __hfsplus_ext_write_extent() 129 struct hfs_find_data fd; in hfsplus_ext_write_extent_locked() local 151 static inline int __hfsplus_ext_read_extent(struct hfs_find_data *fd, in __hfsplus_ext_read_extent() 172 static inline int __hfsplus_ext_cache_extent(struct hfs_find_data *fd, in __hfsplus_ext_cache_extent() 204 struct hfs_find_data fd; in hfsplus_ext_read_extent() local 389 struct hfs_find_data fd; in hfsplus_free_fork() local 535 struct hfs_find_data fd; in hfsplus_file_truncate() local
|
D | brec.c | 62 int hfs_brec_insert(struct hfs_find_data *fd, void *entry, int entry_len) in hfs_brec_insert() 177 int hfs_brec_remove(struct hfs_find_data *fd) in hfs_brec_remove() 233 static struct hfs_bnode *hfs_bnode_split(struct hfs_find_data *fd) in hfs_bnode_split() 354 static int hfs_brec_update_parent(struct hfs_find_data *fd) in hfs_brec_update_parent()
|
D | catalog.c | 194 struct hfs_find_data *fd) in hfsplus_find_cat() 256 struct hfs_find_data fd; in hfsplus_create_cat() local 324 struct hfs_find_data fd; in hfsplus_delete_cat() local
|
D | xattr.c | 453 struct hfs_find_data fd; in hfsplus_getxattr_finder_info() local 502 struct hfs_find_data fd; in __hfsplus_getxattr() local 624 struct hfs_find_data fd; in hfsplus_listxattr_finder_info() local 692 struct hfs_find_data fd; in hfsplus_listxattr() local
|
/linux-4.4.14/tools/perf/util/ |
D | probe-file.c | 105 int fd; in probe_file__open() local 133 struct strlist *probe_file__get_rawlist(int fd) in probe_file__get_rawlist() 167 static struct strlist *__probe_file__get_namelist(int fd, bool include_group) in __probe_file__get_namelist() 205 struct strlist *probe_file__get_namelist(int fd) in probe_file__get_namelist() 210 int probe_file__add_event(int fd, struct probe_trace_event *tev) in probe_file__add_event() 235 static int __del_trace_probe_event(int fd, struct str_node *ent) in __del_trace_probe_event() 269 int probe_file__get_events(int fd, struct strfilter *filter, in probe_file__get_events() 297 int probe_file__del_strlist(int fd, struct strlist *namelist) in probe_file__del_strlist() 310 int probe_file__del_events(int fd, struct strfilter *filter) in probe_file__del_events()
|
D | header.c | 62 static int do_write(int fd, const void *buf, size_t size) in do_write() 77 int write_padded(int fd, const void *bf, size_t count, size_t count_aligned) in write_padded() 91 static int do_write_string(int fd, const char *str) in do_write_string() 107 static char *do_read_string(int fd, struct perf_header *ph) in do_read_string() 138 static int write_tracing_data(int fd, struct perf_header *h __maybe_unused, in write_tracing_data() 145 static int write_build_id(int fd, struct perf_header *h, in write_build_id() 166 static int write_hostname(int fd, struct perf_header *h __maybe_unused, in write_hostname() 179 static int write_osrelease(int fd, struct perf_header *h __maybe_unused, in write_osrelease() 192 static int write_arch(int fd, struct perf_header *h __maybe_unused, in write_arch() 205 static int write_version(int fd, struct perf_header *h __maybe_unused, in write_version() [all …]
|
D | data.c | 16 int fd = perf_data_file__is_read(file) ? in check_pipe() local 52 int fd; in open_file_read() local 92 int fd; in open_file_write() local 109 int fd; in open_file() local
|
D | vdso.c | 73 int fd; in get_file() local 159 static int vdso__do_copy_compat(FILE *f, int fd) in vdso__do_copy_compat() 177 static int vdso__copy_compat(const char *prog, int fd) in vdso__copy_compat() 196 int fd, err; in vdso__create_compat_file() local
|
D | record.c | 16 int err = -EAGAIN, fd; in perf_do_probe_api() local 116 int cpu, fd; in perf_can_record_cpu_wide() local 245 int err, fd, cpu; in perf_evlist__can_select_event() local
|
D | symbol-minimal.c | 220 int fd; in sysfs__read_build_id() local 252 int fd = open(name, O_RDONLY); in symsrc__init() local 296 static int fd__is_64_bit(int fd) in fd__is_64_bit() 313 enum dso_type dso__type_fd(int fd) in dso__type_fd()
|
D | trace-event-info.c | 65 int r, fd; in record_file() local 484 int fd, bool temp) in tracing_data_get() 574 int read_tracing_data(int fd, struct list_head *pattrs) in read_tracing_data()
|
D | cgroup.h | 10 int fd; member
|
D | unwind-libunwind.c | 163 static u64 elf_section_offset(int fd, const char *name) in elf_section_offset() 189 static int elf_is_exec(int fd, const char *name) in elf_is_exec() 268 int ret = -EINVAL, fd; in read_unwind_spec_eh_frame() local 294 int fd; in read_unwind_spec_debug_frame() local 360 int fd = dso__data_get_fd(map->dso, ui->machine); in find_proc_info() local
|
D | util.c | 249 static ssize_t ion(bool is_read, int fd, void *buf, size_t n) in ion() 274 ssize_t readn(int fd, void *buf, size_t n) in readn() 282 ssize_t writen(int fd, void *buf, size_t n) in writen() 545 int fd, n, err = 0; in filename__read_str() local
|
D | cloexec.c | 28 int fd; in perf_flag_probe() local
|
D | auxtrace.c | 55 void *userpg, int fd) in auxtrace_mmap__mmap() 200 int fd = perf_data_file__fd(session->file); in auxtrace_copy_data() local 637 static int auxtrace_index__do_write(int fd, in auxtrace_index__do_write() 652 int auxtrace_index__write(int fd, struct list_head *head) in auxtrace_index__write() 673 static int auxtrace_index__process_entry(int fd, struct list_head *head, in auxtrace_index__process_entry() 702 int auxtrace_index__process(int fd, u64 size, struct perf_session *session, in auxtrace_index__process() 773 void *auxtrace_buffer__get_data(struct auxtrace_buffer *buffer, int fd) in auxtrace_buffer__get_data()
|
D | symbol-elf.c | 430 int fd, err = -1; in filename__read_build_id() local 457 int fd, err = -1; in sysfs__read_build_id() local 503 int fd, err = -1; in filename__read_debuglink() local 582 int fd = -1; in decompress_kmodule() local 644 int fd; in symsrc__init() local 1142 int file__read_maps(int fd, bool exe, mapfn_t mapfn, void *data, in file__read_maps() 1161 enum dso_type dso__type_fd(int fd) in dso__type_fd() 1236 int fd; member
|
/linux-4.4.14/arch/powerpc/kernel/ |
D | sys_ppc32.c | 66 unsigned long fd, unsigned long pgoff) in compat_sys_mmap2() 77 compat_ssize_t compat_sys_pread64(unsigned int fd, char __user *ubuf, compat_size_t count, in compat_sys_pread64() 83 compat_ssize_t compat_sys_pwrite64(unsigned int fd, const char __user *ubuf, compat_size_t count, in compat_sys_pwrite64() 89 compat_ssize_t compat_sys_readahead(int fd, u32 r4, u32 offhi, u32 offlo, u32 count) in compat_sys_readahead() 100 asmlinkage long compat_sys_fallocate(int fd, int mode, u32 offhi, u32 offlo, in compat_sys_fallocate() 107 asmlinkage int compat_sys_ftruncate64(unsigned int fd, u32 reg4, unsigned long high, in compat_sys_ftruncate64() 113 long ppc32_fadvise64(int fd, u32 unused, u32 offset_high, u32 offset_low, in ppc32_fadvise64() 120 asmlinkage long compat_sys_sync_file_range2(int fd, unsigned int flags, in compat_sys_sync_file_range2()
|
D | syscalls.c | 46 unsigned long fd, unsigned long off, int shift) in do_mmap2() 66 unsigned long fd, unsigned long pgoff) in sys_mmap2() 73 unsigned long fd, off_t offset) in sys_mmap() 118 long ppc_fadvise64_64(int fd, int advice, u32 offset_high, u32 offset_low, in ppc_fadvise64_64()
|
/linux-4.4.14/arch/xtensa/kernel/ |
D | smp.c | 469 struct flush_data *fd = arg; in ipi_flush_tlb_page() local 475 struct flush_data fd = { in flush_tlb_page() local 484 struct flush_data *fd = arg; in ipi_flush_tlb_range() local 491 struct flush_data fd = { in flush_tlb_range() local 501 struct flush_data *fd = arg; in ipi_flush_tlb_kernel_range() local 507 struct flush_data fd = { in flush_tlb_kernel_range() local 528 struct flush_data *fd = arg; in ipi_flush_cache_page() local 535 struct flush_data fd = { in flush_cache_page() local 545 struct flush_data *fd = arg; in ipi_flush_cache_range() local 552 struct flush_data fd = { in flush_cache_range() local [all …]
|
/linux-4.4.14/fs/hfs/ |
D | bfind.c | 14 int hfs_find_init(struct hfs_btree *tree, struct hfs_find_data *fd) in hfs_find_init() 31 void hfs_find_exit(struct hfs_find_data *fd) in hfs_find_exit() 42 int __hfs_brec_find(struct hfs_bnode *bnode, struct hfs_find_data *fd) in __hfs_brec_find() 94 int hfs_brec_find(struct hfs_find_data *fd) in hfs_brec_find() 148 int hfs_brec_read(struct hfs_find_data *fd, void *rec, int rec_len) in hfs_brec_read() 161 int hfs_brec_goto(struct hfs_find_data *fd, int cnt) in hfs_brec_goto()
|
D | extent.c | 110 static int __hfs_ext_write_extent(struct inode *inode, struct hfs_find_data *fd) in __hfs_ext_write_extent() 133 struct hfs_find_data fd; in hfs_ext_write_extent() local 146 static inline int __hfs_ext_read_extent(struct hfs_find_data *fd, struct hfs_extent *extent, in __hfs_ext_read_extent() 165 static inline int __hfs_ext_cache_extent(struct hfs_find_data *fd, struct inode *inode, u32 block) in __hfs_ext_cache_extent() 189 struct hfs_find_data fd; in hfs_ext_read_extent() local 285 struct hfs_find_data fd; in hfs_free_fork() local 473 struct hfs_find_data fd; in hfs_file_truncate() local
|
D | brec.c | 64 int hfs_brec_insert(struct hfs_find_data *fd, void *entry, int entry_len) in hfs_brec_insert() 175 int hfs_brec_remove(struct hfs_find_data *fd) in hfs_brec_remove() 229 static struct hfs_bnode *hfs_bnode_split(struct hfs_find_data *fd) in hfs_bnode_split() 350 static int hfs_brec_update_parent(struct hfs_find_data *fd) in hfs_brec_update_parent()
|
D | catalog.c | 84 struct hfs_find_data fd; in hfs_cat_create() local 180 struct hfs_find_data *fd) in hfs_cat_find_brec() 216 struct hfs_find_data fd; in hfs_cat_delete() local
|
D | attr.c | 20 struct hfs_find_data fd; in hfs_setxattr() local 63 struct hfs_find_data fd; in hfs_getxattr() local
|
D | dir.c | 24 struct hfs_find_data fd; in hfs_lookup() local 61 struct hfs_find_data fd; in hfs_readdir() local
|
/linux-4.4.14/arch/x86/ia32/ |
D | sys_ia32.c | 60 asmlinkage long sys32_ftruncate64(unsigned int fd, unsigned long offset_low, in sys32_ftruncate64() 119 asmlinkage long sys32_fstat64(unsigned int fd, struct stat64 __user *statbuf) in sys32_fstat64() 151 unsigned int fd; member 176 asmlinkage long sys32_pread(unsigned int fd, char __user *ubuf, u32 count, in sys32_pread() 183 asmlinkage long sys32_pwrite(unsigned int fd, const char __user *ubuf, in sys32_pwrite() 195 long sys32_fadvise64_64(int fd, __u32 offset_low, __u32 offset_high, in sys32_fadvise64_64() 204 asmlinkage ssize_t sys32_readahead(int fd, unsigned off_lo, unsigned off_hi, in sys32_readahead() 210 asmlinkage long sys32_sync_file_range(int fd, unsigned off_low, unsigned off_hi, in sys32_sync_file_range() 218 asmlinkage long sys32_fadvise64(int fd, unsigned offset_lo, unsigned offset_hi, in sys32_fadvise64() 225 asmlinkage long sys32_fallocate(int fd, int mode, unsigned offset_lo, in sys32_fallocate()
|
/linux-4.4.14/tools/testing/selftests/exec/ |
D | execveat.c | 27 static int execveat_(int fd, const char *path, char **argv, char **envp, in execveat_() 38 #define check_execveat_fail(fd, path, flags, errno) \ argument 40 static int _check_execveat_fail(int fd, const char *path, int flags, in _check_execveat_fail() 64 static int check_execveat_invoked_rc(int fd, const char *path, int flags, in check_execveat_invoked_rc() 111 static int check_execveat(int fd, const char *path, int flags) in check_execveat() 127 int fd = open(filename, flags); in open_or_die() local 155 int fd; in check_execveat_pathmax() local 223 int fd = open_or_die("execveat", O_RDONLY); in run_tests() local 363 int fd; in prerequisites() local
|
/linux-4.4.14/arch/parisc/kernel/ |
D | sys_parisc.c | 265 unsigned long prot, unsigned long flags, unsigned long fd, in sys_mmap2() 275 unsigned long prot, unsigned long flags, unsigned long fd, in sys_mmap() 295 asmlinkage long parisc_ftruncate64(unsigned int fd, in parisc_ftruncate64() 307 asmlinkage long sys_ftruncate64(unsigned int fd, unsigned long length) in sys_ftruncate64() 311 asmlinkage long sys_fcntl64(unsigned int fd, unsigned int cmd, unsigned long arg) in sys_fcntl64() 323 asmlinkage long parisc_ftruncate64(unsigned int fd, in parisc_ftruncate64() 330 asmlinkage ssize_t parisc_pread64(unsigned int fd, char __user *buf, size_t count, in parisc_pread64() 336 asmlinkage ssize_t parisc_pwrite64(unsigned int fd, const char __user *buf, in parisc_pwrite64() 342 asmlinkage ssize_t parisc_readahead(int fd, unsigned int high, unsigned int low, in parisc_readahead() 348 asmlinkage long parisc_fadvise64_64(int fd, in parisc_fadvise64_64() [all …]
|
/linux-4.4.14/arch/um/drivers/ |
D | chan_user.c | 17 void generic_close(int fd, void *unused) in generic_close() 22 int generic_read(int fd, char *c_out, void *unused) in generic_read() 38 int generic_write(int fd, const char *buf, int n, void *unused) in generic_write() 52 int generic_window_size(int fd, void *unused, unsigned short *rows_out, in generic_window_size() 74 int generic_console_write(int fd, const char *buf, int n) in generic_console_write() 219 static int winch_tramp(int fd, struct tty_port *port, int *fd_out, in winch_tramp() 274 void register_winch(int fd, struct tty_port *port) in register_winch()
|
D | slirp_user.c | 37 static int slirp_tramp(char **argv, int fd) in slirp_tramp() 77 static void slirp_close(int fd, void *data) in slirp_close() 106 int slirp_user_read(int fd, void *buf, int len, struct slirp_data *pri) in slirp_user_read() 111 int slirp_user_write(int fd, void *buf, int len, struct slirp_data *pri) in slirp_user_write()
|
D | port_kern.c | 24 int fd; member 38 int fd; member 48 int fd; in pipe_interrupt() local 79 int fd, socket[2], pid; in port_accept() local 164 int fd; in port_data() local 229 int fd; in port_wait() local
|
D | net_user.c | 50 void read_output(int fd, char *output, int len) in read_output() 95 int net_read(int fd, void *buf, int len) in net_read() 108 int net_recvfrom(int fd, void *buf, int len) in net_recvfrom() 123 int net_write(int fd, void *buf, int len) in net_write() 136 int net_send(int fd, void *buf, int len) in net_send() 151 int net_sendto(int fd, void *buf, int len, void *to, int sock_len) in net_sendto()
|
D | slip_user.c | 27 static int set_up_tty(int fd) in set_up_tty() 74 static int slip_tramp(char **argv, int fd) in slip_tramp() 190 static void slip_close(int fd, void *data) in slip_close() 212 int slip_user_read(int fd, void *buf, int len, struct slip_data *pri) in slip_user_read() 217 int slip_user_write(int fd, void *buf, int len, struct slip_data *pri) in slip_user_write()
|
D | port_user.c | 74 int fd, err; in port_open() local 90 static void port_close(int fd, void *d) in port_close() 114 int fd, err, arg; in port_listen_fd() local 167 int port_connection(int fd, int *socket, int *pid_out) in port_connection()
|
D | umcast_user.c | 70 int fd, yes = 1, err = -EINVAL; in umcast_open() local 148 static void umcast_close(int fd, void *data) in umcast_close() 168 int umcast_user_write(int fd, void *buf, int len, struct umcast_data *pri) in umcast_user_write()
|
D | slip_common.c | 5 int slip_proto_read(int fd, void *buf, int len, struct slip_proto *slip) in slip_proto_read() 45 int slip_proto_write(int fd, void *buf, int len, struct slip_proto *slip) in slip_proto_write()
|
D | cow_sys.h | 25 static inline int cow_seek_file(int fd, __u64 offset) in cow_seek_file() 35 static inline int cow_write_file(int fd, void *buf, int size) in cow_write_file()
|
D | null.c | 23 int fd; in null_open() local 31 static int null_read(int fd, char *c_out, void *unused) in null_read()
|
D | xterm_kern.c | 15 int fd; member 23 int fd; in xterm_interrupt() local
|
D | chan_kern.c | 30 static void not_configged_close(int fd, void *data) in not_configged_close() 36 static int not_configged_read(int fd, char *c_out, void *data) in not_configged_read() 43 static int not_configged_write(int fd, const char *buf, int len, void *data) in not_configged_write() 50 static int not_configged_console_write(int fd, const char *buf, int len) in not_configged_console_write() 57 static int not_configged_window_size(int fd, void *data, unsigned short *rows, in not_configged_window_size() 86 int fd, err; in open_one_chan() local
|
D | slip_kern.c | 47 static int slip_read(int fd, struct sk_buff *skb, struct uml_net_private *lp) in slip_read() 53 static int slip_write(int fd, struct sk_buff *skb, struct uml_net_private *lp) in slip_write()
|
D | vde_kern.c | 39 static int vde_read(int fd, struct sk_buff *skb, struct uml_net_private *lp) in vde_read() 51 static int vde_write(int fd, struct sk_buff *skb, struct uml_net_private *lp) in vde_write()
|
D | daemon_kern.c | 42 static int daemon_read(int fd, struct sk_buff *skb, struct uml_net_private *lp) in daemon_read() 48 static int daemon_write(int fd, struct sk_buff *skb, struct uml_net_private *lp) in daemon_write()
|
D | slirp_kern.c | 52 static int slirp_read(int fd, struct sk_buff *skb, struct uml_net_private *lp) in slirp_read() 58 static int slirp_write(int fd, struct sk_buff *skb, struct uml_net_private *lp) in slirp_write()
|
D | fd.c | 16 int fd; member 69 static void fd_close(int fd, void *d) in fd_close()
|
D | pcap_kern.c | 34 static int pcap_read(int fd, struct sk_buff *skb, struct uml_net_private *lp) in pcap_read() 41 static int pcap_write(int fd, struct sk_buff *skb, struct uml_net_private *lp) in pcap_write()
|
D | xterm.c | 88 int pid, fd, new, err; in xterm_open() local 197 static void xterm_close(int fd, void *d) in xterm_close()
|
D | pty.c | 45 int fd, err; in pts_open() local 117 int fd, err; in pty_open() local
|
D | umcast_kern.c | 51 static int umcast_read(int fd, struct sk_buff *skb, struct uml_net_private *lp) in umcast_read() 57 static int umcast_write(int fd, struct sk_buff *skb, struct uml_net_private *lp) in umcast_write()
|
D | daemon_user.c | 53 int fd, n, err; in connect_to_switch() local 177 int daemon_user_write(int fd, void *buf, int len, struct daemon_data *pri) in daemon_user_write()
|
D | line.c | 274 int line_setup_irq(int fd, int input, int output, struct line *line, void *data) in line_setup_irq() 597 int fd; member 619 int fd = winch->fd; in free_winch() local 632 int fd = winch->fd; in winch_interrupt() local 674 void register_winch_irq(int fd, int tty_fd, int pid, struct tty_port *port, in register_winch_irq()
|
/linux-4.4.14/drivers/clk/ti/ |
D | fapll.c | 77 struct fapll_data *fd; member 85 static bool ti_fapll_clock_is_bypass(struct fapll_data *fd) in ti_fapll_clock_is_bypass() 95 static void ti_fapll_set_bypass(struct fapll_data *fd) in ti_fapll_set_bypass() 106 static void ti_fapll_clear_bypass(struct fapll_data *fd) in ti_fapll_clear_bypass() 117 static int ti_fapll_wait_lock(struct fapll_data *fd) in ti_fapll_wait_lock() 139 struct fapll_data *fd = to_fapll(hw); in ti_fapll_enable() local 151 struct fapll_data *fd = to_fapll(hw); in ti_fapll_disable() local 160 struct fapll_data *fd = to_fapll(hw); in ti_fapll_is_enabled() local 169 struct fapll_data *fd = to_fapll(hw); in ti_fapll_recalc_rate() local 192 struct fapll_data *fd = to_fapll(hw); in ti_fapll_get_parent() local [all …]
|
/linux-4.4.14/arch/sh/kernel/ |
D | sys_sh32.c | 26 int fd[2]; in sys_sh_pipe() local 37 asmlinkage ssize_t sys_pread_wrapper(unsigned int fd, char __user *buf, in sys_pread_wrapper() 43 asmlinkage ssize_t sys_pwrite_wrapper(unsigned int fd, const char __user *buf, in sys_pwrite_wrapper() 49 asmlinkage int sys_fadvise64_64_wrapper(int fd, u32 offset0, u32 offset1, in sys_fadvise64_64_wrapper()
|
D | smp.c | 383 struct flush_tlb_data *fd = (struct flush_tlb_data *)info; in flush_tlb_range_ipi() local 395 struct flush_tlb_data fd; in flush_tlb_range() local 413 struct flush_tlb_data *fd = (struct flush_tlb_data *)info; in flush_tlb_kernel_range_ipi() local 420 struct flush_tlb_data fd; in flush_tlb_kernel_range() local 429 struct flush_tlb_data *fd = (struct flush_tlb_data *)info; in flush_tlb_page_ipi() local 439 struct flush_tlb_data fd; in flush_tlb_page() local 456 struct flush_tlb_data *fd = (struct flush_tlb_data *)info; in flush_tlb_one_ipi() local 462 struct flush_tlb_data fd; in flush_tlb_one() local
|
D | sys_sh.c | 33 int fd, unsigned long off) in old_mmap() 42 unsigned long fd, unsigned long pgoff) in sys_mmap2()
|
/linux-4.4.14/arch/sparc/kernel/ |
D | sys_sparc32.c | 62 asmlinkage long sys32_ftruncate64(unsigned int fd, unsigned long high, unsigned long low) in sys32_ftruncate64() 122 asmlinkage long compat_sys_fstat64(unsigned int fd, in compat_sys_fstat64() 198 asmlinkage compat_ssize_t sys32_pread64(unsigned int fd, in sys32_pread64() 207 asmlinkage compat_ssize_t sys32_pwrite64(unsigned int fd, in sys32_pwrite64() 216 asmlinkage long compat_sys_readahead(int fd, in compat_sys_readahead() 224 long compat_sys_fadvise64(int fd, in compat_sys_fadvise64() 232 long compat_sys_fadvise64_64(int fd, in compat_sys_fadvise64_64() 243 long sys32_sync_file_range(unsigned int fd, unsigned long off_high, unsigned long off_low, unsigned… in sys32_sync_file_range() 251 asmlinkage long compat_sys_fallocate(int fd, int mode, u32 offhi, u32 offlo, in compat_sys_fallocate()
|
D | sys_sparc_32.c | 75 int fd[2]; in sparc_pipe() local 99 unsigned long prot, unsigned long flags, unsigned long fd, in sys_mmap2() 109 unsigned long prot, unsigned long flags, unsigned long fd, in sys_mmap()
|
D | sparc_ksyms_32.c | 17 int fd; member
|
D | sparc_ksyms_64.c | 20 int fd; member
|
/linux-4.4.14/drivers/media/platform/exynos4-is/ |
D | fimc-is-param.c | 224 struct fd_param *fd; in __is_set_frame_size() local 475 struct fd_param *fd; in __is_set_fd_control() local 490 struct fd_param *fd; in __is_set_fd_config_maxface() local 510 struct fd_param *fd; in __is_set_fd_config_rollangle() local 530 struct fd_param *fd; in __is_set_fd_config_yawangle() local 550 struct fd_param *fd; in __is_set_fd_config_smilemode() local 570 struct fd_param *fd; in __is_set_fd_config_blinkmode() local 590 struct fd_param *fd; in __is_set_fd_config_eyedetect() local 610 struct fd_param *fd; in __is_set_fd_config_mouthdetect() local 630 struct fd_param *fd; in __is_set_fd_config_orientation() local [all …]
|
/linux-4.4.14/arch/metag/kernel/ |
D | sys_metag.c | 42 unsigned long fd, unsigned long pgoff) in sys_mmap2() 113 asmlinkage long sys_ftruncate64_metag(unsigned int fd, unsigned long lo, in sys_ftruncate64_metag() 119 asmlinkage long sys_fadvise64_64_metag(int fd, unsigned long offs_lo, in sys_fadvise64_64_metag() 128 asmlinkage long sys_readahead_metag(int fd, unsigned long lo, unsigned long hi, in sys_readahead_metag() 134 asmlinkage ssize_t sys_pread64_metag(unsigned long fd, char __user *buf, in sys_pread64_metag() 141 asmlinkage ssize_t sys_pwrite64_metag(unsigned long fd, char __user *buf, in sys_pwrite64_metag() 148 asmlinkage long sys_sync_file_range_metag(int fd, unsigned long offs_lo, in sys_sync_file_range_metag()
|
/linux-4.4.14/Documentation/spi/ |
D | spidev_fdx.c | 17 static void do_read(int fd, int len) in do_read() 48 static void do_msg(int fd, int len) in do_msg() 79 static void dumpstat(const char *name, int fd) in dumpstat() 110 int fd; in main() local
|
D | spidev_test.c | 103 static void transfer(int fd, uint8_t const *tx, uint8_t const *rx, size_t len) in transfer() 255 int fd; in main() local
|
/linux-4.4.14/arch/xtensa/platforms/iss/include/platform/ |
D | simcall.h | 84 static inline int simc_close(int fd) in simc_close() 89 static inline int simc_ioctl(int fd, int request, void *arg) in simc_ioctl() 94 static inline int simc_read(int fd, void *buf, size_t count) in simc_read() 99 static inline int simc_write(int fd, const void *buf, size_t count) in simc_write() 104 static inline int simc_poll(int fd) in simc_poll() 111 static inline int simc_lseek(int fd, uint32_t off, int whence) in simc_lseek()
|
/linux-4.4.14/fs/proc/ |
D | fd.c | 34 int fd = proc_fd(m->private); in seq_show() local 89 int fd; in tid_fd_revalidate() local 161 int fd = proc_fd(d_inode(dentry)); in proc_fd_link() local 182 unsigned fd = (unsigned long)ptr; in proc_fd_instantiate() local 215 unsigned fd = name_to_int(&dentry->d_name); in proc_lookupfd_common() local 234 unsigned int fd; in proc_readfd_common() local 320 unsigned fd = (unsigned long)ptr; in proc_fdinfo_instantiate() local
|
/linux-4.4.14/tools/power/acpi/tools/ec/ |
D | ec_access.c | 126 void dump_ec(int fd) in dump_ec() 176 void read_ec_val(int fd, int byte_offset) in read_ec_val() 193 void write_ec_val(int fd, int byte_offset, uint8_t value) in write_ec_val() 210 int fd; in main() local
|
/linux-4.4.14/fs/hostfs/ |
D | hostfs_user.c | 41 int stat_file(const char *path, struct hostfs_stat *p, int fd) in stat_file() 72 int mode = 0, fd; in open_file() local 124 int read_file(int fd, unsigned long long *offset, char *buf, int len) in read_file() 135 int write_file(int fd, unsigned long long *offset, const char *buf, int len) in write_file() 146 int lseek_file(int fd, long long offset, int whence) in lseek_file() 156 int fsync_file(int fd, int datasync) in fsync_file() 169 int replace_file(int oldfd, int fd) in replace_file() 186 int fd; in file_create() local 194 int set_attr(const char *file, struct hostfs_iattr *attrs, int fd) in set_attr()
|
/linux-4.4.14/arch/tile/gxio/ |
D | iorpc_globals.c | 22 int __iorpc_arm_pollfd(int fd, int pollfd_cookie) in __iorpc_arm_pollfd() 39 int __iorpc_close_pollfd(int fd, int pollfd_cookie) in __iorpc_close_pollfd() 56 int __iorpc_get_mmio_base(int fd, HV_PTE *base) in __iorpc_get_mmio_base() 77 int __iorpc_check_mmio_offset(int fd, unsigned long offset, unsigned long size) in __iorpc_check_mmio_offset()
|
D | trio.c | 31 int fd; in gxio_trio_init() local
|
D | usb_host.c | 33 int fd; in gxio_usb_host_init() local
|
D | uart.c | 31 int fd; in gxio_uart_init() local
|
/linux-4.4.14/samples/bpf/ |
D | libbpf.c | 34 int bpf_update_elem(int fd, void *key, void *value, unsigned long long flags) in bpf_update_elem() 46 int bpf_lookup_elem(int fd, void *key, void *value) in bpf_lookup_elem() 57 int bpf_delete_elem(int fd, void *key) in bpf_delete_elem() 67 int bpf_get_next_key(int fd, void *key, void *next_key) in bpf_get_next_key() 106 int bpf_obj_pin(int fd, const char *pathname) in bpf_obj_pin()
|
D | tracex3_user.c | 21 static void clear_stats(int fd) in clear_stats() 76 static void print_hist(int fd) in print_hist()
|
D | fds_example.c | 69 int fd, ret; in bpf_do_map() local 102 int fd, sock, ret; in bpf_do_prog() local
|
D | tracex2_user.c | 37 static void print_hist_for_pid(int fd, void *task) in print_hist_for_pid() 72 static void print_hist(int fd) in print_hist()
|
D | trace_output_user.c | 33 static int perf_event_mmap(int fd) in perf_event_mmap() 51 static int perf_event_poll(int fd) in perf_event_poll()
|
D | bpf_load.c | 54 int fd, efd, err, id; in load_and_attach() local 225 int fd, i; in load_bpf_file() local
|
D | tracex4_user.c | 31 static void print_old_objects(int fd) in print_old_objects()
|
/linux-4.4.14/arch/um/kernel/ |
D | irq.c | 60 static int activate_fd(int irq, int fd, int type, void *dev_id) in activate_fd() 182 static int same_fd(struct irq_fd *irq, void *fd) in same_fd() 187 void free_irq_by_fd(int fd) in free_irq_by_fd() 193 static struct irq_fd *find_irq_by_fd(int fd, int irqnum, int *index_out) in find_irq_by_fd() 222 void reactivate_fd(int fd, int irqnum) in reactivate_fd() 240 void deactivate_fd(int fd, int irqnum) in deactivate_fd() 304 int um_request_irq(unsigned int irq, int fd, int type, in um_request_irq()
|
D | physmem.c | 45 int fd, err; in map_memory() local 123 int fd = -1; in phys_mapping() local
|
D | syscall.c | 19 unsigned long fd, unsigned long offset) in old_mmap()
|
D | sigio.c | 23 int write_sigio_irq(int fd) in write_sigio_irq()
|
D | initrd.c | 67 int fd, n; in load_initrd() local
|
/linux-4.4.14/tools/lib/api/fd/ |
D | array.c | 73 int fdarray__add(struct fdarray *fda, int fd, short revents) in fdarray__add() 87 int fdarray__filter(struct fdarray *fda, short revents, in fdarray__filter() 90 int fd, nr = 0; in fdarray__filter() local 121 int fd, printed = fprintf(fp, "%d [ ", fda->nr); in fdarray__fprintf() local
|
/linux-4.4.14/tools/testing/selftests/efivarfs/ |
D | open-unlink.c | 15 int fd; in set_immutable() local 46 int fd; in get_immutable() local 71 int fd, rc; in main() local
|
D | create-read.c | 15 int fd, rc; in main() local
|
/linux-4.4.14/drivers/usb/gadget/ |
D | functions.c | 13 struct usb_function_driver *fd; in try_get_usb_function_instance() local 92 struct usb_function_driver *fd; in usb_function_register() local 110 void usb_function_unregister(struct usb_function_driver *fd) in usb_function_unregister()
|
/linux-4.4.14/drivers/clk/ |
D | clk-fractional-divider.c | 24 struct clk_fractional_divider *fd = to_clk_fd(hw); in clk_fd_recalc_rate() local 57 struct clk_fractional_divider *fd = to_clk_fd(hw); in clk_fd_round_rate() local 87 struct clk_fractional_divider *fd = to_clk_fd(hw); in clk_fd_set_rate() local 126 struct clk_fractional_divider *fd; in clk_register_fractional_divider() local
|
/linux-4.4.14/Documentation/timers/ |
D | hpet_example.c | 81 int fd; in hpet_open_close() local 101 int fd; in hpet_info() local 133 int iterations, i, fd; in hpet_poll() local 225 int iterations, i, fd, value; in hpet_fasync() local
|
/linux-4.4.14/fs/jffs2/ |
D | dir.c | 81 struct jffs2_full_dirent *fd = NULL, *fd_list; in jffs2_lookup() local 122 struct jffs2_full_dirent *fd; in jffs2_readdir() local 286 struct jffs2_full_dirent *fd; in jffs2_symlink() local 449 struct jffs2_full_dirent *fd; in jffs2_mkdir() local 590 struct jffs2_full_dirent *fd; in jffs2_rmdir() local 617 struct jffs2_full_dirent *fd; in jffs2_mknod() local 774 struct jffs2_full_dirent *fd; in jffs2_rename() local
|
D | build.c | 55 struct jffs2_full_dirent *fd; in jffs2_build_inode_pass1() local 102 struct jffs2_full_dirent *fd; in jffs2_build_filesystem() local 243 struct jffs2_full_dirent *fd; in jffs2_build_remove_unlinked_inode() local
|
D | write.c | 209 struct jffs2_full_dirent *fd; in jffs2_write_dirent() local 446 struct jffs2_full_dirent *fd; in jffs2_do_create() local 551 struct jffs2_full_dirent *fd; in jffs2_do_unlink() local 671 struct jffs2_full_dirent *fd; in jffs2_do_link() local
|
D | gc.c | 482 struct jffs2_full_dirent *fd; in jffs2_garbage_collect_live() local 831 struct jffs2_inode_info *f, struct jffs2_full_dirent *fd) in jffs2_garbage_collect_dirent() 876 struct jffs2_inode_info *f, struct jffs2_full_dirent *fd) in jffs2_garbage_collect_deletion_dirent()
|
/linux-4.4.14/arch/powerpc/platforms/cell/spufs/ |
D | coredump.c | 73 static int match_context(const void *v, struct file *file, unsigned fd) in match_context() 96 static struct spu_context *coredump_next_context(int *fd) in coredump_next_context() 110 int size = 0, rc, fd; in spufs_coredump_extra_notes_size() local 188 int fd, j, rc; in spufs_coredump_extra_notes_write() local
|
/linux-4.4.14/arch/mips/kernel/ |
D | linux32.c | 136 asmlinkage ssize_t sys32_readahead(int fd, u32 pad0, u64 a2, u64 a3, in sys32_readahead() 142 asmlinkage long sys32_sync_file_range(int fd, int __pad, in sys32_sync_file_range() 152 asmlinkage long sys32_fadvise64_64(int fd, int __pad, in sys32_fadvise64_64() 162 asmlinkage long sys32_fallocate(int fd, int mode, unsigned offset_a2, in sys32_fallocate()
|
D | smp.c | 349 struct flush_tlb_data *fd = info; in flush_tlb_range_ipi() local 360 struct flush_tlb_data fd = { in flush_tlb_range() local 381 struct flush_tlb_data *fd = info; in flush_tlb_kernel_range_ipi() local 388 struct flush_tlb_data fd = { in flush_tlb_kernel_range() local 398 struct flush_tlb_data *fd = info; in flush_tlb_page_ipi() local 407 struct flush_tlb_data fd = { in flush_tlb_page() local
|
D | syscall.c | 51 int fd[2]; in sysm_pipe() local 61 fd, off_t, offset) in SYSCALL_DEFINE6() argument 76 unsigned long, prot, unsigned long, flags, unsigned long, fd, in SYSCALL_DEFINE6() argument
|
/linux-4.4.14/arch/tile/kernel/ |
D | compat.c | 41 COMPAT_SYSCALL_DEFINE4(ftruncate64, unsigned int, fd, u32, dummy, in COMPAT_SYSCALL_DEFINE4() argument 47 COMPAT_SYSCALL_DEFINE6(pread64, unsigned int, fd, char __user *, ubuf, in COMPAT_SYSCALL_DEFINE6() argument 53 COMPAT_SYSCALL_DEFINE6(pwrite64, unsigned int, fd, char __user *, ubuf, in COMPAT_SYSCALL_DEFINE6() argument 59 COMPAT_SYSCALL_DEFINE6(sync_file_range2, int, fd, unsigned int, flags, in COMPAT_SYSCALL_DEFINE6() argument 68 COMPAT_SYSCALL_DEFINE6(fallocate, int, fd, int, mode, in COMPAT_SYSCALL_DEFINE6() argument 81 COMPAT_SYSCALL_DEFINE5(llseek, unsigned int, fd, unsigned int, offset_high, in COMPAT_SYSCALL_DEFINE5() argument
|
D | sys.c | 62 ssize_t sys32_readahead(int fd, u32 offset_lo, u32 offset_hi, u32 count) in sys32_readahead() 67 int sys32_fadvise64_64(int fd, u32 offset_lo, u32 offset_hi, in sys32_fadvise64_64() 79 unsigned long, fd, unsigned long, off_4k) in SYSCALL_DEFINE6() argument 91 unsigned long, fd, off_t, offset) in SYSCALL_DEFINE6() argument
|
/linux-4.4.14/tools/testing/selftests/timers/ |
D | clocksource-switch.c | 53 int fd, i; in get_clocksources() local 88 int fd; in get_cur_clocksource() local 99 int fd; in change_clocksource() local
|
D | rtctest.c | 35 int i, fd, retval, irqcount = 0; in main() local
|
/linux-4.4.14/tools/laptop/freefall/ |
D | freefall.c | 43 int fd = open(unload_heads_path, O_RDONLY); in valid_disk() local 57 int fd = open(path, O_RDWR); in write_int() local 109 int fd, ret; in main() local
|
/linux-4.4.14/tools/testing/selftests/net/ |
D | psock_fanout.c | 76 int fd, val; in sock_fanout_open() local 98 static void sock_fanout_set_ebpf(int fd) in sock_fanout_set_ebpf() 143 static char *sock_fanout_open_ring(int fd) in sock_fanout_open_ring() 175 static int sock_fanout_read_ring(int fd, void *ring) in sock_fanout_read_ring()
|
D | psock_lib.h | 41 static __maybe_unused void sock_setfilter(int fd, int lvl, int optnum) in sock_setfilter() 66 static __maybe_unused void pair_udp_setfilter(int fd) in pair_udp_setfilter()
|
/linux-4.4.14/arch/mips/include/asm/ |
D | pmon.h | 34 #define pmon_close(fd) debug_vectors->close(fd) argument 35 #define pmon_read(fd, buf, count) debug_vectors->read(fd, buf, count) argument 36 #define pmon_write(fd, buf, count) debug_vectors->write(fd, buf, count) argument 37 #define pmon_lseek(fd, off, whence) debug_vectors->lseek(fd, off, whence) argument
|
/linux-4.4.14/arch/ia64/hp/sim/ |
D | simeth.c | 131 netdev_attach(int fd, int irq, unsigned int ipaddr) in netdev_attach() 139 netdev_detach(int fd) in netdev_detach() 147 netdev_send(int fd, unsigned char *buf, unsigned int len) in netdev_send() 153 netdev_read(int fd, unsigned char *buf, unsigned int len) in netdev_read() 184 int fd, err, rc; in simeth_probe1() local
|
/linux-4.4.14/Documentation/laptops/ |
D | dslm.c | 29 static int check_powermode(int fd) in check_powermode() 66 static void measure(int fd) in measure() 134 int fd; in main() local
|
/linux-4.4.14/arch/arm/kernel/ |
D | sys_oabi-compat.c | 164 asmlinkage long sys_oabi_fstat64(unsigned long fd, in sys_oabi_fstat64() 196 static long do_locks(unsigned int fd, unsigned int cmd, in do_locks() 231 asmlinkage long sys_oabi_fcntl64(unsigned int fd, unsigned int cmd, in sys_oabi_fcntl64() 253 asmlinkage long sys_oabi_epoll_ctl(int epfd, int op, int fd, in sys_oabi_epoll_ctl() 371 asmlinkage long sys_oabi_bind(int fd, struct sockaddr __user *addr, int addrlen) in sys_oabi_bind() 381 asmlinkage long sys_oabi_connect(int fd, struct sockaddr __user *addr, int addrlen) in sys_oabi_connect() 391 asmlinkage long sys_oabi_sendto(int fd, void __user *buff, in sys_oabi_sendto() 404 asmlinkage long sys_oabi_sendmsg(int fd, struct user_msghdr __user *msg, unsigned flags) in sys_oabi_sendmsg()
|
D | sys_arm.c | 35 asmlinkage long sys_arm_fadvise64_64(int fd, int advice, in sys_arm_fadvise64_64()
|
/linux-4.4.14/arch/score/kernel/ |
D | sys_score.c | 38 unsigned long flags, unsigned long fd, unsigned long pgoff) in sys_mmap2() 45 unsigned long flags, unsigned long fd, off_t offset) in sys_mmap()
|
/linux-4.4.14/Documentation/mic/mpssd/ |
D | mpssd.c | 233 int fd, err; in tun_alloc() local 401 mic_virtio_copy(struct mic_info *mic, int fd, in mic_virtio_copy() 427 init_vr(struct mic_info *mic, int fd, int type, in init_vr() 475 wait_for_card_driver(struct mic_info *mic, int fd, int type) in wait_for_card_driver() 927 int fd, err; in add_virtio_device() local 1112 read_header(int fd, struct virtio_blk_outhdr *hdr, __u32 desc_idx) in read_header() 1127 transfer_blocks(int fd, struct iovec *iovec, __u32 iovcnt) in transfer_blocks() 1150 write_status(int fd, __u8 *status) in write_status() 1434 int fd; in open_state_fd() local 1446 static int block_till_state_change(int fd, struct mic_info *mic) in block_till_state_change() [all …]
|
D | sysfs.c | 31 int fd; in readsysfs() local 72 int fd, ret = 0; in setsysfs() local
|
/linux-4.4.14/tools/perf/tests/ |
D | dso-data.c | 20 int fd, i; in test_file() local 105 int fd = dso__data_get_fd(dso, machine); in dso__data_fd() local 252 int dso_cnt, limit, i, fd; in test__dso_data_cache() local 309 int fd, fd_extra; in test__dso_data_reopen() local
|
D | bp_signal_overflow.c | 44 static long long bp_count(int fd) in bp_count() 66 int fd, i, fails = 0; in test__bp_signal_overflow() local
|
D | bp_signal.c | 63 int fd; in bp_event() local 100 static long long bp_count(int fd) in bp_count()
|
D | fdarray.c | 7 int fd; in fdarray__init_revents() local 30 int nr_fds, expected_fd[2], fd, err = TEST_FAIL; in test__fdarray__filter() local
|
D | attr.c | 61 int fd, int group_fd, unsigned long flags) in store_event() 131 int fd, int group_fd, unsigned long flags) in test_attr__open()
|
D | openat-syscall.c | 10 int err = -1, fd; in test__openat_syscall_event() local
|
D | openat-syscall-all-cpus.c | 12 int err = -1, fd, cpu; in test__openat_syscall_event_on_all_cpus() local
|
/linux-4.4.14/include/uapi/linux/ |
D | if_pppol2tp.h | 27 int fd; /* FD of UDP socket to use */ member 41 int fd; /* FD of UDP socket to use */ member 55 int fd; /* FD of UDP or IP socket to use */ member 66 int fd; /* FD of UDP or IP socket to use */ member
|
D | fanotify.h | 90 __s32 fd; member 95 __s32 fd; member
|
/linux-4.4.14/drivers/vfio/platform/ |
D | vfio_platform_irq.c | 61 int32_t fd = *(int32_t *)data; in vfio_platform_set_irq_mask() local 121 int32_t fd = *(int32_t *)data; in vfio_platform_set_irq_unmask() local 181 int fd, irq_handler_t handler) in vfio_set_trigger() 246 int32_t fd = *(int32_t *)data; in vfio_platform_set_irq_trigger() local
|
/linux-4.4.14/drivers/vfio/pci/ |
D | vfio_pci_intrs.c | 174 static int vfio_intx_set_signal(struct vfio_pci_device *vdev, int fd) in vfio_intx_set_signal() 309 int vector, int fd, bool msix) in vfio_msi_set_vector_signal() 386 int fd = fds ? fds[i] : -1; in vfio_msi_set_block() local 438 int32_t fd = *(int32_t *)data; in vfio_pci_set_intx_unmask() local 484 int32_t fd = *(int32_t *)data; in vfio_pci_set_intx_trigger() local 568 int32_t fd = *(int32_t *)data; in vfio_pci_set_ctx_trigger_single() local
|
/linux-4.4.14/arch/s390/kernel/ |
D | compat_linux.c | 101 COMPAT_SYSCALL_DEFINE3(s390_fchown16, unsigned int, fd, u16, user, u16, group) in COMPAT_SYSCALL_DEFINE3() argument 307 COMPAT_SYSCALL_DEFINE3(s390_ftruncate64, unsigned int, fd, u32, high, u32, low) in COMPAT_SYSCALL_DEFINE3() argument 312 COMPAT_SYSCALL_DEFINE5(s390_pread64, unsigned int, fd, char __user *, ubuf, in COMPAT_SYSCALL_DEFINE5() argument 320 COMPAT_SYSCALL_DEFINE5(s390_pwrite64, unsigned int, fd, const char __user *, ubuf, in COMPAT_SYSCALL_DEFINE5() argument 328 COMPAT_SYSCALL_DEFINE4(s390_readahead, int, fd, u32, high, u32, low, s32, count) in COMPAT_SYSCALL_DEFINE4() argument 400 COMPAT_SYSCALL_DEFINE2(s390_fstat64, unsigned int, fd, struct stat64_emu31 __user *, statbuf) in COMPAT_SYSCALL_DEFINE2() argument 432 compat_ulong_t fd; member 457 COMPAT_SYSCALL_DEFINE3(s390_read, unsigned int, fd, char __user *, buf, compat_size_t, count) in COMPAT_SYSCALL_DEFINE3() argument 465 COMPAT_SYSCALL_DEFINE3(s390_write, unsigned int, fd, const char __user *, buf, compat_size_t, count) in COMPAT_SYSCALL_DEFINE3() argument 479 COMPAT_SYSCALL_DEFINE5(s390_fadvise64, int, fd, u32, high, u32, low, compat_size_t, len, int, advis… in COMPAT_SYSCALL_DEFINE5() argument [all …]
|
/linux-4.4.14/arch/ia64/kernel/ |
D | sys_ia64.c | 103 int fd[2]; in sys_ia64_pipe() local 137 sys_mmap2 (unsigned long addr, unsigned long len, int prot, int flags, int fd, long pgoff) in sys_mmap2() 146 sys_mmap (unsigned long addr, unsigned long len, int prot, int flags, int fd, long off) in sys_mmap()
|
/linux-4.4.14/tools/power/cpupower/utils/helpers/ |
D | msr.c | 28 int fd; in read_msr() local 57 int fd; in write_msr() local
|
D | sysfs.c | 21 int fd; in sysfs_read_file() local 51 int fd; in sysfs_is_cpu_online() local 129 int fd; in sysfs_idlestate_read_file() local 164 int fd; in sysfs_idlestate_write_file() local
|
/linux-4.4.14/arch/microblaze/kernel/ |
D | sys_microblaze.c | 37 unsigned long, prot, unsigned long, flags, unsigned long, fd, in SYSCALL_DEFINE6() argument 47 unsigned long, prot, unsigned long, flags, unsigned long, fd, in SYSCALL_DEFINE6() argument
|
/linux-4.4.14/arch/um/os-Linux/drivers/ |
D | tuntap_kern.c | 38 static int tuntap_read(int fd, struct sk_buff *skb, struct uml_net_private *lp) in tuntap_read() 44 static int tuntap_write(int fd, struct sk_buff *skb, struct uml_net_private *lp) in tuntap_write()
|
D | ethertap_kern.c | 39 static int etap_read(int fd, struct sk_buff *skb, struct uml_net_private *lp) in etap_read() 53 static int etap_write(int fd, struct sk_buff *skb, struct uml_net_private *lp) in etap_write()
|
D | tuntap.h | 15 int fd; member
|
/linux-4.4.14/net/ |
D | socket.c | 394 int fd = get_unused_fd_flags(flags); in sock_map_fd() local 431 struct socket *sockfd_lookup(int fd, int *err) in sockfd_lookup() 449 static struct socket *sockfd_lookup_light(int fd, int *err, int *fput_needed) in sockfd_lookup_light() 1038 static int sock_fasync(int fd, struct file *filp, int on) in sock_fasync() 1363 SYSCALL_DEFINE3(bind, int, fd, struct sockaddr __user *, umyaddr, int, addrlen) in SYSCALL_DEFINE3() argument 1392 SYSCALL_DEFINE2(listen, int, fd, int, backlog) in SYSCALL_DEFINE2() argument 1425 SYSCALL_DEFINE4(accept4, int, fd, struct sockaddr __user *, upeer_sockaddr, in SYSCALL_DEFINE4() argument 1506 SYSCALL_DEFINE3(accept, int, fd, struct sockaddr __user *, upeer_sockaddr, in SYSCALL_DEFINE3() argument 1524 SYSCALL_DEFINE3(connect, int, fd, struct sockaddr __user *, uservaddr, in SYSCALL_DEFINE3() argument 1556 SYSCALL_DEFINE3(getsockname, int, fd, struct sockaddr __user *, usockaddr, in SYSCALL_DEFINE3() argument [all …]
|
D | compat.c | 366 COMPAT_SYSCALL_DEFINE5(setsockopt, int, fd, int, level, int, optname, in COMPAT_SYSCALL_DEFINE5() argument 486 COMPAT_SYSCALL_DEFINE5(getsockopt, int, fd, int, level, int, optname, in COMPAT_SYSCALL_DEFINE5() argument 717 COMPAT_SYSCALL_DEFINE3(sendmsg, int, fd, struct compat_msghdr __user *, msg, unsigned int, flags) in COMPAT_SYSCALL_DEFINE3() argument 722 COMPAT_SYSCALL_DEFINE4(sendmmsg, int, fd, struct compat_mmsghdr __user *, mmsg, in COMPAT_SYSCALL_DEFINE4() argument 729 COMPAT_SYSCALL_DEFINE3(recvmsg, int, fd, struct compat_msghdr __user *, msg, unsigned int, flags) in COMPAT_SYSCALL_DEFINE3() argument 734 COMPAT_SYSCALL_DEFINE4(recv, int, fd, void __user *, buf, compat_size_t, len, unsigned int, flags) in COMPAT_SYSCALL_DEFINE4() argument 739 COMPAT_SYSCALL_DEFINE6(recvfrom, int, fd, void __user *, buf, compat_size_t, len, in COMPAT_SYSCALL_DEFINE6() argument 746 COMPAT_SYSCALL_DEFINE5(recvmmsg, int, fd, struct compat_mmsghdr __user *, mmsg, in COMPAT_SYSCALL_DEFINE5() argument
|
/linux-4.4.14/mm/ |
D | fadvise.c | 28 SYSCALL_DEFINE4(fadvise64_64, int, fd, loff_t, offset, loff_t, len, int, advice) in SYSCALL_DEFINE4() argument 157 SYSCALL_DEFINE4(fadvise64, int, fd, loff_t, offset, size_t, len, int, advice) in SYSCALL_DEFINE4() argument
|
/linux-4.4.14/arch/ia64/hp/sim/boot/ |
D | bootloader.c | 32 int fd; member 60 int fd, i; in start_bootloader() local
|
/linux-4.4.14/tools/usb/ |
D | testusb.c | 141 static int testdev_ffs_ifnum(FILE *fd) in testdev_ffs_ifnum() 164 static int testdev_ifnum(FILE *fd) in testdev_ifnum() 248 FILE *fd; in find_testdev() local 293 usbdev_ioctl (int fd, int ifno, unsigned request, void *param) in usbdev_ioctl() 307 int fd, i; in handle_testdev() local
|
/linux-4.4.14/Documentation/ptp/ |
D | testptp.c | 60 static clockid_t get_clockid(int fd) in get_clockid() 63 #define FD_TO_CLOCKID(fd) ((~(clockid_t) (fd) << 3) | CLOCKFD) in get_clockid() argument 163 int i, c, cnt, fd; in main() local
|
/linux-4.4.14/tools/testing/selftests/vm/ |
D | compaction_test.c | 56 int fd; in prereq() local 82 int fd; in check_compaction() local
|
/linux-4.4.14/tools/testing/selftests/powerpc/dscr/ |
D | dscr.h | 79 int fd = -1, ret; in get_default_dscr() local 104 int fd = -1, ret; in set_default_dscr() local
|
/linux-4.4.14/arch/mips/math-emu/ |
D | cp1emu.c | 1468 union ieee754sp fd, fr, fs, ft; in fpux_emu() local 1565 union ieee754dp fd, fr, fs, ft; in fpux_emu() local 1771 union ieee754sp ft, fs, fd; in fpu_emu() local 1784 union ieee754sp ft, fs, fd; in fpu_emu() local 2089 union ieee754dp ft, fs, fd; in fpu_emu() local 2102 union ieee754dp ft, fs, fd; in fpu_emu() local
|
/linux-4.4.14/drivers/usb/gadget/legacy/ |
D | inode.c | 373 ep_release (struct inode *inode, struct file *fd) in ep_release() 394 static long ep_ioctl(struct file *fd, unsigned code, unsigned long value) in ep_ioctl() 813 ep_open (struct inode *inode, struct file *fd) in ep_open() 908 ep0_read (struct file *fd, char __user *buf, size_t len, loff_t *ptr) in ep0_read() 1112 ep0_write (struct file *fd, const char __user *buf, size_t len, loff_t *ptr) in ep0_write() 1166 ep0_fasync (int f, struct file *fd, int on) in ep0_fasync() 1177 dev_release (struct inode *inode, struct file *fd) in dev_release() 1203 ep0_poll (struct file *fd, poll_table *wait) in ep0_poll() 1234 static long dev_ioctl (struct file *fd, unsigned code, unsigned long value) in dev_ioctl() 1761 dev_config (struct file *fd, const char __user *buf, size_t len, loff_t *ptr) in dev_config() [all …]
|
/linux-4.4.14/Documentation/networking/timestamping/ |
D | txtimestamp.c | 167 static void __poll(int fd) in __poll() 231 static int recv_errmsg(int fd) in recv_errmsg() 273 int fd, i, val = 1, total_len; in do_test() local
|
/linux-4.4.14/Documentation/ia64/ |
D | aliasing-test.c | 29 int fd, rc; in map_mem() local 124 int fd, rc; in read_rom() local
|
/linux-4.4.14/drivers/usb/gadget/function/ |
D | f_printer.c | 344 printer_open(struct inode *inode, struct file *fd) in printer_open() 369 printer_close(struct inode *inode, struct file *fd) in printer_close() 424 printer_read(struct file *fd, char __user *buf, size_t len, loff_t *ptr) in printer_read() 560 printer_write(struct file *fd, const char __user *buf, size_t len, loff_t *ptr) in printer_write() 669 printer_fsync(struct file *fd, loff_t start, loff_t end, int datasync) in printer_fsync() 692 printer_poll(struct file *fd, poll_table *wait) in printer_poll() 721 printer_ioctl(struct file *fd, unsigned int code, unsigned long arg) in printer_ioctl()
|
/linux-4.4.14/Documentation/watchdog/src/ |
D | watchdog-simple.c | 8 int fd = open("/dev/watchdog", O_WRONLY); in main() local
|
D | watchdog-test.c | 15 int fd; variable
|
/linux-4.4.14/tools/build/feature/ |
D | test-timerfd.c | 10 int fd = timerfd_create(CLOCK_MONOTONIC, TFD_NONBLOCK); in main() local
|
/linux-4.4.14/tools/usb/usbip/libsrc/ |
D | sysfs_utils.c | 12 int fd; in write_sysfs_attribute() local
|
/linux-4.4.14/drivers/staging/lustre/lustre/llite/ |
D | file.c | 65 struct ll_file_data *fd; in ll_file_data_get() local 74 static void ll_file_data_put(struct ll_file_data *fd) in ll_file_data_put() 267 struct ll_file_data *fd = LUSTRE_FPRIVATE(file); in ll_md_close() local 334 struct ll_file_data *fd; in ll_file_release() local 344 struct ll_file_data *fd = LUSTRE_FPRIVATE(file); in ll_file_release() local 488 struct ll_file_data *fd, struct obd_client_handle *och) in ll_local_open() 536 struct ll_file_data *fd; in ll_file_open() local 757 struct ll_file_data *fd = LUSTRE_FPRIVATE(file); in ll_lease_open() local 1100 struct ll_file_data *fd = LUSTRE_FPRIVATE(file); in ll_file_io_generic() local 1544 struct ll_file_data *fd = LUSTRE_FPRIVATE(file); in ll_get_grouplock() local [all …]
|
/linux-4.4.14/arch/mn10300/kernel/ |
D | sys_mn10300.c | 28 unsigned long fd, unsigned long offset) in old_mmap()
|
/linux-4.4.14/arch/cris/kernel/ |
D | sys_cris.c | 31 unsigned long flags, unsigned long fd, unsigned long pgoff) in sys_mmap2()
|
/linux-4.4.14/arch/tile/include/gxio/ |
D | usb_host.h | 37 int fd; member
|
D | uart.h | 37 int fd; member
|
/linux-4.4.14/arch/frv/kernel/ |
D | sys_frv.c | 32 unsigned long fd, unsigned long pgoff) in sys_mmap2()
|
/linux-4.4.14/init/ |
D | do_mounts_md.c | 133 int fd; in md_setup_drive() local 285 int fd; in autodetect_raid() local
|
D | do_mounts_initrd.c | 101 int fd = sys_open("/dev/root.old", O_RDWR, 0); in handle_initrd() local
|
/linux-4.4.14/arch/um/include/shared/skas/ |
D | stub-data.h | 15 int fd; member
|
/linux-4.4.14/tools/power/x86/x86_energy_perf_policy/ |
D | x86_energy_perf_policy.c | 192 int fd; in get_msr() local 217 int fd; in put_msr() local
|
/linux-4.4.14/tools/thermal/tmon/ |
D | sysfs.c | 43 FILE *fd; in sysfs_set_ulong() local 67 FILE *fd; in sysfs_get_ulong() local 86 FILE *fd; in sysfs_get_string() local
|
/linux-4.4.14/Documentation/filesystems/ |
D | dnotify_test.c | 18 int fd; in main() local
|
/linux-4.4.14/arch/arm64/kernel/ |
D | sys.c | 31 unsigned long fd, off_t off) in sys_mmap()
|
/linux-4.4.14/drivers/video/console/ |
D | fbcon.h | 155 #define REFCOUNT(fd) (((int *)(fd))[-1]) argument 156 #define FNTSIZE(fd) (((int *)(fd))[-2]) argument 157 #define FNTCHARCNT(fd) (((int *)(fd))[-3]) argument 158 #define FNTSUM(fd) (((int *)(fd))[-4]) argument
|
/linux-4.4.14/scripts/ |
D | recordmcount.c | 102 ulseek(int const fd, off_t const offset, int const whence) in ulseek() 123 uread(int const fd, void *const buf, size_t const count) in uread() 134 uwrite(int const fd, void const *const buf, size_t const count) in uwrite()
|
/linux-4.4.14/fs/notify/dnotify/ |
D | dnotify.c | 228 fl_owner_t id, int fd, struct file *filp, __u32 mask) in attach_dn() 258 int fcntl_dirnotify(int fd, struct file *filp, unsigned long arg) in fcntl_dirnotify()
|
/linux-4.4.14/fs/notify/ |
D | group.c | 113 int fsnotify_fasync(int fd, struct file *file, int on) in fsnotify_fasync()
|
/linux-4.4.14/arch/um/include/shared/ |
D | mem_user.h | 38 int fd; member
|
/linux-4.4.14/tools/perf/arch/x86/tests/ |
D | intel-cqm.c | 41 int i, fd[2], flag, ret; in test__intel_cqm_count_nmi_context() local
|
/linux-4.4.14/fs/notify/fanotify/ |
D | fanotify_user.c | 146 struct fsnotify_group *group, int fd) in dequeue_event() 171 int fd = response_struct->fd; in process_access_response() local 209 int fd, ret; in copy_event_to_user() local 697 int f_flags, fd; in SYSCALL_DEFINE2() local
|
D | fanotify.h | 34 int fd; /* fd we passed to userspace for this event */ member
|
/linux-4.4.14/samples/hidraw/ |
D | hid-example.c | 44 int fd; in main() local
|
/linux-4.4.14/tools/testing/selftests/powerpc/pmu/ |
D | event.h | 18 int fd; member
|
/linux-4.4.14/arch/powerpc/boot/ |
D | hack-coff.c | 34 int fd; in main() local
|
/linux-4.4.14/tools/power/acpi/os_specific/service_layers/ |
D | osunixmap.c | 102 int fd; in acpi_os_map_memory() local
|