| /kernel/linux/linux-6.6/kernel/trace/rv/ |
| H A D | rv_reactors.c | 124 static int available_reactors_open(struct inode *inode, struct file *file) in available_reactors_open() argument 126 return seq_open(file, &available_reactors_seq_ops); in available_reactors_open() 137 * Monitor's reactor file. 187 monitor_reactors_write(struct file *file, const char __user *user_buf, in monitor_reactors_write() argument 217 seq_f = file->private_data; in monitor_reactors_write() 247 static int monitor_reactors_open(struct inode *inode, struct file *file) in monitor_reactors_open() argument 253 ret = seq_open(file, in monitor_reactors_open() [all...] |
| /third_party/ltp/testcases/kernel/syscalls/fanotify/ |
| H A D | fanotify.h | 17 static inline int safe_fanotify_init(const char *file, const int lineno, in safe_fanotify_init() argument 26 tst_brk_(file, lineno, TCONF, in safe_fanotify_init() 29 tst_brk_(file, lineno, TBROK | TERRNO, in safe_fanotify_init() 30 "%s:%d: fanotify_init() failed", file, lineno); in safe_fanotify_init() 34 tst_brk_(file, lineno, TBROK | TERRNO, in safe_fanotify_init() 41 static inline int safe_fanotify_mark(const char *file, const int lineno, in safe_fanotify_mark() argument 50 tst_brk_(file, lineno, TBROK | TERRNO, in safe_fanotify_mark() 56 tst_brk_(file, lineno, TBROK | TERRNO, in safe_fanotify_mark() 97 "filesystem %s does not support file handles", in fanotify_get_fid() 220 typedef void (*tst_res_func_t)(const char *file, cons 223 fanotify_init_flags_err_msg(const char *flags_str, const char *file, const int lineno, tst_res_func_t res_func, int fail) fanotify_init_flags_err_msg() argument [all...] |
| /third_party/node/deps/undici/src/node_modules/@fastify/busboy/lib/types/ |
| H A D | multipart.js | 155 // file/binary field 166 if (boy.listenerCount('file') === 0) { 172 const file = new FileStream(fileOpts) 173 curFile = file 174 file.on('end', function () { 184 file._read = function (n) { 193 boy.emit('file', fieldname, file, filename, encoding, contype) 198 if (extralen > 0) { file.push(data.slice(0, extralen)) } 199 file [all...] |
| /third_party/protobuf/src/google/protobuf/compiler/objectivec/ |
| H A D | objectivec_helpers.h | 77 string PROTOC_EXPORT FileClassPrefix(const FileDescriptor* file); 79 // Gets the path of the file we're going to generate (sans the .pb.h 82 string PROTOC_EXPORT FilePath(const FileDescriptor* file); 85 string PROTOC_EXPORT FilePathBasename(const FileDescriptor* file); 87 // Gets the name of the root class we'll generate in the file. This class 90 string PROTOC_EXPORT FileClassName(const FileDescriptor* file); 109 // Returns the name to use for the extension (used as the method off the file's 130 inline bool HasPreservingUnknownEnumSemantics(const FileDescriptor* file) { in HasPreservingUnknownEnumSemantics() argument 131 return file->syntax() == FileDescriptor::SYNTAX_PROTO3; in HasPreservingUnknownEnumSemantics() 165 const FileDescriptor* file in GetOptionalDeprecatedAttribute() [all...] |
| /third_party/python/Lib/test/test_importlib/ |
| H A D | test_metadata_api.py | 199 for file in files: 200 assert file.root == root 201 assert not file.hash or file.hash.value 202 assert not file.hash or file.hash.mode == 'sha256' 203 assert not file.size or file.size >= 0 204 assert file.locate().exists() 205 assert isinstance(file [all...] |
| /third_party/rust/crates/nix/test/sys/ |
| H A D | test_uio.rs | 112 let mut file = tempfile().unwrap(); in test_pwrite() variables 114 assert_eq!(Ok(8), pwrite(file.as_raw_fd(), &buf, 8)); in test_pwrite() 116 file.read_to_end(&mut file_content).unwrap(); in test_pwrite() 129 let mut file = OpenOptions::new() in test_pread() variables 137 file.write_all(&file_content).unwrap(); in test_pread() 140 assert_eq!(Ok(16), pread(file.as_raw_fd(), &mut buf, 16)); in test_pread() 161 // pwritev them into a temporary file in test_pwritev() 163 let mut file = OpenOptions::new() in test_pwritev() variables 171 let written = pwritev(file.as_raw_fd(), &iovecs, 100).ok().unwrap(); in test_pwritev() 176 file in test_pwritev() 192 let mut file = OpenOptions::new() test_preadv() variables [all...] |
| /kernel/linux/linux-5.10/drivers/media/i2c/ |
| H A D | video-i2c.c | 566 static int video_i2c_querycap(struct file *file, void *priv, in video_i2c_querycap() argument 569 struct video_i2c_data *data = video_drvdata(file); in video_i2c_querycap() 581 static int video_i2c_g_input(struct file *file, void *fh, unsigned int *inp) in video_i2c_g_input() argument 588 static int video_i2c_s_input(struct file *file, void *fh, unsigned int inp) in video_i2c_s_input() argument 593 static int video_i2c_enum_input(struct file *file, void *fh, in video_i2c_enum_input() argument 606 static int video_i2c_enum_fmt_vid_cap(struct file *fil argument 621 video_i2c_enum_framesizes(struct file *file, void *fh, struct v4l2_frmsizeenum *fsize) video_i2c_enum_framesizes() argument 641 video_i2c_enum_frameintervals(struct file *file, void *priv, struct v4l2_frmivalenum *fe) video_i2c_enum_frameintervals() argument 659 video_i2c_try_fmt_vid_cap(struct file *file, void *fh, struct v4l2_format *fmt) video_i2c_try_fmt_vid_cap() argument 678 video_i2c_s_fmt_vid_cap(struct file *file, void *fh, struct v4l2_format *fmt) video_i2c_s_fmt_vid_cap() argument [all...] |
| /kernel/linux/linux-5.10/drivers/media/platform/s5p-g2d/ |
| H A D | g2d.c | 233 static int g2d_open(struct file *file) in g2d_open() argument 235 struct g2d_dev *dev = video_drvdata(file); in g2d_open() 258 v4l2_fh_init(&ctx->fh, video_devdata(file)); in g2d_open() 259 file->private_data = &ctx->fh; in g2d_open() 274 static int g2d_release(struct file *file) in g2d_release() argument 276 struct g2d_dev *dev = video_drvdata(file); in g2d_release() 277 struct g2d_ctx *ctx = fh2ctx(file->private_data); in g2d_release() 291 static int vidioc_querycap(struct file *fil argument 300 vidioc_enum_fmt(struct file *file, void *prv, struct v4l2_fmtdesc *f) vidioc_enum_fmt() argument 308 vidioc_g_fmt(struct file *file, void *prv, struct v4l2_format *f) vidioc_g_fmt() argument 330 vidioc_try_fmt(struct file *file, void *prv, struct v4l2_format *f) vidioc_try_fmt() argument 360 vidioc_s_fmt(struct file *file, void *prv, struct v4l2_format *f) vidioc_s_fmt() argument 400 vidioc_g_selection(struct file *file, void *prv, struct v4l2_selection *s) vidioc_g_selection() argument 450 vidioc_try_selection(struct file *file, void *prv, const struct v4l2_selection *s) vidioc_try_selection() argument 478 vidioc_s_selection(struct file *file, void *prv, struct v4l2_selection *s) vidioc_s_selection() argument [all...] |
| /kernel/linux/linux-5.10/drivers/net/wireless/intel/iwlwifi/mvm/ |
| H A D | debugfs-vif.c | 3 * This file is provided under a dual BSD/GPLv2 license. When using or 4 * redistributing this file, you may do so under either license. 22 * in the file called COPYING. 190 static ssize_t iwl_dbgfs_tx_pwr_lmt_read(struct file *file, in iwl_dbgfs_tx_pwr_lmt_read() argument 194 struct ieee80211_vif *vif = file->private_data; in iwl_dbgfs_tx_pwr_lmt_read() 205 static ssize_t iwl_dbgfs_pm_params_read(struct file *file, in iwl_dbgfs_pm_params_read() argument 209 struct ieee80211_vif *vif = file->private_data; in iwl_dbgfs_pm_params_read() 221 static ssize_t iwl_dbgfs_mac_params_read(struct file *fil argument 447 iwl_dbgfs_bf_params_read(struct file *file, char __user *user_buf, size_t count, loff_t *ppos) iwl_dbgfs_bf_params_read() argument 503 iwl_dbgfs_os_device_timediff_read(struct file *file, char __user *user_buf, size_t count, loff_t *ppos) iwl_dbgfs_os_device_timediff_read() argument 582 iwl_dbgfs_low_latency_read(struct file *file, char __user *user_buf, size_t count, loff_t *ppos) iwl_dbgfs_low_latency_read() argument 610 iwl_dbgfs_uapsd_misbehaving_read(struct file *file, char __user *user_buf, size_t count, loff_t *ppos) iwl_dbgfs_uapsd_misbehaving_read() argument 676 iwl_dbgfs_rx_phyinfo_read(struct file *file, char __user *user_buf, size_t count, loff_t *ppos) iwl_dbgfs_rx_phyinfo_read() argument 730 iwl_dbgfs_quota_min_read(struct file *file, char __user *user_buf, size_t count, loff_t *ppos) iwl_dbgfs_quota_min_read() argument [all...] |
| /kernel/linux/linux-6.6/drivers/media/platform/sunxi/sun6i-csi/ |
| H A D | sun6i_csi_capture.c | 716 static int sun6i_csi_capture_querycap(struct file *file, void *private, in sun6i_csi_capture_querycap() argument 719 struct sun6i_csi_device *csi_dev = video_drvdata(file); in sun6i_csi_capture_querycap() 730 static int sun6i_csi_capture_enum_fmt(struct file *file, void *private, in sun6i_csi_capture_enum_fmt() argument 743 static int sun6i_csi_capture_g_fmt(struct file *file, void *private, in sun6i_csi_capture_g_fmt() argument 746 struct sun6i_csi_device *csi_dev = video_drvdata(file); in sun6i_csi_capture_g_fmt() 753 static int sun6i_csi_capture_s_fmt(struct file *file, voi argument 769 sun6i_csi_capture_try_fmt(struct file *file, void *private, struct v4l2_format *format) sun6i_csi_capture_try_fmt() argument 777 sun6i_csi_capture_enum_input(struct file *file, void *private, struct v4l2_input *input) sun6i_csi_capture_enum_input() argument 789 sun6i_csi_capture_g_input(struct file *file, void *private, unsigned int *index) sun6i_csi_capture_g_input() argument 797 sun6i_csi_capture_s_input(struct file *file, void *private, unsigned int index) sun6i_csi_capture_s_input() argument 831 sun6i_csi_capture_open(struct file *file) sun6i_csi_capture_open() argument 861 sun6i_csi_capture_close(struct file *file) sun6i_csi_capture_close() argument [all...] |
| /kernel/linux/linux-6.6/drivers/media/i2c/ |
| H A D | video-i2c.c | 572 static int video_i2c_querycap(struct file *file, void *priv, in video_i2c_querycap() argument 575 struct video_i2c_data *data = video_drvdata(file); in video_i2c_querycap() 587 static int video_i2c_g_input(struct file *file, void *fh, unsigned int *inp) in video_i2c_g_input() argument 594 static int video_i2c_s_input(struct file *file, void *fh, unsigned int inp) in video_i2c_s_input() argument 599 static int video_i2c_enum_input(struct file *file, void *fh, in video_i2c_enum_input() argument 612 static int video_i2c_enum_fmt_vid_cap(struct file *fil argument 627 video_i2c_enum_framesizes(struct file *file, void *fh, struct v4l2_frmsizeenum *fsize) video_i2c_enum_framesizes() argument 647 video_i2c_enum_frameintervals(struct file *file, void *priv, struct v4l2_frmivalenum *fe) video_i2c_enum_frameintervals() argument 665 video_i2c_try_fmt_vid_cap(struct file *file, void *fh, struct v4l2_format *fmt) video_i2c_try_fmt_vid_cap() argument 684 video_i2c_s_fmt_vid_cap(struct file *file, void *fh, struct v4l2_format *fmt) video_i2c_s_fmt_vid_cap() argument [all...] |
| /kernel/linux/linux-6.6/drivers/firmware/tegra/ |
| H A D | bpmp-debugfs.c | 71 const struct file *file, char *buf, int size) in get_filename() 89 filename = dentry_path(file->f_path.dentry, buf, size); in get_filename() 303 struct file *file = m->private; in bpmp_debug_show() local 304 struct inode *inode = file_inode(file); in bpmp_debug_show() 326 filename = get_filename(bpmp, file, fnamebuf, sizeof(fnamebuf)); in bpmp_debug_show() 366 static ssize_t bpmp_debug_store(struct file *file, const char __user *buf, in bpmp_debug_store() argument 369 struct inode *inode = file_inode(file); in bpmp_debug_store() 70 get_filename(struct tegra_bpmp *bpmp, const struct file *file, char *buf, int size) get_filename() argument 390 bpmp_debug_open(struct inode *inode, struct file *file) bpmp_debug_open() argument 584 struct file *file = m->private; debugfs_show() local 628 debugfs_open(struct inode *inode, struct file *file) debugfs_open() argument 633 debugfs_store(struct file *file, const char __user *buf, size_t count, loff_t *f_pos) debugfs_store() argument [all...] |
| /kernel/linux/linux-6.6/drivers/media/platform/samsung/s5p-g2d/ |
| H A D | g2d.c | 233 static int g2d_open(struct file *file) in g2d_open() argument 235 struct g2d_dev *dev = video_drvdata(file); in g2d_open() 258 v4l2_fh_init(&ctx->fh, video_devdata(file)); in g2d_open() 259 file->private_data = &ctx->fh; in g2d_open() 274 static int g2d_release(struct file *file) in g2d_release() argument 276 struct g2d_dev *dev = video_drvdata(file); in g2d_release() 277 struct g2d_ctx *ctx = fh2ctx(file->private_data); in g2d_release() 291 static int vidioc_querycap(struct file *fil argument 300 vidioc_enum_fmt(struct file *file, void *prv, struct v4l2_fmtdesc *f) vidioc_enum_fmt() argument 308 vidioc_g_fmt(struct file *file, void *prv, struct v4l2_format *f) vidioc_g_fmt() argument 330 vidioc_try_fmt(struct file *file, void *prv, struct v4l2_format *f) vidioc_try_fmt() argument 360 vidioc_s_fmt(struct file *file, void *prv, struct v4l2_format *f) vidioc_s_fmt() argument 400 vidioc_g_selection(struct file *file, void *prv, struct v4l2_selection *s) vidioc_g_selection() argument 450 vidioc_try_selection(struct file *file, void *prv, const struct v4l2_selection *s) vidioc_try_selection() argument 478 vidioc_s_selection(struct file *file, void *prv, struct v4l2_selection *s) vidioc_s_selection() argument [all...] |
| /kernel/linux/linux-6.6/drivers/net/wireless/intel/iwlwifi/mvm/ |
| H A D | debugfs-vif.c | 135 static ssize_t iwl_dbgfs_tx_pwr_lmt_read(struct file *file, in iwl_dbgfs_tx_pwr_lmt_read() argument 139 struct ieee80211_vif *vif = file->private_data; in iwl_dbgfs_tx_pwr_lmt_read() 150 static ssize_t iwl_dbgfs_pm_params_read(struct file *file, in iwl_dbgfs_pm_params_read() argument 154 struct ieee80211_vif *vif = file->private_data; in iwl_dbgfs_pm_params_read() 166 static ssize_t iwl_dbgfs_mac_params_read(struct file *file, in iwl_dbgfs_mac_params_read() argument 170 struct ieee80211_vif *vif = file->private_data; in iwl_dbgfs_mac_params_read() 392 static ssize_t iwl_dbgfs_bf_params_read(struct file *fil argument 441 iwl_dbgfs_os_device_timediff_read(struct file *file, char __user *user_buf, size_t count, loff_t *ppos) iwl_dbgfs_os_device_timediff_read() argument 520 iwl_dbgfs_low_latency_read(struct file *file, char __user *user_buf, size_t count, loff_t *ppos) iwl_dbgfs_low_latency_read() argument 548 iwl_dbgfs_uapsd_misbehaving_read(struct file *file, char __user *user_buf, size_t count, loff_t *ppos) iwl_dbgfs_uapsd_misbehaving_read() argument 614 iwl_dbgfs_rx_phyinfo_read(struct file *file, char __user *user_buf, size_t count, loff_t *ppos) iwl_dbgfs_rx_phyinfo_read() argument 668 iwl_dbgfs_quota_min_read(struct file *file, char __user *user_buf, size_t count, loff_t *ppos) iwl_dbgfs_quota_min_read() argument [all...] |
| /kernel/linux/linux-6.6/drivers/media/common/saa7146/ |
| H A D | saa7146_video.c | 180 /* file operations */ 254 static int vidioc_querycap(struct file *file, void *fh, struct v4l2_capability *cap) in vidioc_querycap() argument 256 struct saa7146_dev *dev = video_drvdata(file); in vidioc_querycap() 267 static int vidioc_enum_fmt_vid_cap(struct file *file, void *fh, struct v4l2_fmtdesc *f) in vidioc_enum_fmt_vid_cap() argument 326 static int vidioc_g_parm(struct file *file, void *fh, in vidioc_g_parm() argument 329 struct saa7146_dev *dev = video_drvdata(file); in vidioc_g_parm() 340 static int vidioc_g_fmt_vid_cap(struct file *fil argument 349 vidioc_g_fmt_vbi_cap(struct file *file, void *fh, struct v4l2_format *f) vidioc_g_fmt_vbi_cap() argument 358 vidioc_try_fmt_vid_cap(struct file *file, void *fh, struct v4l2_format *f) vidioc_try_fmt_vid_cap() argument 420 vidioc_s_fmt_vid_cap(struct file *file, void *fh, struct v4l2_format *f) vidioc_s_fmt_vid_cap() argument 448 vidioc_g_std(struct file *file, void *fh, v4l2_std_id *norm) vidioc_g_std() argument 457 vidioc_s_std(struct file *file, void *fh, v4l2_std_id id) vidioc_s_std() argument [all...] |
| /third_party/node/test/parallel/ |
| H A D | test-fs-error-messages.js | 75 `ENOENT: no such file or directory, stat '${nonexistentFile}'`); 96 `ENOENT: no such file or directory, lstat '${nonexistentFile}'`); 113 assert.strictEqual(err.message, 'EBADF: bad file descriptor, fstat'); 136 `ENOENT: no such file or directory, lstat '${nonexistentFile}'`); 157 `ENOENT: no such file or directory, realpath '${nonexistentFile}'`); 178 `ENOENT: no such file or directory, readlink '${nonexistentFile}'`); 193 // Link nonexistent file 200 const regexp = new RegExp('^ENOENT: no such file or directory, link ' + 217 // link existing file 224 `EEXIST: file alread [all...] |
| /third_party/mesa3d/src/gallium/drivers/r300/compiler/ |
| H A D | radeon_dataflow.c | 304 rc_register_file file, unsigned int index, unsigned int mask) in mask_to_chan_cb() 309 d->Fn(d->UserData, inst, file, index, chan); in mask_to_chan_cb() 348 rc_register_file file = inst->DstReg.File; in remap_normal_instruction() local 351 cb(userdata, fullinst, &file, &index); in remap_normal_instruction() 353 inst->DstReg.File = file; in remap_normal_instruction() 358 rc_register_file file = inst->SrcReg[src].File; in remap_normal_instruction() local 361 if (file == RC_FILE_PRESUB) { in remap_normal_instruction() 372 file = inst->PreSub.SrcReg[i].File; in remap_normal_instruction() 374 cb(userdata, fullinst, &file, &index); in remap_normal_instruction() 375 inst->PreSub.SrcReg[i].File = file; in remap_normal_instruction() 303 mask_to_chan_cb(void * data, struct rc_instruction * inst, rc_register_file file, unsigned int index, unsigned int mask) mask_to_chan_cb() argument 395 rc_register_file file = RC_FILE_TEMPORARY; remap_pair_instruction() local 404 rc_register_file file = RC_FILE_TEMPORARY; remap_pair_instruction() local 414 rc_register_file file = inst->RGB.Src[src].File; remap_pair_instruction() local 424 rc_register_file file = inst->Alpha.Src[src].File; remap_pair_instruction() local 515 get_readers_read_callback( struct get_readers_callback_data * cb_data, unsigned int has_rel_addr, rc_register_file file, unsigned int index, unsigned int swizzle) get_readers_read_callback() argument 616 get_readers_write_callback( void *userdata, struct rc_instruction * inst, rc_register_file file, unsigned int index, unsigned int mask) get_readers_write_callback() argument [all...] |
| /third_party/vk-gl-cts/execserver/tools/ |
| H A D | xsTest.cpp | 8 * you may not use this file except in compliance with the License. 20 * \file 54 SocketError (deSocketResult result, const char* message, const char* file, int line) in SocketError() argument 55 : Error (message, deGetSocketResultName(result), file, line) in SocketError() 244 void start (deFile* file) in start() argument 247 m_curFile = file; in start() 597 deFile* file = deFile_create(m_testCtx.logFileName.c_str(), DE_FILEMODE_OPEN|DE_FILEMODE_CREATE|DE_FILEMODE_TRUNCATE|DE_FILEMODE_WRITE); in runProgram() local 598 XS_CHECK(file); in runProgram() 605 XS_CHECK(deFile_write(file, line0, sizeof(line0)-1, &numWritten) == DE_FILERESULT_SUCCESS); in runProgram() 610 XS_CHECK(deFile_write(file, line in runProgram() 695 deFile* file = deFile_create(m_testCtx.logFileName.c_str(), DE_FILEMODE_OPEN|DE_FILEMODE_CREATE|DE_FILEMODE_TRUNCATE|DE_FILEMODE_WRITE); runProgram() local [all...] |
| /third_party/skia/third_party/externals/tint/tools/src/cmd/test-runner/ |
| H A D | main.go | 4 // you may not use this file except in compliance with the License. 239 for i, file := range files { // For each test file... 240 file := filepath.Join(dir, file) 241 flags := parseFlags(file) 244 file: file, 255 file string 271 // Print the table of file [all...] |
| /base/update/packaging_tools/ |
| H A D | create_signed_data.py | 6 # you may not use this file except in compliance with the License. 26 sign one file with private key 27 :param sign_file: path of file ready to be signed 32 with open(sign_file, 'rb') as file: 33 chunk = file.read(BLOCK_SIZE) 36 chunk = file.read(BLOCK_SIZE) 46 get hash signed data of file lists, hash signed data format: 54 :param file_lists: path list of file ready to be signed, list item contains file_path and name_in_signed_data 65 UPDATE_LOGGER.print_log("signed file can't be more than %d" % max_file_num, 69 for file, nam [all...] |
| /kernel/linux/linux-5.10/arch/um/kernel/ |
| H A D | exitcode.c | 34 static int exitcode_proc_open(struct inode *inode, struct file *file) in exitcode_proc_open() argument 36 return single_open(file, exitcode_proc_show, NULL); in exitcode_proc_open() 39 static ssize_t exitcode_proc_write(struct file *file, in exitcode_proc_write() argument
|
| /kernel/linux/linux-6.6/arch/um/kernel/ |
| H A D | exitcode.c | 34 static int exitcode_proc_open(struct inode *inode, struct file *file) in exitcode_proc_open() argument 36 return single_open(file, exitcode_proc_show, NULL); in exitcode_proc_open() 39 static ssize_t exitcode_proc_write(struct file *file, in exitcode_proc_write() argument
|
| /kernel/linux/linux-5.10/drivers/infiniband/hw/hfi1/ |
| H A D | debugfs.h | 6 * This file is provided under a dual BSD/GPLv2 license. When using or 7 * redistributing this file, you may do so under either license. 61 static int _##name##_open(struct inode *inode, struct file *s) \ 83 ssize_t hfi1_seq_read(struct file *file, char __user *buf, size_t size, 85 loff_t hfi1_seq_lseek(struct file *file, loff_t offset, int whence);
|
| /kernel/linux/linux-5.10/sound/core/ |
| H A D | hwdep_compat.c | 7 /* This file is included from hwdep.c */ 39 static long snd_hwdep_ioctl_compat(struct file * file, unsigned int cmd, in snd_hwdep_ioctl_compat() argument 42 struct snd_hwdep *hw = file->private_data; in snd_hwdep_ioctl_compat() 48 return snd_hwdep_ioctl(file, cmd, (unsigned long)argp); in snd_hwdep_ioctl_compat() 53 return hw->ops.ioctl_compat(hw, file, cmd, arg); in snd_hwdep_ioctl_compat()
|
| /kernel/linux/linux-5.10/fs/jfs/ |
| H A D | jfs_debug.c | 26 static int jfs_loglevel_proc_open(struct inode *inode, struct file *file) in jfs_loglevel_proc_open() argument 28 return single_open(file, jfs_loglevel_proc_show, NULL); in jfs_loglevel_proc_open() 31 static ssize_t jfs_loglevel_proc_write(struct file *file, in jfs_loglevel_proc_write() argument
|