| /OK3568_Linux_fs/kernel/fs/hfsplus/ |
| H A D | dir.c | 75 cnid = be32_to_cpu(entry.file.id); in hfsplus_lookup() 76 if (entry.file.user_info.fdType == in hfsplus_lookup() 78 entry.file.user_info.fdCreator == in hfsplus_lookup() 81 (entry.file.create_date == in hfsplus_lookup() 84 entry.file.create_date == in hfsplus_lookup() 100 be32_to_cpu(entry.file.permissions.dev); in hfsplus_lookup() 130 static int hfsplus_readdir(struct file *file, struct dir_context *ctx) in hfsplus_readdir() argument 132 struct inode *inode = file_inode(file); in hfsplus_readdir() 141 if (file->f_pos >= inode->i_size) in hfsplus_readdir() 159 if (!dir_emit_dot(file, ctx)) in hfsplus_readdir() [all …]
|
| /OK3568_Linux_fs/buildroot/dl/qt5location/git/src/location/maps/ |
| H A D | qgeofiletilecache.cpp | 106 foreach (const QString& file, oldCacheFiles) in init() 107 baseDir.remove(file); in init() 163 QFile file(filename); in loadTiles() 164 if (!file.open(QIODevice::ReadOnly)) in loadTiles() 169 while (!file.atEnd()) { in loadTiles() 170 QByteArray line = file.readLine().trimmed(); in loadTiles() 193 file.close(); in loadTiles() 215 QFile file(filename); in ~QGeoFileTileCache() 216 if (!file.open(QIODevice::WriteOnly)){ in ~QGeoFileTileCache() 229 file.write(filename); in ~QGeoFileTileCache() [all …]
|
| /OK3568_Linux_fs/kernel/drivers/s390/char/ |
| H A D | hmcdrv_dev.c | 56 static int hmcdrv_dev_open(struct inode *inode, struct file *fp); 57 static int hmcdrv_dev_release(struct inode *inode, struct file *fp); 58 static loff_t hmcdrv_dev_seek(struct file *fp, loff_t pos, int whence); 59 static ssize_t hmcdrv_dev_read(struct file *fp, char __user *ubuf, 61 static ssize_t hmcdrv_dev_write(struct file *fp, const char __user *ubuf, 114 static int hmcdrv_dev_open(struct inode *inode, struct file *fp) in hmcdrv_dev_open() 147 static int hmcdrv_dev_release(struct inode *inode, struct file *fp) in hmcdrv_dev_release() 160 static loff_t hmcdrv_dev_seek(struct file *fp, loff_t pos, int whence) in hmcdrv_dev_seek() 221 static ssize_t hmcdrv_dev_read(struct file *fp, char __user *ubuf, in hmcdrv_dev_read() 246 static ssize_t hmcdrv_dev_write(struct file *fp, const char __user *ubuf, in hmcdrv_dev_write()
|
| /OK3568_Linux_fs/u-boot/arch/arm/mach-rockchip/ |
| H A D | resource_hwid.c | 265 struct resource_file *file; in resource_read_hwid_dtb() local 271 file = list_entry(node, struct resource_file, link); in resource_read_hwid_dtb() 272 if (!strstr(file->name, DTB_SUFFIX)) in resource_read_hwid_dtb() 275 if (strstr(file->name, KEY_WORDS_ADC_CTRL) && in resource_read_hwid_dtb() 276 strstr(file->name, KEY_WORDS_ADC_CH) && in resource_read_hwid_dtb() 277 hwid_adc_find_dtb(file->name)) { in resource_read_hwid_dtb() 278 return file; in resource_read_hwid_dtb() 279 } else if (strstr(file->name, KEY_WORDS_GPIO) && in resource_read_hwid_dtb() 280 hwid_gpio_find_dtb(file->name)) { in resource_read_hwid_dtb() 281 return file; in resource_read_hwid_dtb()
|
| /OK3568_Linux_fs/kernel/scripts/kconfig/ |
| H A D | expr.h | 20 struct file { struct 21 struct file *next; argument 22 struct file *parent; argument 201 struct file *file; /* what file was this property defined */ member 262 struct file *file; member 286 extern struct file *file_list; 287 extern struct file *current_file; 288 struct file *lookup_file(const char *name);
|
| /OK3568_Linux_fs/yocto/poky/meta/recipes-devtools/patch/patch/ |
| H A D | 0001-Don-t-leak-temporary-file-on-failed-ed-style-patch.patch | 4 Subject: [PATCH 1/2] Don't leak temporary file on failed ed-style patch 6 Now that we write ed-style patches to a temporary file before we 7 apply them, we need to ensure that the temporary file is removed 11 tmpname. Don't unlink the file directly, instead tag it for removal 64 - pfatal ("Can't create temporary file %s", quotearg (tmpname)); 65 + pfatal ("Can't create temporary file %s", quotearg (TMPEDNAME)); 69 - pfatal ("Can't open stream for file %s", quotearg (tmpname)); 70 + pfatal ("Can't open stream for file %s", quotearg (TMPEDNAME)); 78 - pfatal ("Can't rewind to the beginning of file %s", quotearg (tmpname)); 80 + pfatal ("Can't rewind to the beginning of file %s", quotearg (TMPEDNAME));
|
| /OK3568_Linux_fs/buildroot/support/kconfig/ |
| H A D | expr.h | 20 struct file { struct 21 struct file *next; argument 22 struct file *parent; argument 199 struct file *file; /* what file was this property defined */ member 260 struct file *file; member 284 extern struct file *file_list; 285 extern struct file *current_file; 286 struct file *lookup_file(const char *name);
|
| /OK3568_Linux_fs/kernel/drivers/soc/aspeed/ |
| H A D | aspeed-lpc-ctrl.c | 37 static struct aspeed_lpc_ctrl *file_aspeed_lpc_ctrl(struct file *file) in file_aspeed_lpc_ctrl() argument 39 return container_of(file->private_data, struct aspeed_lpc_ctrl, in file_aspeed_lpc_ctrl() 43 static int aspeed_lpc_ctrl_mmap(struct file *file, struct vm_area_struct *vma) in aspeed_lpc_ctrl_mmap() argument 45 struct aspeed_lpc_ctrl *lpc_ctrl = file_aspeed_lpc_ctrl(file); in aspeed_lpc_ctrl_mmap() 63 static long aspeed_lpc_ctrl_ioctl(struct file *file, unsigned int cmd, in aspeed_lpc_ctrl_ioctl() argument 66 struct aspeed_lpc_ctrl *lpc_ctrl = file_aspeed_lpc_ctrl(file); in aspeed_lpc_ctrl_ioctl() 67 struct device *dev = file->private_data; in aspeed_lpc_ctrl_ioctl()
|
| /OK3568_Linux_fs/u-boot/scripts/kconfig/ |
| H A D | expr.h | 20 struct file { struct 21 struct file *next; argument 22 struct file *parent; argument 156 struct file *file; /* what file was this property defined */ member 179 struct file *file; member 196 extern struct file *file_list; 197 extern struct file *current_file; 198 struct file *lookup_file(const char *name);
|
| /OK3568_Linux_fs/kernel/Documentation/driver-api/iio/ |
| H A D | triggers.rst | 18 a specific file in sysfs). A trigger may initiate data capture for a number of 26 * :file:`/sys/bus/iio/devices/trigger{Y}/*`, this file is created once an 32 * :file:`name`, trigger name that can be later used for association with a 34 * :file:`sampling_frequency`, some timer based triggers use this attribute to 37 * :file:`/sys/bus/iio/devices/iio:device{X}/trigger/*`, this directory is 40 :file:`current_trigger` file. 70 * :file:`set_trigger_state`, switch the trigger on/off on demand. 71 * :file:`validate_device`, function to validate the device when the current
|
| /OK3568_Linux_fs/kernel/Documentation/ABI/testing/ |
| H A D | sysfs-platform-dell-laptop | 7 This file allows to control the automatic keyboard 9 light sensor. Write 1 to this file to enable the auto 18 This file allows to specifiy the on/off threshold value, 27 This file allows to control the input triggers that 30 Read the file to see the triggers available. The ones 34 this file. To disable a trigger, write its name preceded 53 This file allows to specify the interval after which the 59 To configure the timeout, write to this file a value along 67 Note that when this file is read, the returned value might be 73 an invalid timeout is written to this file.
|
| H A D | sysfs-driver-toshiba_acpi | 5 Description: This file controls the keyboard backlight operation mode, valid 13 Note that from kernel 3.16 onwards this file accepts all listed 24 Description: This file controls the timeout of the keyboard backlight 37 Description: This file shows the absolute position of the built-in 56 Description: This file shows the supported keyboard backlight modes 72 Description: This file shows the current keyboard backlight type, 83 Description: This file controls the USB Sleep & Charge charging mode, which 91 Note that from kernel 4.1 onwards this file accepts all listed 102 Description: This file controls the USB Sleep Functions under battery, and 120 Description: This file controls the USB Rapid Charge state, which can be: [all …]
|
| /OK3568_Linux_fs/kernel/fs/exfat/ |
| H A D | dir.c | 132 num_ext = ep->dentry.file.num_ext; in exfat_readdir() 133 dir_entry->attr = le16_to_cpu(ep->dentry.file.attr); in exfat_readdir() 135 ep->dentry.file.create_tz, in exfat_readdir() 136 ep->dentry.file.create_time, in exfat_readdir() 137 ep->dentry.file.create_date, in exfat_readdir() 138 ep->dentry.file.create_time_cs); in exfat_readdir() 140 ep->dentry.file.modify_tz, in exfat_readdir() 141 ep->dentry.file.modify_time, in exfat_readdir() 142 ep->dentry.file.modify_date, in exfat_readdir() 143 ep->dentry.file.modify_time_cs); in exfat_readdir() [all …]
|
| /OK3568_Linux_fs/yocto/poky/meta/recipes-devtools/python/ |
| H A D | python3_3.10.9.bb | 7 LIC_FILES_CHKSUM = "file://LICENSE;md5=a1822df8d0f068628ca6090aedc5bfc8" 10 file://run-ptest \ 11 file://create_manifest3.py \ 12 file://get_module_deps3.py \ 13 file://python3-manifest.json \ 14 file://check_build_completeness.py \ 15 file://reformat_sysconfig.py \ 16 file://cgi_py.patch \ 17 file://0001-Do-not-add-usr-lib-termcap-to-linker-flags-to-avoid-.patch \ 18 … ${@bb.utils.contains('PACKAGECONFIG', 'tk', '', 'file://avoid_warning_about_tkinter.patch', d)} \ [all …]
|
| /OK3568_Linux_fs/kernel/kernel/ |
| H A D | pid.c | 530 if (!f.file) in pidfd_get_pid() 533 pid = pidfd_pid(f.file); in pidfd_get_pid() 536 *flags = f.file->f_flags; in pidfd_get_pid() 627 static struct file *__pidfd_fget(struct task_struct *task, int fd) in __pidfd_fget() 629 struct file *file; in __pidfd_fget() local 637 file = fget_task(task, fd); in __pidfd_fget() 639 file = ERR_PTR(-EPERM); in __pidfd_fget() 643 return file ?: ERR_PTR(-EBADF); in __pidfd_fget() 649 struct file *file; in pidfd_getfd() local 656 file = __pidfd_fget(task, fd); in pidfd_getfd() [all …]
|
| /OK3568_Linux_fs/buildroot/board/zynqmp/patches/uboot/ |
| H A D | 0004-arm-arm64-zynq-zynqmp-pass-the-PS-init-file-as-a-kco.patch | 4 Subject: [PATCH] arm/arm64: zynq/zynqmp: pass the PS init file as a kconfig 8 ZynqMP (PS init for short). The current logic to locate this file for 11 1. if a board-specific file exists in 16 In the latter case the file does not exist in the U-Boot sources and 20 board-specific file is _not_ found (and used) requires some trickery 29 * any buildsystem must add a command to copy the PS init file binary 33 file in kconfig variable XILINX_PS_INIT_FILE. It can be an absolute 35 user-specified file will always be used without being copied 43 U-Boot the PS init file. 47 - PS init file: from XILINX_PS_INIT_FILE (absolute, relative path, [all …]
|
| /OK3568_Linux_fs/kernel/drivers/watchdog/ |
| H A D | rc32434_wdt.c | 137 static int rc32434_wdt_open(struct inode *inode, struct file *file) in rc32434_wdt_open() argument 148 return stream_open(inode, file); in rc32434_wdt_open() 151 static int rc32434_wdt_release(struct inode *inode, struct file *file) in rc32434_wdt_release() argument 164 static ssize_t rc32434_wdt_write(struct file *file, const char *data, in rc32434_wdt_write() argument 188 static long rc32434_wdt_ioctl(struct file *file, unsigned int cmd, in rc32434_wdt_ioctl() argument
|
| H A D | w83877f_wdt.c | 186 static ssize_t fop_write(struct file *file, const char __user *buf, in fop_write() argument 215 static int fop_open(struct inode *inode, struct file *file) in fop_open() argument 223 return stream_open(inode, file); in fop_open() 226 static int fop_close(struct inode *inode, struct file *file) in fop_close() argument 239 static long fop_ioctl(struct file *file, unsigned int cmd, unsigned long arg) in fop_ioctl() argument
|
| H A D | sbc60xxwdt.c | 164 static ssize_t fop_write(struct file *file, const char __user *buf, in fop_write() argument 194 static int fop_open(struct inode *inode, struct file *file) in fop_open() argument 205 return stream_open(inode, file); in fop_open() 208 static int fop_close(struct inode *inode, struct file *file) in fop_close() argument 221 static long fop_ioctl(struct file *file, unsigned int cmd, unsigned long arg) in fop_ioctl() argument
|
| H A D | mv64x60_wdt.c | 124 static int mv64x60_wdt_open(struct inode *inode, struct file *file) in mv64x60_wdt_open() argument 134 return stream_open(inode, file); in mv64x60_wdt_open() 137 static int mv64x60_wdt_release(struct inode *inode, struct file *file) in mv64x60_wdt_release() argument 152 static ssize_t mv64x60_wdt_write(struct file *file, const char __user *data, in mv64x60_wdt_write() argument 175 static long mv64x60_wdt_ioctl(struct file *file, in mv64x60_wdt_ioctl() argument
|
| H A D | at91rm9200_wdt.c | 107 static int at91_wdt_open(struct inode *inode, struct file *file) in at91_wdt_open() argument 113 return stream_open(inode, file); in at91_wdt_open() 121 static int at91_wdt_close(struct inode *inode, struct file *file) in at91_wdt_close() argument 159 static long at91_wdt_ioctl(struct file *file, in at91_wdt_ioctl() argument 203 static ssize_t at91_wdt_write(struct file *file, const char *data, in at91_wdt_write() argument
|
| H A D | ath79_wdt.c | 123 static int ath79_wdt_open(struct inode *inode, struct file *file) in ath79_wdt_open() argument 131 return stream_open(inode, file); in ath79_wdt_open() 134 static int ath79_wdt_release(struct inode *inode, struct file *file) in ath79_wdt_release() argument 149 static ssize_t ath79_wdt_write(struct file *file, const char *data, in ath79_wdt_write() argument 183 static long ath79_wdt_ioctl(struct file *file, unsigned int cmd, in ath79_wdt_ioctl() argument
|
| H A D | rdc321x_wdt.c | 126 static int rdc321x_wdt_open(struct inode *inode, struct file *file) in rdc321x_wdt_open() argument 131 return stream_open(inode, file); in rdc321x_wdt_open() 134 static int rdc321x_wdt_release(struct inode *inode, struct file *file) in rdc321x_wdt_release() argument 140 static long rdc321x_wdt_ioctl(struct file *file, unsigned int cmd, in rdc321x_wdt_ioctl() argument 187 static ssize_t rdc321x_wdt_write(struct file *file, const char __user *buf, in rdc321x_wdt_write() argument
|
| /OK3568_Linux_fs/u-boot/doc/ |
| H A D | README.mpc85xx-sd-spi-boot | 6 SD/SPI images to a binary file for writing later. 8 When booting from an SD card/MMC, boot_format puts the configuration file and 32 For building SD images by writing directly to a file system on SD media: 36 Where $config is the included config.dat file for your platform and $device 39 For build binary images directly a local file: 41 $ boot_format $config u-boot.bin -spi $file 43 Where $file is the target file. Also keep in mind the u-boot.bin file needs
|
| /OK3568_Linux_fs/yocto/poky/meta/recipes-graphics/mesa/ |
| H A D | mesa-demos_8.4.0.bb | 9 LIC_FILES_CHKSUM = "file://src/xdemos/glxgears.c;beginline=1;endline=20;md5=914225785450eff644a86c8… 10 … file://src/xdemos/glxdemo.c;beginline=1;endline=8;md5=b01d5ab1aee94d35b7efaa2ef48e1a06" 13 file://0001-mesa-demos-Add-missing-data-files.patch \ 14 file://0003-configure-Allow-to-disable-demos-which-require-GLEW-.patch \ 15 file://0004-Use-DEMOS_DATA_DIR-to-locate-data-files.patch \ 16 file://0007-Install-few-more-test-programs.patch \ 17 file://0008-glsl-perf-Add-few-missing-.glsl-.vert-.frag-files-to.patch \ 18 file://0009-glsl-perf-Install-.glsl-.vert-.frag-files.patch \ 19 file://0012-mesa-demos-OpenVG-demos-with-single-frame-need-eglSw.patch \
|