Home
last modified time | relevance | path

Searched refs:file (Results 3351 - 3375 of 14508) sorted by relevance

1...<<131132133134135136137138139140>>...581

/kernel/linux/linux-5.10/fs/jfs/
H A Djfs_inode.h11 extern int jfs_fsync(struct file *, loff_t, loff_t, int);
12 extern long jfs_ioctl(struct file *, unsigned int, unsigned long);
13 extern long jfs_compat_ioctl(struct file *, unsigned int, unsigned long);
/kernel/linux/linux-6.6/fs/coda/
H A Dcoda_fs_i.h36 * coda fs file private data
41 struct file *cfi_container; /* container file for this cnode */
42 unsigned int cfi_mapcount; /* nr of times this file is mapped */
56 struct coda_file_info *coda_ftoc(struct file *file);
/kernel/linux/linux-6.6/include/media/
H A Dv4l2-fh.h5 * V4L2 file handle. Store per file handle data for the V4L2
6 * framework. Using file handles is optional for the drivers.
25 * struct v4l2_fh - Describes a V4L2 file handler
27 * @list: list of file handlers
30 * @prio: priority of the file handler, as defined by &enum v4l2_priority
60 * v4l2_fh_init - Initialise the file handle.
66 * file handles should be initialised in this function. Must be called
73 * v4l2_fh_add - Add the fh to the list of file handles on a video_device.
78 * The @fh file handl
[all...]
/kernel/linux/linux-6.6/include/soc/tegra/
H A Dtegra-cbb.h36 void tegra_cbb_print_err(struct seq_file *file, const char *fmt, ...);
38 void tegra_cbb_print_cache(struct seq_file *file, u32 cache);
39 void tegra_cbb_print_prot(struct seq_file *file, u32 prot);
/kernel/linux/linux-6.6/drivers/gpu/drm/i915/
H A Di915_perf.h30 struct drm_file *file);
32 struct drm_file *file);
34 struct drm_file *file);
/kernel/linux/linux-6.6/tools/objtool/include/objtool/
H A Dobjtool.h44 void objtool_pv_add(struct objtool_file *file, int idx, struct symbol *func);
46 int check(struct objtool_file *file);
48 int orc_create(struct objtool_file *file);
/kernel/linux/linux-6.6/tools/testing/selftests/bpf/progs/
H A Dtest_subprogs_extable.c22 int BPF_PROG(handle_fexit_ret_subprogs, int arg, struct file *ret) in BPF_PROG()
32 int BPF_PROG(handle_fexit_ret_subprogs2, int arg, struct file *ret) in BPF_PROG()
42 int BPF_PROG(handle_fexit_ret_subprogs3, int arg, struct file *ret) in BPF_PROG()
/test/xts/acts/pcs/pcs_js/entry/src/ohosTest/js/TestAbility/pages/index/
H A Dindex.js4 * you may not use this file except in compliance with the License.
16 import file from '@system.file';
46 file.writeText({
50 console.info('write file success');
53 console.error('write file fail, code: ' + code + ', data: ' + data)
59 file.readText({
63 console.info('read file success.');
66 console.error('read file fail , code: ' + code + ', data: ' + data);
/third_party/icu/icu4c/source/test/fuzzer/
H A Dfuzzer_driver.cpp46 std::ifstream file(path, std::ios::binary); in main()
47 if (!file.is_open()) { in main()
49 std::cerr << "Cannot open testcase file " << path << std::endl; in main()
54 ostrm << file.rdbuf(); in main()
/third_party/icu/tools/multi/proj/chello/
H A DMakefile35 ## Generate a file
50 @for file in $(OUTFILES); \
53 sed -e "s%^%$$file: %g" < $$file; \
/third_party/ltp/include/
H A Dtst_uid.h12 * group of a specific user in case it's not listed in the group file. If you
15 gid_t tst_get_free_gid_(const char *file, const int lineno, gid_t skip);
30 int tst_check_resuid_(const char *file, const int lineno, const char *callstr,
35 int tst_check_resgid_(const char *file, const int lineno, const char *callstr,
/third_party/node/test/parallel/
H A Dtest-tls-env-bad-extra-ca.js1 // Setting NODE_EXTRA_CA_CERTS to non-existent file emits a warning
22 NODE_EXTRA_CA_CERTS: `${fixtures.fixturesDir}/no-such-file-exists-?`,
40 const re = /Warning: Ignoring extra certs from.*no-such-file-exists-?.* load failed:.*No such file or directory/;
H A Dtest-zlib-params.js7 const file = fixtures.readSync('person.jpg');
12 const chunk1 = file.slice(0, chunkSize);
13 const chunk2 = file.slice(chunkSize);
/third_party/node/deps/v8/src/base/
H A Dlogging.cc3 // found in the LICENSE file.
20 void DefaultDcheckHandler(const char* file, int line, const char* message);
55 void DefaultDcheckHandler(const char* file, int line, const char* message) { in DefaultDcheckHandler() argument
57 V8_Fatal(file, line, "Debug check failed: %s.", message); in DefaultDcheckHandler()
138 void V8_Fatal(const char* file, int line, const char* format, ...) { argument
141 const char* file = "";
154 v8::base::OS::PrintError("\n\n#\n# Fatal error in %s, line %d\n# ", file,
170 void V8_Dcheck(const char* file, int line, const char* message) { argument
171 v8::base::g_dcheck_function(file, line, message);
/third_party/musl/libc-test/src/functionalext/supplement/stdio/
H A Dputw.c4 * you may not use this file except in compliance with the License.
37 * @tc.desc : Test the putw method to write integers to the file
43 char *file = "putw_test.txt"; in putw_0100() local
44 fp = fopen(file, "w+"); in putw_0100()
54 remove(file); in putw_0100()
59 * @tc.desc : Test the result of putw when the incoming file pointer is empty
H A Dvfwprintf.c4 * you may not use this file except in compliance with the License.
44 * @tc.desc : Test vfwprintf method to write wide string to file
51 FILE *file = fopen(file_name, "w"); in vfwprintf_0100() local
52 int resule = readFile(file, value, L"world"); in vfwprintf_0100()
56 fclose(file); in vfwprintf_0100()
62 * @tc.desc : Test the result of the vfwprintf function when the incoming file is empty
/third_party/vk-gl-cts/external/vulkan-docs/src/scripts/
H A Ddeperiodize_vuids.py30 for file in files:
31 if file.endswith(".adoc"):
32 file_path = os.path.join(root, file)
H A Dmakemanaliases.py34 print('Cannot chdir to', args.refdir, file=sys.stderr)
52 print('No source file', src, file=sys.stderr)
60 print('Unexpected alias file "' + alias + '" exists, skipping',
61 file=sys.stderr) variable
/third_party/python/Lib/email/
H A Diterators.py67 print(tab + msg.get_content_type(), end='', file=fp)
69 print(' [%s]' % msg.get_default_type(), file=fp)
71 print(file=fp)
/third_party/toybox/kconfig/lxdialog/
H A Dcheck-lxdialog.sh7 $cc -print-file-name=libncursesw.so | grep -q /
12 $cc -print-file-name=libncurses.so | grep -q /
17 $cc -print-file-name=libcurses.so | grep -q /
39 # Temp file, try to clean up after us
/kernel/linux/linux-5.10/drivers/net/
H A Dtun.c187 * file were attached to a persist device.
224 struct file *file; member
765 static int tun_attach(struct tun_struct *tun, struct file *file, in tun_attach() argument
769 struct tun_file *tfile = file->private_data; in tun_attach()
1018 err = tun_attach(tun, tun->file, false, ifr->ifr_flags & IFF_NAPI, in tun_net_init()
1437 static __poll_t tun_chr_poll(struct file *file, poll_table *wait) in tun_chr_poll() argument
1439 struct tun_file *tfile = file in tun_chr_poll()
2046 struct file *file = iocb->ki_filp; tun_chr_write_iter() local
2275 struct file *file = iocb->ki_filp; tun_chr_read_iter() local
2740 tun_set_iff(struct net *net, struct file *file, struct ifreq *ifr) tun_set_iff() argument
2970 tun_set_queue(struct file *file, struct ifreq *ifr) tun_set_queue() argument
3065 __tun_chr_ioctl(struct file *file, unsigned int cmd, unsigned long arg, int ifreq_len) __tun_chr_ioctl() argument
3391 tun_chr_ioctl(struct file *file, unsigned int cmd, unsigned long arg) tun_chr_ioctl() argument
3398 tun_chr_compat_ioctl(struct file *file, unsigned int cmd, unsigned long arg) tun_chr_compat_ioctl() argument
3426 tun_chr_fasync(int fd, struct file *file, int on) tun_chr_fasync() argument
3444 tun_chr_open(struct inode *inode, struct file * file) tun_chr_open() argument
3481 tun_chr_close(struct inode *inode, struct file *file) tun_chr_close() argument
3491 tun_chr_show_fdinfo(struct seq_file *m, struct file *file) tun_chr_show_fdinfo() argument
3742 tun_get_socket(struct file *file) tun_get_socket() argument
3754 tun_get_tx_ring(struct file *file) tun_get_tx_ring() argument
[all...]
/kernel/linux/linux-6.6/arch/s390/kernel/
H A Dperf_cpum_cf.c1092 * - CPU add: Nothing is done since a file descriptor can not be created
1095 * pmu_delete(). The event itself is removed when the file descriptor is
1127 * destruction when the event file descriptor is closed. in cpum_cf_offline_cpu()
1239 * counter set via normal file operations.
1382 static int cfset_release(struct inode *inode, struct file *file) in cfset_release() argument
1386 if (file->private_data) { in cfset_release()
1387 cfset_all_stop(file->private_data); in cfset_release()
1388 cfset_session_del(file->private_data); in cfset_release()
1389 kfree(file in cfset_release()
1407 cfset_open(struct inode *inode, struct file *file) cfset_open() argument
1577 cfset_ioctl_stop(struct file *file) cfset_ioctl_stop() argument
1592 cfset_ioctl_start(unsigned long arg, struct file *file) cfset_ioctl_start() argument
1660 cfset_ioctl(struct file *file, unsigned int cmd, unsigned long arg) cfset_ioctl() argument
[all...]
/kernel/linux/linux-5.10/drivers/macintosh/
H A Dsmu.c1083 static int smu_open(struct inode *inode, struct file *file) in smu_open() argument
1099 file->private_data = pp; in smu_open()
1114 static ssize_t smu_write(struct file *file, const char __user *buf, in smu_write() argument
1117 struct smu_private *pp = file->private_data; in smu_write()
1172 static ssize_t smu_read_command(struct file *file, struct smu_private *pp, in smu_read_command() argument
1186 if (file->f_flags & O_NONBLOCK) { in smu_read_command()
1228 static ssize_t smu_read_events(struct file *fil argument
1237 smu_read(struct file *file, char __user *buf, size_t count, loff_t *ppos) smu_read() argument
1250 smu_fpoll(struct file *file, poll_table *wait) smu_fpoll() argument
1273 smu_release(struct inode *inode, struct file *file) smu_release() argument
[all...]
/kernel/linux/linux-5.10/drivers/usb/class/
H A Dusblp.c407 static int usblp_open(struct inode *inode, struct file *file) in usblp_open() argument
441 file->private_data = usblp; in usblp_open()
450 file->private_data = NULL; in usblp_open()
474 static int usblp_release(struct inode *inode, struct file *file) in usblp_release() argument
476 struct usblp *usblp = file->private_data; in usblp_release()
495 static __poll_t usblp_poll(struct file *file, struct poll_table_struct *wait) in usblp_poll() argument
497 struct usblp *usblp = file in usblp_poll()
519 usblp_ioctl(struct file *file, unsigned int cmd, unsigned long arg) usblp_ioctl() argument
742 usblp_write(struct file *file, const char __user *buffer, size_t count, loff_t *ppos) usblp_write() argument
841 usblp_read(struct file *file, char __user *buffer, size_t len, loff_t *ppos) usblp_read() argument
[all...]
/kernel/linux/linux-5.10/drivers/usb/gadget/function/
H A Df_hid.c288 static ssize_t f_hidg_intout_read(struct file *file, char __user *buffer, in f_hidg_intout_read() argument
291 struct f_hidg *hidg = file->private_data; in f_hidg_intout_read()
307 if (file->f_flags & O_NONBLOCK) in f_hidg_intout_read()
362 static ssize_t f_hidg_ssreport_read(struct file *file, char __user *buffer, in f_hidg_ssreport_read() argument
365 struct f_hidg *hidg = file->private_data; in f_hidg_ssreport_read()
376 if (file->f_flags & O_NONBLOCK) in f_hidg_ssreport_read()
403 static ssize_t f_hidg_read(struct file *file, cha argument
430 f_hidg_write(struct file *file, const char __user *buffer, size_t count, loff_t *offp) f_hidg_write() argument
523 f_hidg_poll(struct file *file, poll_table *wait) f_hidg_poll() argument
[all...]

Completed in 18 milliseconds

1...<<131132133134135136137138139140>>...581