| /OK3568_Linux_fs/kernel/drivers/char/ |
| H A D | tb0219.c | 149 static ssize_t tanbac_tb0219_read(struct file *file, char __user *buf, size_t len, in tanbac_tb0219_read() argument 155 minor = iminor(file_inode(file)); in tanbac_tb0219_read() 182 static ssize_t tanbac_tb0219_write(struct file *file, const char __user *data, in tanbac_tb0219_write() argument 191 minor = iminor(file_inode(file)); in tanbac_tb0219_write() 223 static int tanbac_tb0219_open(struct inode *inode, struct file *file) in tanbac_tb0219_open() argument 233 return stream_open(inode, file); in tanbac_tb0219_open() 241 static int tanbac_tb0219_release(struct inode *inode, struct file *file) in tanbac_tb0219_release() argument
|
| H A D | hpet.c | 257 static int hpet_open(struct inode *inode, struct file *file) in hpet_open() argument 263 if (file->f_mode & FMODE_WRITE) in hpet_open() 284 file->private_data = devp; in hpet_open() 296 hpet_read(struct file *file, char __user *buf, size_t count, loff_t * ppos) in hpet_read() argument 303 devp = file->private_data; in hpet_read() 322 else if (file->f_flags & O_NONBLOCK) { in hpet_read() 342 static __poll_t hpet_poll(struct file *file, poll_table * wait) in hpet_poll() argument 347 devp = file->private_data; in hpet_poll() 352 poll_wait(file, &devp->hd_waitqueue, wait); in hpet_poll() 379 static int hpet_mmap(struct file *file, struct vm_area_struct *vma) in hpet_mmap() argument [all …]
|
| /OK3568_Linux_fs/kernel/Documentation/ABI/testing/ |
| H A D | sysfs-class-wakeup | 12 This file contains the name of the wakeup source. 18 This file contains the number of times the wakeup source was 25 This file contains the number of signaled wakeup events 32 This file contains the number of times the wakeup source might 39 This file contains the number of times the wakeup source's 46 This file contains the amount of time the wakeup source has 48 source is not active, this file contains '0'. 54 This file contains the total amount of time this wakeup source 61 This file contains the maximum amount of time this wakeup 68 This file contains the monotonic clock time when the wakeup [all …]
|
| /OK3568_Linux_fs/kernel/fs/ |
| H A D | signalfd.c | 45 static int signalfd_release(struct inode *inode, struct file *file) in signalfd_release() argument 47 kfree(file->private_data); in signalfd_release() 51 static __poll_t signalfd_poll(struct file *file, poll_table *wait) in signalfd_poll() argument 53 struct signalfd_ctx *ctx = file->private_data; in signalfd_poll() 56 poll_wait(file, ¤t->sighand->signalfd_wqh, wait); in signalfd_poll() 202 static ssize_t signalfd_read(struct file *file, char __user *buf, size_t count, in signalfd_read() argument 205 struct signalfd_ctx *ctx = file->private_data; in signalfd_read() 207 int nonblock = file->f_flags & O_NONBLOCK; in signalfd_read() 232 static void signalfd_show_fdinfo(struct seq_file *m, struct file *f) in signalfd_show_fdinfo() 284 if (!f.file) in do_signalfd4() [all …]
|
| /OK3568_Linux_fs/yocto/meta-openembedded/meta-networking/recipes-daemons/squid/ |
| H A D | squid_4.15.bb | 16 file://Set-up-for-cross-compilation.patch \ 17 file://Skip-AC_RUN_IFELSE-tests.patch \ 18 file://Fix-flawed-dynamic-ldb-link-test-in-configure.patch \ 19 file://squid-use-serial-tests-config-needed-by-ptest.patch \ 20 file://run-ptest \ 21 file://volatiles.03_squid \ 22 file://set_sysroot_patch.patch \ 23 file://squid-don-t-do-squid-conf-tests-at-build-time.patch \ 24 file://0001-configure-Check-for-Wno-error-format-truncation-comp.patch \ 25 file://0001-tools.cc-fixed-unused-result-warning.patch \ [all …]
|
| /OK3568_Linux_fs/kernel/drivers/staging/wfx/ |
| H A D | debug.c | 205 static ssize_t wfx_send_pds_write(struct file *file, in wfx_send_pds_write() argument 209 struct wfx_dev *wdev = file->private_data; in wfx_send_pds_write() 240 static ssize_t wfx_send_hif_msg_write(struct file *file, in wfx_send_hif_msg_write() argument 244 struct dbgfs_hif_msg *context = file->private_data; in wfx_send_hif_msg_write() 274 static ssize_t wfx_send_hif_msg_read(struct file *file, char __user *user_buf, in wfx_send_hif_msg_read() argument 277 struct dbgfs_hif_msg *context = file->private_data; in wfx_send_hif_msg_read() 295 static int wfx_send_hif_msg_open(struct inode *inode, struct file *file) in wfx_send_hif_msg_open() argument 303 file->private_data = context; in wfx_send_hif_msg_open() 307 static int wfx_send_hif_msg_release(struct inode *inode, struct file *file) in wfx_send_hif_msg_release() argument 309 struct dbgfs_hif_msg *context = file->private_data; in wfx_send_hif_msg_release()
|
| /OK3568_Linux_fs/kernel/drivers/gpu/arm/bifrost/ |
| H A D | mali_kbase_debug_mem_view.c | 231 static int debug_mem_open(struct inode *i, struct file *file) in debug_mem_open() argument 243 if (file->f_mode & FMODE_WRITE) { in debug_mem_open() 244 file->private_data = kctx; in debug_mem_open() 248 ret = seq_open(file, &ops); in debug_mem_open() 300 ((struct seq_file *)file->private_data)->private = mem_data; in debug_mem_open() 317 seq_release(i, file); in debug_mem_open() 324 static int debug_mem_release(struct inode *inode, struct file *file) in debug_mem_release() argument 331 if (!(file->f_mode & FMODE_WRITE)) { in debug_mem_release() 332 struct seq_file *sfile = file->private_data; in debug_mem_release() 336 seq_release(inode, file); in debug_mem_release() [all …]
|
| /OK3568_Linux_fs/kernel/arch/x86/ia32/ |
| H A D | ia32_aout.c | 40 static int load_aout_library(struct file *); 115 i_size_read(file_inode(bprm->file)) < in load_aout_binary() 169 error = read_code(bprm->file, text_addr, 32, in load_aout_binary() 188 bprm->file); in load_aout_binary() 193 if (!bprm->file->f_op->mmap || (fd_offset & ~PAGE_MASK) != 0) { in load_aout_binary() 198 read_code(bprm->file, N_TXTADDR(ex), fd_offset, in load_aout_binary() 203 error = vm_mmap(bprm->file, N_TXTADDR(ex), ex.a_text, in load_aout_binary() 212 error = vm_mmap(bprm->file, N_DATADDR(ex), ex.a_data, in load_aout_binary() 245 static int load_aout_library(struct file *file) in load_aout_library() argument 253 error = kernel_read(file, &ex, sizeof(ex), &pos); in load_aout_library() [all …]
|
| /OK3568_Linux_fs/kernel/arch/mips/kernel/ |
| H A D | rtlx.c | 329 static int file_open(struct inode *inode, struct file *filp) in file_open() 334 static int file_release(struct inode *inode, struct file *filp) in file_release() 339 static __poll_t file_poll(struct file *file, poll_table *wait) in file_poll() argument 341 int minor = iminor(file_inode(file)); in file_poll() 344 poll_wait(file, &channel_wqs[minor].rt_queue, wait); in file_poll() 345 poll_wait(file, &channel_wqs[minor].lx_queue, wait); in file_poll() 361 static ssize_t file_read(struct file *file, char __user *buffer, size_t count, in file_read() argument 364 int minor = iminor(file_inode(file)); in file_read() 367 if (!rtlx_read_poll(minor, (file->f_flags & O_NONBLOCK) ? 0 : 1)) in file_read() 373 static ssize_t file_write(struct file *file, const char __user *buffer, in file_write() argument [all …]
|
| /OK3568_Linux_fs/buildroot/dl/stressapptest/git/src/ |
| H A D | stressapptest_config.h.in | 6 /* Define to 1 if you have the <arpa/inet.h> header file. */ 13 /* Define to 1 if you have the <dirent.h> header file, and it defines `DIR'. 20 /* Define to 1 if you have the <fcntl.h> header file. */ 29 /* Define to 1 if you have the <inttypes.h> header file. */ 32 /* Define to 1 if you have the <libaio.h> header file. */ 35 /* Define to 1 if you have the <memory.h> header file. */ 47 /* Define to 1 if you have the <ndir.h> header file, and it defines `DIR'. */ 50 /* Define to 1 if you have the <netdb.h> header file. */ 59 /* Define to 1 if you have the <pthread.h> header file. */ 77 /* Define to 1 if you have the <stdint.h> header file. */ [all …]
|
| /OK3568_Linux_fs/kernel/drivers/target/ |
| H A D | target_core_file.c | 92 struct file *file; in fd_configure_device() local 121 file = filp_open(fd_dev->fd_dev_name, flags, 0600); in fd_configure_device() 122 if (IS_ERR(file)) { in fd_configure_device() 124 ret = PTR_ERR(file); in fd_configure_device() 127 fd_dev->fd_file = file; in fd_configure_device() 134 inode = file->f_mapping->host; in fd_configure_device() 144 dev_size = (i_size_read(file->f_mapping->host) - in fd_configure_device() 267 struct file *file = fd_dev->fd_file; in fd_execute_rw_aio() local 298 aio_cmd->iocb.ki_filp = file; in fd_execute_rw_aio() 306 ret = call_write_iter(file, &aio_cmd->iocb, &iter); in fd_execute_rw_aio() [all …]
|
| /OK3568_Linux_fs/kernel/Documentation/filesystems/ |
| H A D | hpfs.rst | 14 Chris Smith, 1993, original read-only HPFS, some code and hpfs structures file 34 text file than to damage binary file). If you want to change that list, 37 computer decide whether file is text or binary. For example, DJGPP 44 used for debugging (for example it checks if file is allocated in 64 are case sensitive, so for example when you create a file FOO, you can use 68 bootsect.s. When searching for file thats name has characters >= 128, codepages 70 OS/2 ignores dots and spaces at the end of file name, so this driver does as 71 well. If you create 'a. ...', the file 'a' will be created, but you can still 78 On HPFS partitions, OS/2 can associate to each file a special information called 81 variable length. OS/2 stores window and icon positions and file types there. So [all …]
|
| /OK3568_Linux_fs/kernel/drivers/media/pci/meye/ |
| H A D | meye.c | 834 static int meye_open(struct file *file) in meye_open() argument 853 return v4l2_fh_open(file); in meye_open() 856 static int meye_release(struct file *file) in meye_release() argument 861 return v4l2_fh_release(file); in meye_release() 932 static int meyeioc_sync(struct file *file, void *fh, int *i) in meyeioc_sync() argument 946 if (file->f_flags & O_NONBLOCK) { in meyeioc_sync() 1010 static int vidioc_querycap(struct file *file, void *fh, in vidioc_querycap() argument 1019 static int vidioc_enum_input(struct file *file, void *fh, struct v4l2_input *i) in vidioc_enum_input() argument 1030 static int vidioc_g_input(struct file *file, void *fh, unsigned int *i) in vidioc_g_input() argument 1036 static int vidioc_s_input(struct file *file, void *fh, unsigned int i) in vidioc_s_input() argument [all …]
|
| /OK3568_Linux_fs/kernel/drivers/media/test-drivers/vivid/ |
| H A D | vivid-meta-out.h | 16 int vidioc_enum_fmt_meta_out(struct file *file, void *priv, 18 int vidioc_g_fmt_meta_out(struct file *file, void *priv, 20 int vidioc_s_fmt_meta_out(struct file *file, void *priv,
|
| /OK3568_Linux_fs/external/mpp/ |
| H A D | readme.txt | 9 1. header file arrange rule 11 b. module internal header file should be put along with the implement file. 12 c. header file should not contain any relative path or absolute path, all 18 3. header file include order 61 |----- inc header file for external usage, including 124 | | | |----- h264d generate register file from H.264 syntax info 126 | | | |----- h265d generate register file from H.265 syntax info 128 | | | |----- vp9d generate register file from vp9 syntax info 132 | | |----- h263d generate register file from H.263 syntax info 134 | | |----- h264d generate register file from H.264 syntax info [all …]
|
| /OK3568_Linux_fs/kernel/drivers/media/radio/ |
| H A D | radio-wl1273.c | 78 struct file *owner; 1028 static ssize_t wl1273_fm_fops_write(struct file *file, const char __user *buf, in wl1273_fm_fops_write() argument 1031 struct wl1273_device *radio = video_get_drvdata(video_devdata(file)); in wl1273_fm_fops_write() 1052 if (radio->owner && radio->owner != file) { in wl1273_fm_fops_write() 1056 radio->owner = file; in wl1273_fm_fops_write() 1084 static __poll_t wl1273_fm_fops_poll(struct file *file, in wl1273_fm_fops_poll() argument 1087 struct wl1273_device *radio = video_get_drvdata(video_devdata(file)); in wl1273_fm_fops_poll() 1090 if (radio->owner && radio->owner != file) in wl1273_fm_fops_poll() 1093 radio->owner = file; in wl1273_fm_fops_poll() 1096 poll_wait(file, &radio->read_queue, pts); in wl1273_fm_fops_poll() [all …]
|
| /OK3568_Linux_fs/external/rockit/mpi/example/mod/ |
| H A D | test_mpi_adec.cpp | 131 FILE *file = RK_NULL; in send_stream_thread() local 141 file = fopen(params->srcFilePath, "rb"); in send_stream_thread() 142 if (file == RK_NULL) { in send_stream_thread() 151 srcSize = fread(srcData, 1, 1024, file); in send_stream_thread() 184 if (file) { in send_stream_thread() 185 fclose(file); in send_stream_thread() 186 file = RK_NULL; in send_stream_thread() 194 FILE *file = RK_NULL; in receive_data_thread() local 207 file = fopen(params->dstFilePath, "wb+"); in receive_data_thread() 208 if (file == RK_NULL) { in receive_data_thread() [all …]
|
| H A D | test_mpi_aenc.cpp | 154 FILE *file = RK_NULL; in send_frame_thread() local 162 file = fopen(params->srcFilePath, "rb"); in send_frame_thread() 163 if (file == RK_NULL) { in send_frame_thread() 172 srcSize = fread(srcData, 1, frmLen, file); in send_frame_thread() 203 if (file) { in send_frame_thread() 204 fclose(file); in send_frame_thread() 205 file = RK_NULL; in send_frame_thread() 213 FILE *file = RK_NULL; in receive_stream_thread() local 221 file = fopen(params->dstFilePath, "wb+"); in receive_stream_thread() 222 if (file == RK_NULL) { in receive_stream_thread() [all …]
|
| /OK3568_Linux_fs/kernel/drivers/watchdog/ |
| H A D | wdt_pci.c | 353 static ssize_t wdtpci_write(struct file *file, const char __user *buf, in wdtpci_write() argument 387 static long wdtpci_ioctl(struct file *file, unsigned int cmd, in wdtpci_ioctl() argument 449 static int wdtpci_open(struct inode *inode, struct file *file) in wdtpci_open() argument 460 return stream_open(inode, file); in wdtpci_open() 475 static int wdtpci_release(struct inode *inode, struct file *file) in wdtpci_release() argument 499 static ssize_t wdtpci_temp_read(struct file *file, char __user *buf, in wdtpci_temp_read() argument 521 static int wdtpci_temp_open(struct inode *inode, struct file *file) in wdtpci_temp_open() argument 523 return stream_open(inode, file); in wdtpci_temp_open() 534 static int wdtpci_temp_release(struct inode *inode, struct file *file) in wdtpci_temp_release() argument
|
| /OK3568_Linux_fs/kernel/sound/core/ |
| H A D | timer.c | 1487 static int snd_timer_user_open(struct inode *inode, struct file *file) in snd_timer_user_open() argument 1492 err = stream_open(inode, file); in snd_timer_user_open() 1507 file->private_data = tu; in snd_timer_user_open() 1511 static int snd_timer_user_release(struct inode *inode, struct file *file) in snd_timer_user_release() argument 1515 if (file->private_data) { in snd_timer_user_release() 1516 tu = file->private_data; in snd_timer_user_release() 1517 file->private_data = NULL; in snd_timer_user_release() 1641 static int snd_timer_user_ginfo(struct file *file, in snd_timer_user_ginfo() argument 1708 static int snd_timer_user_gparams(struct file *file, in snd_timer_user_gparams() argument 1718 static int snd_timer_user_gstatus(struct file *file, in snd_timer_user_gstatus() argument [all …]
|
| /OK3568_Linux_fs/yocto/meta-openembedded/meta-oe/recipes-graphics/directfb/ |
| H A D | directfb.inc | 9 LIC_FILES_CHKSUM = "file://COPYING;md5=dcf3c825659e82539645da41a7908589" 15 file://configurefix.patch \ 16 file://fusion.patch \ 17 file://bashism.patch \ 18 file://0001-gfx-direct-Aboid-usng-VLAs-and-printf-formats.patch \ 19 file://compar_fn_t.patch \ 20 file://union-sigval.patch \ 21 file://use-PTHREAD_MUTEX_RECURSIVE.patch \ 22 file://fix-client-gfx_state-initialisation.patch \ 23 file://fix-tslib-version-check.patch \ [all …]
|
| /OK3568_Linux_fs/kernel/fs/gfs2/ |
| H A D | util.h | 40 const char *function, char *file, unsigned int line, 62 const char *function, char *file, unsigned int line); 74 const char *function, char *file, unsigned int line); 81 const char *function, char *file, unsigned int line); 88 const char *function, char *file, unsigned int line); 96 char *file, unsigned int line); 114 char *file, unsigned int line); 120 char *file, unsigned int line) in gfs2_metatype_check_i() argument 127 file, line); in gfs2_metatype_check_i() 130 file, line); in gfs2_metatype_check_i() [all …]
|
| /OK3568_Linux_fs/kernel/drivers/mtd/ubi/ |
| H A D | cdev.c | 92 static int vol_cdev_open(struct inode *inode, struct file *file) in vol_cdev_open() argument 101 if (file->f_mode & FMODE_WRITE) in vol_cdev_open() 113 file->private_data = desc; in vol_cdev_open() 117 static int vol_cdev_release(struct inode *inode, struct file *file) in vol_cdev_release() argument 119 struct ubi_volume_desc *desc = file->private_data; in vol_cdev_release() 143 static loff_t vol_cdev_llseek(struct file *file, loff_t offset, int origin) in vol_cdev_llseek() argument 145 struct ubi_volume_desc *desc = file->private_data; in vol_cdev_llseek() 154 return fixed_size_llseek(file, offset, origin, vol->used_bytes); in vol_cdev_llseek() 157 static int vol_cdev_fsync(struct file *file, loff_t start, loff_t end, in vol_cdev_fsync() argument 160 struct ubi_volume_desc *desc = file->private_data; in vol_cdev_fsync() [all …]
|
| /OK3568_Linux_fs/kernel/kernel/ |
| H A D | usermode_driver.c | 16 struct file *file; in blob_to_mnt() local 29 file = file_open_root(mnt->mnt_root, mnt, name, O_CREAT | O_WRONLY, 0700); in blob_to_mnt() 30 if (IS_ERR(file)) { in blob_to_mnt() 32 return ERR_CAST(file); in blob_to_mnt() 35 written = kernel_write(file, data, len, &pos); in blob_to_mnt() 40 filp_close(file, NULL); in blob_to_mnt() 45 fput(file); in blob_to_mnt() 99 struct file *from_umh[2]; in umd_setup() 100 struct file *to_umh[2]; in umd_setup()
|
| /OK3568_Linux_fs/yocto/meta-openembedded/meta-oe/recipes-extended/redis/ |
| H A D | redis_6.2.11.bb | 6 LIC_FILES_CHKSUM = "file://COPYING;md5=8ffdd6c926faaece928cf9d9640132d2" 10 file://redis.conf \ 11 file://init-redis-server \ 12 file://redis.service \ 13 file://hiredis-use-default-CC-if-it-is-set.patch \ 14 file://lua-update-Makefile-to-use-environment-build-setting.patch \ 15 file://oe-use-libc-malloc.patch \ 16 file://0001-src-Do-not-reset-FINAL_LIBS.patch \ 17 file://GNU_SOURCE.patch \ 18 file://0006-Define-correct-gregs-for-RISCV32.patch \
|