Searched refs:stat (Results 101 - 125 of 1622) sorted by path

1234567891011>>

/linux-master/tools/testing/selftests/nsfs/
H A Downer.c10 #include <sys/stat.h>
29 struct stat st1, st2;
68 if (stat(path, &st2))
69 return pr_err("stat");
/linux-master/tools/testing/selftests/powerpc/cache_shape/
H A Dcache_shape.c13 #include <sys/stat.h>
/linux-master/tools/testing/selftests/proc/
H A Dfd-001-lookup.c27 #include <sys/stat.h>
35 struct stat st;
38 memset(&st, 0, sizeof(struct stat));
46 struct stat st;
H A Dfd-002-posix-eq.c21 #include <sys/stat.h>
28 struct stat st0, st1, st2;
H A Dfd-003-kthread.c26 #include <sys/stat.h>
56 fd = openat(dir_fd, "stat", O_RDONLY);
H A Dproc-self-map-files-001.c19 #include <sys/stat.h>
H A Dproc-self-wchan.c17 #include <sys/stat.h>
H A Dsetns-dcache.c32 #include <sys/stat.h>
H A Dsetns-sysvipc.c30 #include <sys/stat.h>
/linux-master/tools/testing/selftests/tmpfs/
H A Dbug-link-o-tmpfile.c21 #include <sys/stat.h>
/linux-master/tools/usb/ffs-aio-example/multibuff/device_app/
H A Daio_multibuff.c38 #include <sys/stat.h>
/linux-master/tools/usb/
H A Dffs-test.c24 #include <sys/stat.h>
/linux-master/tools/usb/usbip/libsrc/
H A Dnames.c12 #include <sys/stat.h>
H A Dsysfs_utils.c3 #include <sys/stat.h>
/linux-master/tools/usb/usbip/src/
H A Dusbipd.c21 #include <sys/stat.h>
/linux-master/Documentation/sphinx/
H A Dkfigure.py100 and os.stat(path1).st_ctime > os.stat(path2).st_ctime)
/linux-master/arch/alpha/boot/tools/
H A Dobjstrip.c23 #include <sys/stat.h>
110 struct stat st;
/linux-master/arch/alpha/kernel/
H A Dosf_sys.c31 #include <linux/stat.h>
356 struct kstat stat; local
359 error = vfs_stat(name, &stat);
363 return linux_to_osf_stat(&stat, buf);
368 struct kstat stat; local
371 error = vfs_lstat(name, &stat);
375 return linux_to_osf_stat(&stat, buf);
380 struct kstat stat; local
383 error = vfs_fstat(fd, &stat);
387 return linux_to_osf_stat(&stat, bu
[all...]
H A Dpci-sysfs.c14 #include <linux/stat.h>
H A Dprocess.c28 #include <linux/stat.h>
/linux-master/arch/arm/kernel/
H A Dsys_arm.c19 #include <linux/stat.h>
H A Dsys_oabi-compat.c121 static long cp_oldabi_stat64(struct kstat *stat, argument
126 tmp.st_dev = huge_encode_dev(stat->dev);
128 tmp.__st_ino = stat->ino;
129 tmp.st_mode = stat->mode;
130 tmp.st_nlink = stat->nlink;
131 tmp.st_uid = from_kuid_munged(current_user_ns(), stat->uid);
132 tmp.st_gid = from_kgid_munged(current_user_ns(), stat->gid);
133 tmp.st_rdev = huge_encode_dev(stat->rdev);
134 tmp.st_size = stat->size;
135 tmp.st_blocks = stat
151 struct kstat stat; local
161 struct kstat stat; local
171 struct kstat stat; local
183 struct kstat stat; local
[all...]
/linux-master/arch/arm/mach-dove/
H A Dirq.c45 u32 stat; local
47 stat = readl_relaxed(dove_irq_base + IRQ_CAUSE_LOW_OFF);
48 stat &= readl_relaxed(dove_irq_base + IRQ_MASK_LOW_OFF);
49 if (stat) {
50 unsigned int hwirq = 1 + __fls(stat);
54 stat = readl_relaxed(dove_irq_base + IRQ_CAUSE_HIGH_OFF);
55 stat &= readl_relaxed(dove_irq_base + IRQ_MASK_HIGH_OFF);
56 if (stat) {
57 unsigned int hwirq = 33 + __fls(stat);
/linux-master/arch/arm/mach-imx/
H A Dtzic.c124 u32 stat; local
131 stat = imx_readl(tzic_base + TZIC_HIPND(i)) &
134 while (stat) {
136 irqofs = fls(stat) - 1;
138 stat &= ~(1 << irqofs);
/linux-master/arch/arm/mach-mv78xx0/
H A Dirq.c29 u32 stat; local
31 stat = readl_relaxed(mv78xx0_irq_base + IRQ_CAUSE_LOW_OFF);
32 stat &= readl_relaxed(mv78xx0_irq_base + IRQ_MASK_LOW_OFF);
33 if (stat) {
34 unsigned int hwirq = __fls(stat);
38 stat = readl_relaxed(mv78xx0_irq_base + IRQ_CAUSE_HIGH_OFF);
39 stat &= readl_relaxed(mv78xx0_irq_base + IRQ_MASK_HIGH_OFF);
40 if (stat) {
41 unsigned int hwirq = 32 + __fls(stat);
45 stat
[all...]

Completed in 279 milliseconds

1234567891011>>