Searched refs:files (Results 101 - 125 of 213) sorted by last modified time

123456789

/linux-master/drivers/tty/
H A Dtty_io.c47 * Move console and virtual terminal code to more appropriate files,
905 * tty_read - read method for tty device files
3021 * it doesn't catch files in flight. We may send the descriptor to ourselves
3060 i = iterate_fd(p->files, 0, this_tty, tty);
/linux-master/tools/testing/selftests/bpf/
H A Dtest_offload.py38 files = [] # files to be removed variable
140 if f in files:
141 files.remove(f)
224 files.append(file_name)
588 global files, netns, devs
592 for f in files:
596 files = []
603 files.append(file_name)
611 files
[all...]
/linux-master/tools/net/ynl/
H A Dynl-regen.sh20 files=$(git grep --files-with-matches '^/\* YNL-GEN \(kernel\|uapi\|user\)')
21 for f in $files; do
/linux-master/scripts/
H A Dget_abi.pl402 # Having titles inside ABI files will only work if extra
565 my @files;
678 push @files, graph_add_file($abs_file, "file");
776 my $num_files = scalar @files;
780 @files = sort @files;
794 my $file_ref = $files[$i];
808 printf STDERR "%s: processing sysfs files... %i%%: $names[0]", $time, $percent;
822 printf STDERR "%s: processing sysfs files... done\n", $time;
952 # Parses all ABI files locate
[all...]
H A Dget_maintainer.pl8 # the files modified in a patch or for a file
75 my @files = ();
153 "file_exists_cmd" => "git ls-files \$file",
154 "list_files_cmd" => "git ls-files \$file",
183 "file_exists_cmd" => "hg files \$file",
281 'find-maintainer-files' => \$find_maintainer_files,
421 my @files = readdir(DIR);
423 foreach my $file (@files) {
432 die "$P: No MAINTAINER files found in '$path'\n" if (scalar(@mfiles) == 0);
554 push(@files,
[all...]
/linux-master/net/wireless/
H A DMakefile61 clean-files += shipped-certs.c extra-certs.c
/linux-master/io_uring/
H A Dfiletable.c41 table->files = kvcalloc(nr_files, sizeof(table->files[0]),
43 if (unlikely(!table->files))
48 kvfree(table->files);
57 kvfree(table->files);
59 table->files = NULL;
/linux-master/drivers/gpu/drm/qxl/
H A Dqxl_drv.h5 * copy of this software and associated documentation files (the "Software"),
171 struct drm_info_list *files; member in struct:qxl_debugfs
429 struct drm_info_list *files,
/linux-master/drivers/gpu/drm/i915/gt/
H A Dintel_gt_pm_debugfs.c589 static const struct intel_gt_debugfs_file files[] = { local
599 intel_gt_debugfs_register_files(root, files, ARRAY_SIZE(files), gt);
H A Dintel_gt_engines_debugfs.c31 static const struct intel_gt_debugfs_file files[] = { local
35 intel_gt_debugfs_register_files(root, files, ARRAY_SIZE(files), gt);
/linux-master/arch/powerpc/platforms/cell/spufs/
H A Dinode.c185 const struct spufs_tree_descr *files, umode_t mode,
188 while (files->name && files->name[0]) {
190 struct dentry *dentry = d_alloc_name(dir, files->name);
193 ret = spufs_new_file(dir->d_sb, dentry, files->ops,
194 files->mode & mode, files->size, ctx);
197 files++;
184 spufs_fill_dir(struct dentry *dir, const struct spufs_tree_descr *files, umode_t mode, struct spu_context *ctx) argument
/linux-master/Documentation/driver-api/media/drivers/ccs/
H A Dmk-ccs-regs37 -k generate files for kernel space consumption
/linux-master/tools/testing/selftests/nolibc/
H A Dnolibc-test.c6 /* libc-specific include files
771 const char * const files[] = { local
783 for (i = 0; files[i] != NULL; i++) {
784 ret = fd = open(files[i], O_RDONLY);
793 ret = stat(files[i], &stat_buf);
/linux-master/fs/notify/dnotify/
H A Ddnotify.c266 fl_owner_t id = current->files;
/linux-master/drivers/misc/genwqe/
H A Dcard_dev.c252 * genwqe_kill_fasync() - Send signal to all processes with open GenWQE files
260 unsigned int files = 0; local
268 files++;
271 return files;
276 unsigned int files = 0; local
283 files++;
286 return files;
1329 /* if no open files we can safely continue, else ... */
/linux-master/drivers/crypto/hisilicon/sec2/
H A Dsec.h185 struct sec_debug_file files[SEC_DEBUG_FILE_NUM]; member in struct:sec_debug
/linux-master/arch/sparc/boot/
H A DMakefile12 clean-files := System.map
/linux-master/include/linux/
H A Dfdtable.h74 #define rcu_dereference_check_fdtable(files, fdtfd) \
75 rcu_dereference_check((fdtfd), lockdep_is_held(&(files)->file_lock))
77 #define files_fdtable(files) \
78 rcu_dereference_check_fdtable((files), (files)->fdt)
83 static inline struct file *files_lookup_fd_raw(struct files_struct *files, unsigned int fd) argument
85 struct fdtable *fdt = rcu_dereference_raw(files->fdt);
99 static inline struct file *files_lookup_fd_locked(struct files_struct *files, unsigned int fd) argument
101 RCU_LOCKDEP_WARN(!lockdep_is_held(&files->file_lock),
103 return files_lookup_fd_raw(files, f
[all...]
/linux-master/fs/
H A Dsplice.c13 * Jens to support splicing to files, network, direct splicing, etc and
483 if (pipe->files)
762 if (pipe->files)
912 if (pipe->files)
1214 * do_splice_direct - splices data directly between two files
1239 * splice_file_range - splices data between two files for copy_file_range()
H A Dfile.c51 * space if any. This does not copy the file pointers. Called with the files
74 * clear the extra space. Called with the files spinlock held for write.
167 * The files->file_lock should be held on entry, and will be held on exit.
169 static int expand_fdtable(struct files_struct *files, unsigned int nr)
170 __releases(files->file_lock)
171 __acquires(files->file_lock)
175 spin_unlock(&files->file_lock);
181 if (atomic_read(&files->count) > 1)
184 spin_lock(&files->file_lock);
195 cur_fdt = files_fdtable(files);
412 close_files(struct files_struct * files) argument
444 put_files_struct(struct files_struct *files) argument
458 struct files_struct * files = tsk->files; local
501 struct files_struct *files = current->files; local
568 __put_unused_fd(struct files_struct *files, unsigned int fd) argument
578 struct files_struct *files = current->files; local
604 struct files_struct *files = current->files; local
642 file_close_fd_locked(struct files_struct *files, unsigned fd) argument
663 struct files_struct *files = current->files; local
703 __range_close(struct files_struct *files, unsigned int fd, unsigned int max_fd) argument
812 struct files_struct *files = current->files; local
822 do_close_on_exec(struct files_struct *files) argument
954 __fget_files_rcu(struct files_struct *files, unsigned int fd, fmode_t mask) argument
1030 __fget_files(struct files_struct *files, unsigned int fd, fmode_t mask) argument
1081 struct files_struct *files; local
1096 struct files_struct *files; local
1133 struct files_struct *files = current->files; local
1209 struct files_struct *files = current->files; local
1222 struct files_struct *files = current->files; local
1279 struct files_struct *files = current->files; local
1358 struct files_struct *files = current->files; local
1396 struct files_struct *files = current->files; local
1441 iterate_fd(struct files_struct *files, unsigned n, int (*f)(const void *, struct file *, unsigned), const void *p) argument
[all...]
/linux-master/scripts/dtc/
H A Ddt-extract-compatibles85 for path, dirs, files in os.walk(root):
90 for f in files:
106 ap.add_argument("cfile", type=str, nargs='*', help="C source files or directories to parse")
/linux-master/kernel/cgroup/
H A Dlegacy_freezer.c459 static struct cftype files[] = { variable in typeref:struct:cftype
486 .legacy_cftypes = files,
/linux-master/tools/power/pm-graph/
H A Dsleepgraph.py859 # files needed for any trace data
860 files = ['buffer_size_kb', 'current_tracer', 'trace', 'trace_clock',
862 # files needed for callgraph trace data
865 files += [
870 for f in files:
875 # files needed for kprobes to work
876 files = ['kprobe_events', 'events']
878 for f in files:
5454 # dmesg and ftrace files to the test output directory.
6455 pprint('Summary files
[all...]
/linux-master/include/linux/ceph/
H A Dceph_fs.h598 __le64 files, subdirs, rbytes, rfiles, rsubdirs; /* dir stats */ member in struct:ceph_mds_reply_inode
922 __le64 max_files; /* quota max. files */
/linux-master/fs/ceph/
H A Dxattr.c427 XATTR_NAME_CEPH(dir, files, VXATTR_FLAG_DIRSTAT),
468 /* files */

Completed in 390 milliseconds

123456789