Home
last modified time | relevance | path

Searched refs:file (Results 3501 - 3525 of 14508) sorted by relevance

1...<<141142143144145146147148149150>>...581

/test/testfwk/developer_test/local_coverage/keyword_registration/
H A Dkeyword_filter.py7 # you may not use this file except in compliance with the License.
47 for file in files:
48 if not file.endswith(".gcov.html"):
50 file_path = os.path.join(root_path, file)
59 for file in files:
60 if file == "gcov.css":
61 css_file_path = os.path.join(root_path, file)
71 with os.fdopen(os.open(css_file_path, FLAGS_ADD, MODES), 'a+') as file:
72 file.write(text)
106 with open(file_path, "r", encoding="utf-8") as file
[all...]
/third_party/alsa-utils/seq/aplaymidi/
H A Darecordmidi.c37 /* linked list of buffers, stores data as in the .mid file */
73 static FILE *file; variable
267 * Empty tracks won't be written to the file. */ in init_tracks()
391 /* records a byte to be written to the .mid file */
631 fwrite("MThd\0\0\0\6", 1, 8, file); in write_file()
633 fputc(0, file); in write_file()
634 fputc(used_tracks > 1 ? 1 : 0, file); in write_file()
636 fputc((used_tracks >> 8) & 0xff, file); in write_file()
637 fputc(used_tracks & 0xff, file); in write_file()
642 fputc(time_division >> 8, file); in write_file()
[all...]
/third_party/node/deps/openssl/openssl/ssl/
H A Dssl_rsa.c5 * this file except in compliance with the License. You can obtain a copy
6 * in the file LICENSE in the source distribution or at
45 int SSL_use_certificate_file(SSL *ssl, const char *file, int type) in SSL_use_certificate_file() argument
58 if (BIO_read_filename(in, file) <= 0) { in SSL_use_certificate_file()
150 int SSL_use_PrivateKey_file(SSL *ssl, const char *file, int type) in SSL_use_PrivateKey_file() argument
162 if (BIO_read_filename(in, file) <= 0) { in SSL_use_PrivateKey_file()
277 int SSL_CTX_use_certificate_file(SSL_CTX *ctx, const char *file, int type) in SSL_CTX_use_certificate_file() argument
290 if (BIO_read_filename(in, file) <= 0) { in SSL_CTX_use_certificate_file()
354 int SSL_CTX_use_PrivateKey_file(SSL_CTX *ctx, const char *file, int type) in SSL_CTX_use_PrivateKey_file() argument
366 if (BIO_read_filename(in, file) < in SSL_CTX_use_PrivateKey_file()
418 use_certificate_chain_file(SSL_CTX *ctx, SSL *ssl, const char *file) use_certificate_chain_file() argument
532 SSL_CTX_use_certificate_chain_file(SSL_CTX *ctx, const char *file) SSL_CTX_use_certificate_chain_file() argument
537 SSL_use_certificate_chain_file(SSL *ssl, const char *file) SSL_use_certificate_chain_file() argument
806 SSL_CTX_use_serverinfo_file(SSL_CTX *ctx, const char *file) SSL_CTX_use_serverinfo_file() argument
[all...]
/third_party/python/Lib/
H A Dftplib.py89 To download a file, use ftp.retrlines('RETR ' + filename),
91 To upload a file, use ftp.storlines() or ftp.storbinary(),
92 which have an open file as argument (see their definitions
103 file = None variable in FTP
161 self.file = self.sock.makefile('r', encoding=self.encoding)
212 line = self.file.readline(self.maxline + 1)
265 '''Abort a file transfer. Uses out-of-band data.
483 """Store a file in binary mode. A new port is created for you.
487 fp: A file-like object with a read(num_bytes) method.
512 """Store a file i
[all...]
H A Dcgi.py66 """Write a log message, if there is a log file.
70 (initially), to dolog (once the log file has been opened), or to
76 will write "a: b" to the log file, followed by a newline.
78 If the global logfp is not None, it should be a file object to
82 giving a filename to open, in append mode. This file should be
83 world writable!!! If the file can't be opened, logging is
103 """Write a log message to the log file. See initlog() for docs."""
111 """Close the log file."""
131 """Parse a query in the environment or from a file (default stdin)
135 fp : file pointe
270 file = None global() variable in MiniFieldStorage
[all...]
H A Dbdb.py366 # Set_break prints out the breakpoint line and file:lineno.
426 # If there's only one bp in the list for that file,line
443 self._prune_breaks(bp.file, bp.line)
664 the (file, line) tuple using bplist. The former points to a
679 bplist = {} # indexed by (file, lineno) tuple
684 def __init__(self, file, line, temporary=False, cond=None, funcname=None):
688 self.file = file # This better be in canonical form!
699 if (file, line) in self.bplist:
700 self.bplist[file, lin
[all...]
/third_party/openssl/ssl/
H A Dssl_rsa.c5 * this file except in compliance with the License. You can obtain a copy
6 * in the file LICENSE in the source distribution or at
45 int SSL_use_certificate_file(SSL *ssl, const char *file, int type) in SSL_use_certificate_file() argument
58 if (BIO_read_filename(in, file) <= 0) { in SSL_use_certificate_file()
150 int SSL_use_PrivateKey_file(SSL *ssl, const char *file, int type) in SSL_use_PrivateKey_file() argument
162 if (BIO_read_filename(in, file) <= 0) { in SSL_use_PrivateKey_file()
277 int SSL_CTX_use_certificate_file(SSL_CTX *ctx, const char *file, int type) in SSL_CTX_use_certificate_file() argument
290 if (BIO_read_filename(in, file) <= 0) { in SSL_CTX_use_certificate_file()
354 int SSL_CTX_use_PrivateKey_file(SSL_CTX *ctx, const char *file, int type) in SSL_CTX_use_PrivateKey_file() argument
366 if (BIO_read_filename(in, file) < in SSL_CTX_use_PrivateKey_file()
418 use_certificate_chain_file(SSL_CTX *ctx, SSL *ssl, const char *file) use_certificate_chain_file() argument
532 SSL_CTX_use_certificate_chain_file(SSL_CTX *ctx, const char *file) SSL_CTX_use_certificate_chain_file() argument
537 SSL_use_certificate_chain_file(SSL *ssl, const char *file) SSL_use_certificate_chain_file() argument
806 SSL_CTX_use_serverinfo_file(SSL_CTX *ctx, const char *file) SSL_CTX_use_serverinfo_file() argument
[all...]
/base/startup/init/interfaces/innerkits/fs_manager/
H A Dfstab_mount.c4 * you may not use this file except in compliance with the License.
281 char *file = "/system/bin/resize.f2fs"; in DoResizeF2fs() local
287 BEGET_ERROR_CHECK(access(file, F_OK) == 0, return -1, "resize.f2fs is not exists."); in DoResizeF2fs()
289 argv[argc++] = file; in DoResizeF2fs()
327 char *file = "/system/bin/fsck.f2fs"; in DoFsckF2fs() local
328 BEGET_ERROR_CHECK(access(file, F_OK) == 0, return -1, "fsck.f2fs is not exists."); in DoFsckF2fs()
331 file, "-p1", (char *)device, NULL in DoFsckF2fs()
344 char *file = "/system/bin/resize2fs"; in DoResizeExt() local
345 BEGET_ERROR_CHECK(access(file, F_OK) == 0, return -1, "resize2fs is not exists."); in DoResizeExt()
350 file, " in DoResizeExt()
373 char *file = "/system/bin/e2fsck"; DoFsckExt() local
[all...]
/kernel/linux/linux-5.10/arch/powerpc/platforms/52xx/
H A Dmpc52xx_gpt.c8 * This file is a driver for the the General Purpose Timer (gpt) devices
25 * to the device tree node for the gpt device (typically in the .dts file
537 static ssize_t mpc52xx_wdt_write(struct file *file, const char __user *data, in mpc52xx_wdt_write() argument
540 struct mpc52xx_gpt_priv *gpt_wdt = file->private_data; in mpc52xx_wdt_write()
550 static long mpc52xx_wdt_ioctl(struct file *file, unsigned int cmd, in mpc52xx_wdt_ioctl() argument
553 struct mpc52xx_gpt_priv *gpt_wdt = file->private_data; in mpc52xx_wdt_ioctl()
606 static int mpc52xx_wdt_open(struct inode *inode, struct file *file) in mpc52xx_wdt_open() argument
630 mpc52xx_wdt_release(struct inode *inode, struct file *file) mpc52xx_wdt_release() argument
[all...]
/kernel/linux/linux-6.6/arch/powerpc/platforms/52xx/
H A Dmpc52xx_gpt.c8 * This file is a driver for the General Purpose Timer (gpt) devices
25 * to the device tree node for the gpt device (typically in the .dts file
533 static ssize_t mpc52xx_wdt_write(struct file *file, const char __user *data, in mpc52xx_wdt_write() argument
536 struct mpc52xx_gpt_priv *gpt_wdt = file->private_data; in mpc52xx_wdt_write()
546 static long mpc52xx_wdt_ioctl(struct file *file, unsigned int cmd, in mpc52xx_wdt_ioctl() argument
549 struct mpc52xx_gpt_priv *gpt_wdt = file->private_data; in mpc52xx_wdt_ioctl()
603 static int mpc52xx_wdt_open(struct inode *inode, struct file *file) in mpc52xx_wdt_open() argument
627 mpc52xx_wdt_release(struct inode *inode, struct file *file) mpc52xx_wdt_release() argument
[all...]
/kernel/linux/linux-5.10/drivers/usb/host/
H A Duhci-debug.c558 static int uhci_debug_open(struct inode *inode, struct file *file) in uhci_debug_open() argument
581 file->private_data = up; in uhci_debug_open()
586 static loff_t uhci_debug_lseek(struct file *file, loff_t off, int whence) in uhci_debug_lseek() argument
588 struct uhci_debug *up = file->private_data; in uhci_debug_lseek()
589 return no_seek_end_llseek_size(file, off, whence, up->size); in uhci_debug_lseek()
592 static ssize_t uhci_debug_read(struct file *file, char __user *buf, in uhci_debug_read() argument
595 struct uhci_debug *up = file in uhci_debug_read()
599 uhci_debug_release(struct inode *inode, struct file *file) uhci_debug_release() argument
[all...]
/kernel/linux/linux-5.10/drivers/usb/misc/
H A Dadutux.c227 static int adu_open(struct inode *inode, struct file *file) in adu_open() argument
264 /* save device in the file's private structure */ in adu_open()
265 file->private_data = dev; in adu_open()
307 static int adu_release(struct inode *inode, struct file *file) in adu_release() argument
312 if (file == NULL) { in adu_release()
317 dev = file->private_data; in adu_release()
333 /* the device was unplugged before the file was released */ in adu_release()
343 static ssize_t adu_read(struct file *fil argument
506 adu_write(struct file *file, const __user char *buffer, size_t count, loff_t *ppos) adu_write() argument
[all...]
/kernel/linux/linux-5.10/include/linux/
H A Dhugetlb.h74 * For example, a file region structure with from == 0 and to == 4 represents
283 static inline int prepare_hugepage_range(struct file *file, in prepare_hugepage_range() argument
396 * The file will be used as an shm file so shmfs accounting rules
401 * The file is being created on the internal vfs mount and shmfs
437 struct file *hugetlb_file_setup(const char *name, size_t size, vm_flags_t acct,
441 static inline bool is_file_hugepages(struct file *file) in is_file_hugepages() argument
443 if (file in is_file_hugepages()
[all...]
/kernel/linux/linux-6.6/drivers/usb/host/
H A Duhci-debug.c558 static int uhci_debug_open(struct inode *inode, struct file *file) in uhci_debug_open() argument
581 file->private_data = up; in uhci_debug_open()
586 static loff_t uhci_debug_lseek(struct file *file, loff_t off, int whence) in uhci_debug_lseek() argument
588 struct uhci_debug *up = file->private_data; in uhci_debug_lseek()
589 return no_seek_end_llseek_size(file, off, whence, up->size); in uhci_debug_lseek()
592 static ssize_t uhci_debug_read(struct file *file, char __user *buf, in uhci_debug_read() argument
595 struct uhci_debug *up = file in uhci_debug_read()
599 uhci_debug_release(struct inode *inode, struct file *file) uhci_debug_release() argument
[all...]
/kernel/linux/linux-6.6/drivers/usb/misc/
H A Dadutux.c227 static int adu_open(struct inode *inode, struct file *file) in adu_open() argument
264 /* save device in the file's private structure */ in adu_open()
265 file->private_data = dev; in adu_open()
307 static int adu_release(struct inode *inode, struct file *file) in adu_release() argument
312 if (file == NULL) { in adu_release()
317 dev = file->private_data; in adu_release()
333 /* the device was unplugged before the file was released */ in adu_release()
343 static ssize_t adu_read(struct file *fil argument
503 adu_write(struct file *file, const __user char *buffer, size_t count, loff_t *ppos) adu_write() argument
[all...]
/kernel/linux/linux-6.6/drivers/fsi/
H A Dfsi-occ.c80 static int occ_open(struct inode *inode, struct file *file) in occ_open() argument
83 struct miscdevice *mdev = file->private_data; in occ_open()
97 file->private_data = client; in occ_open()
107 static ssize_t occ_read(struct file *file, char __user *buf, size_t len, in occ_read() argument
110 struct occ_client *client = file->private_data; in occ_read()
140 static ssize_t occ_write(struct file *file, const char __user *buf, in occ_write() argument
143 struct occ_client *client = file in occ_write()
198 occ_release(struct inode *inode, struct file *file) occ_release() argument
[all...]
/third_party/gn/src/gn/
H A Dcommands.cc3 // found in the LICENSE file.
104 // Not a valid label, assume this must be a file. in ResolveStringFromCommandLineInput()
124 // Not an item, assume this must be a file. in ResolveStringFromCommandLineInput()
205 // Returns the file path of the BUILD.gn file generating this item.
207 // Find the only BUILD.gn file listed in build_dependency_files() for in BuildFileForItem()
224 CHECK(build_gn) << "No BUILD.gn or BUILDCONFIG.gn file defining " in BuildFileForItem()
236 for (const std::string& file : unique_files) { in PrintTargetsAsBuildfiles()
237 out->AppendString(file); in PrintTargetsAsBuildfiles()
268 // Use the link output file i in PrintTargetsAsOutputs()
310 TargetContainsFile( const Target* target, const SourceFile& file) TargetContainsFile() argument
732 GetTargetsContainingFile(Setup* setup, const std::vector<const Target*>& all_targets, const SourceFile& file, bool default_toolchain_only, std::vector<TargetContainingFile>* matches) GetTargetsContainingFile() argument
[all...]
/third_party/alsa-utils/bat/
H A Dbat.c331 " --log=# file that both stdout and strerr redirecting to\n" in usage()
332 " --file=# file for playback\n" in usage()
333 " --saveplay=# file that storing playback content, for debug\n" in usage()
334 " --readcapture=# file with previously captured content. File data\n" in usage()
395 {"file", 1, 0, OPT_READFILE}, in parse_arguments()
413 bat->playback.file = optarg; in parse_arguments()
503 /* check if we have an input file for local mode */ in validate_options()
504 if ((bat->local == true) && (bat->capture.file == NULL)) { in validate_options()
505 fprintf(bat->err, _("no input file fo in validate_options()
[all...]
/kernel/linux/linux-5.10/drivers/ntb/test/
H A Dntb_tool.c2 * This file is provided under a dual BSD/GPLv2 license. When using or
3 * redistributing this file, you may do so under either license.
412 static ssize_t tool_port_read(struct file *filep, char __user *ubuf, in tool_port_read()
428 static ssize_t tool_peer_port_read(struct file *filep, char __user *ubuf, in tool_peer_port_read()
469 static ssize_t tool_link_write(struct file *filep, const char __user *ubuf, in tool_link_write()
495 static ssize_t tool_peer_link_read(struct file *filep, char __user *ubuf, in tool_peer_link_read()
516 static ssize_t tool_peer_link_event_write(struct file *filep, in tool_peer_link_event_write()
548 static ssize_t tool_mw_read(struct file *filep, char __user *ubuf, in tool_mw_read()
560 static ssize_t tool_mw_write(struct file *filep, const char __user *ubuf, in tool_mw_write()
644 static ssize_t tool_mw_trans_read(struct file *file
[all...]
/kernel/linux/linux-5.10/drivers/video/fbdev/via/
H A Dviafbdev.c1124 static int viafb_dvp0_proc_open(struct inode *inode, struct file *file) in viafb_dvp0_proc_open() argument
1126 return single_open(file, viafb_dvp0_proc_show, NULL); in viafb_dvp0_proc_open()
1129 static ssize_t viafb_dvp0_proc_write(struct file *file, in viafb_dvp0_proc_write() argument
1194 static int viafb_dvp1_proc_open(struct inode *inode, struct file *file) in viafb_dvp1_proc_open() argument
1196 return single_open(file, viafb_dvp1_proc_show, NULL); in viafb_dvp1_proc_open()
1199 static ssize_t viafb_dvp1_proc_write(struct file *file, in viafb_dvp1_proc_write() argument
1256 viafb_dfph_proc_open(struct inode *inode, struct file *file) viafb_dfph_proc_open() argument
1261 viafb_dfph_proc_write(struct file *file, const char __user *buffer, size_t count, loff_t *pos) viafb_dfph_proc_write() argument
1290 viafb_dfpl_proc_open(struct inode *inode, struct file *file) viafb_dfpl_proc_open() argument
1295 viafb_dfpl_proc_write(struct file *file, const char __user *buffer, size_t count, loff_t *pos) viafb_dfpl_proc_write() argument
1348 viafb_vt1636_proc_open(struct inode *inode, struct file *file) viafb_vt1636_proc_open() argument
1353 viafb_vt1636_proc_write(struct file *file, const char __user *buffer, size_t count, loff_t *pos) viafb_vt1636_proc_write() argument
1495 viafb_iga1_odev_proc_open(struct inode *inode, struct file *file) viafb_iga1_odev_proc_open() argument
1500 viafb_iga1_odev_proc_write(struct file *file, const char __user *buffer, size_t count, loff_t *pos) viafb_iga1_odev_proc_write() argument
1534 viafb_iga2_odev_proc_open(struct inode *inode, struct file *file) viafb_iga2_odev_proc_open() argument
1539 viafb_iga2_odev_proc_write(struct file *file, const char __user *buffer, size_t count, loff_t *pos) viafb_iga2_odev_proc_write() argument
[all...]
/kernel/linux/linux-6.6/drivers/video/fbdev/via/
H A Dviafbdev.c1124 static int viafb_dvp0_proc_open(struct inode *inode, struct file *file) in viafb_dvp0_proc_open() argument
1126 return single_open(file, viafb_dvp0_proc_show, NULL); in viafb_dvp0_proc_open()
1129 static ssize_t viafb_dvp0_proc_write(struct file *file, in viafb_dvp0_proc_write() argument
1194 static int viafb_dvp1_proc_open(struct inode *inode, struct file *file) in viafb_dvp1_proc_open() argument
1196 return single_open(file, viafb_dvp1_proc_show, NULL); in viafb_dvp1_proc_open()
1199 static ssize_t viafb_dvp1_proc_write(struct file *file, in viafb_dvp1_proc_write() argument
1256 viafb_dfph_proc_open(struct inode *inode, struct file *file) viafb_dfph_proc_open() argument
1261 viafb_dfph_proc_write(struct file *file, const char __user *buffer, size_t count, loff_t *pos) viafb_dfph_proc_write() argument
1290 viafb_dfpl_proc_open(struct inode *inode, struct file *file) viafb_dfpl_proc_open() argument
1295 viafb_dfpl_proc_write(struct file *file, const char __user *buffer, size_t count, loff_t *pos) viafb_dfpl_proc_write() argument
1348 viafb_vt1636_proc_open(struct inode *inode, struct file *file) viafb_vt1636_proc_open() argument
1353 viafb_vt1636_proc_write(struct file *file, const char __user *buffer, size_t count, loff_t *pos) viafb_vt1636_proc_write() argument
1495 viafb_iga1_odev_proc_open(struct inode *inode, struct file *file) viafb_iga1_odev_proc_open() argument
1500 viafb_iga1_odev_proc_write(struct file *file, const char __user *buffer, size_t count, loff_t *pos) viafb_iga1_odev_proc_write() argument
1534 viafb_iga2_odev_proc_open(struct inode *inode, struct file *file) viafb_iga2_odev_proc_open() argument
1539 viafb_iga2_odev_proc_write(struct file *file, const char __user *buffer, size_t count, loff_t *pos) viafb_iga2_odev_proc_write() argument
[all...]
/kernel/linux/linux-6.6/drivers/media/platform/qcom/venus/
H A Dvdec.c241 static int vdec_try_fmt(struct file *file, void *fh, struct v4l2_format *f) in vdec_try_fmt() argument
243 struct venus_inst *inst = to_inst(file); in vdec_try_fmt()
284 static int vdec_g_fmt(struct file *file, void *fh, struct v4l2_format *f) in vdec_g_fmt() argument
286 struct venus_inst *inst = to_inst(file); in vdec_g_fmt()
321 static int vdec_s_fmt(struct file *file, void *fh, struct v4l2_format *f) in vdec_s_fmt() argument
323 struct venus_inst *inst = to_inst(file); in vdec_s_fmt()
395 vdec_g_selection(struct file *fil argument
436 vdec_querycap(struct file *file, void *fh, struct v4l2_capability *cap) vdec_querycap() argument
445 vdec_enum_fmt(struct file *file, void *fh, struct v4l2_fmtdesc *f) vdec_enum_fmt() argument
462 vdec_s_parm(struct file *file, void *fh, struct v4l2_streamparm *a) vdec_s_parm() argument
496 vdec_enum_framesizes(struct file *file, void *fh, struct v4l2_frmsizeenum *fsize) vdec_enum_framesizes() argument
549 vdec_decoder_cmd(struct file *file, void *fh, struct v4l2_decoder_cmd *cmd) vdec_decoder_cmd() argument
1665 vdec_open(struct file *file) vdec_open() argument
1744 vdec_close(struct file *file) vdec_close() argument
[all...]
/kernel/linux/linux-6.6/drivers/media/platform/mediatek/vcodec/encoder/
H A Dmtk_vcodec_enc.c158 static int vidioc_enum_framesizes(struct file *file, void *fh, in vidioc_enum_framesizes() argument
182 static int vidioc_enum_fmt_vid_cap(struct file *file, void *priv, in vidioc_enum_fmt_vid_cap() argument
192 static int vidioc_enum_fmt_vid_out(struct file *file, void *priv, in vidioc_enum_fmt_vid_out() argument
221 static int vidioc_venc_querycap(struct file *file, void *priv, in vidioc_venc_querycap() argument
234 static int vidioc_venc_s_parm(struct file *file, voi argument
257 vidioc_venc_g_parm(struct file *file, void *priv, struct v4l2_streamparm *a) vidioc_venc_g_parm() argument
414 vidioc_venc_s_fmt_cap(struct file *file, void *priv, struct v4l2_format *f) vidioc_venc_s_fmt_cap() argument
469 vidioc_venc_s_fmt_out(struct file *file, void *priv, struct v4l2_format *f) vidioc_venc_s_fmt_out() argument
523 vidioc_venc_g_fmt(struct file *file, void *priv, struct v4l2_format *f) vidioc_venc_g_fmt() argument
556 vidioc_try_fmt_vid_cap_mplane(struct file *file, void *priv, struct v4l2_format *f) vidioc_try_fmt_vid_cap_mplane() argument
578 vidioc_try_fmt_vid_out_mplane(struct file *file, void *priv, struct v4l2_format *f) vidioc_try_fmt_vid_out_mplane() argument
600 vidioc_venc_g_selection(struct file *file, void *priv, struct v4l2_selection *s) vidioc_venc_g_selection() argument
630 vidioc_venc_s_selection(struct file *file, void *priv, struct v4l2_selection *s) vidioc_venc_s_selection() argument
655 vidioc_venc_qbuf(struct file *file, void *priv, struct v4l2_buffer *buf) vidioc_venc_qbuf() argument
669 vidioc_venc_dqbuf(struct file *file, void *priv, struct v4l2_buffer *buf) vidioc_venc_dqbuf() argument
707 vidioc_encoder_cmd(struct file *file, void *priv, struct v4l2_encoder_cmd *cmd) vidioc_encoder_cmd() argument
[all...]
/kernel/linux/linux-6.6/drivers/ntb/test/
H A Dntb_tool.c2 * This file is provided under a dual BSD/GPLv2 license. When using or
3 * redistributing this file, you may do so under either license.
405 static ssize_t tool_port_read(struct file *filep, char __user *ubuf, in tool_port_read()
421 static ssize_t tool_peer_port_read(struct file *filep, char __user *ubuf, in tool_peer_port_read()
462 static ssize_t tool_link_write(struct file *filep, const char __user *ubuf, in tool_link_write()
488 static ssize_t tool_peer_link_read(struct file *filep, char __user *ubuf, in tool_peer_link_read()
509 static ssize_t tool_peer_link_event_write(struct file *filep, in tool_peer_link_event_write()
541 static ssize_t tool_mw_read(struct file *filep, char __user *ubuf, in tool_mw_read()
553 static ssize_t tool_mw_write(struct file *filep, const char __user *ubuf, in tool_mw_write()
637 static ssize_t tool_mw_trans_read(struct file *file
[all...]
/third_party/protobuf/src/google/protobuf/compiler/
H A Dparser.cc616 bool Parser::Parse(io::Tokenizer* input, FileDescriptorProto* file) { in Parse() argument
621 // Note that |file| could be NULL at this point if in Parse()
636 root_location.RecordLegacyLocation(file, in Parse()
641 // Don't attempt to parse the file if we didn't recognize the syntax in Parse()
645 // Store the syntax into the file. in Parse()
646 if (file != NULL) file->set_syntax(syntax_identifier_); in Parse()
648 GOOGLE_LOG(WARNING) << "No syntax specified for the proto file: " << file->name() in Parse()
657 // Repeatedly parse statements until we reach the end of the file in Parse()
706 ParseTopLevelStatement(FileDescriptorProto* file, const LocationRecorder& root_location) ParseTopLevelStatement() argument
2311 ParsePackage(FileDescriptorProto* file, const LocationRecorder& root_location, const FileDescriptorProto* containing_file) ParsePackage() argument
[all...]

Completed in 33 milliseconds

1...<<141142143144145146147148149150>>...581