Searched refs:stat (Results 126 - 150 of 3110) sorted by relevance

1234567891011>>

/external/ltp/tools/pounder21/
H A Dtimed_loop.c62 int secs, stat; local
142 stat = execvp(argv[4], &argv[4]);
144 stat = execvp(argv[4], &argv[4]);
150 stat = execvp(argv[2], &argv[2]);
152 stat = execvp(argv[2], &argv[2]);
165 if (waitpid(pid, &stat, 0) != pid) {
170 if (WIFSIGNALED(stat)) {
172 progname, fail_msg, WTERMSIG(stat));
175 res = WEXITSTATUS(stat);
/external/ltp/utils/ffsb-6.0-rc2/
H A Ddepcomp70 stat=$?
71 if test $stat -eq 0; then :
74 exit $stat
93 stat=$?
94 if test $stat -eq 0; then :
97 exit $stat
135 stat=$?
136 if test $stat -eq 0; then :
139 exit $stat
187 stat
[all...]
/external/squashfs-tools/squashfs-tools/
H A Dandroid.c25 #include <sys/stat.h>
46 void android_fs_config(fs_config_func_t fs_config_func, const char *path, struct stat *stat, argument
49 mode_t stat_file_type_mask = stat->st_mode & S_IFMT;
52 fs_config_func(path, S_ISDIR(stat->st_mode), target_out_path,
54 stat->st_uid = uid;
55 stat->st_gid = gid;
56 stat->st_mode = mode;
58 stat->st_mode |= stat_file_type_mask;
/external/clang/test/SemaCXX/
H A Dwarn-tautological-undefined-compare.cpp41 static int &stat();
42 // expected-note@-1 4{{'stat' returns a reference}}
58 if (&B::stat() == 0) {}
60 if (&(B::stat()) == 0) {}
63 if (&B::stat() != 0) {}
65 if (&(B::stat()) != 0) {}
H A Dextern-c.cpp143 struct stat {}; // expected-warning{{empty struct has size 0 in C, size 1 in C++}} struct
144 void stat(struct stat);
148 void stat(struct ::stat);
151 int stat(int *p);
/external/python/cpython2/Lib/distutils/
H A Ddep_util.py10 from stat import ST_MTIME
31 return os.stat(source)[ST_MTIME] > os.stat(target)[ST_MTIME]
59 default ("error") is to blow up with an OSError from inside 'stat()';
75 target_mtime = os.stat(target)[ST_MTIME]
79 if missing == 'error': # blow up when we stat() the file
86 if os.stat(source)[ST_MTIME] > target_mtime:
/external/toybox/toys/posix/
H A Dtime.c35 int stat; local
39 wait4(pid, &stat, 0, &ru);
62 toys.exitval = WIFEXITED(stat) ? WEXITSTATUS(stat) : WTERMSIG(stat);
H A Dpwd.c30 struct stat st1, st2;
44 if (stat(pwd, &st1) || stat(PWD, &st2) || st1.st_ino != st2.st_ino ||
/external/autotest/client/tests/cyclictest/src/
H A Dcyclictest.c27 #include <sys/stat.h>
207 struct thread_stat *stat = par->stats; local
229 stat->tid = gettid();
238 sigev.sigev_notify_thread_id = stat->tid;
270 stat->threadstarted++;
316 if (diff < stat->min)
317 stat->min = diff;
318 if (diff > stat->max)
319 stat->max = diff;
320 stat
499 struct thread_stat *stat = par->stats; local
525 struct thread_stat *stat; local
[all...]
/external/python/cpython2/Lib/test/
H A Dtest_stat.py4 import stat namespace
65 st_mode = os.stat(fname).st_mode
70 fmt = getattr(stat, "S_IF" + name.lstrip("F"))
71 self.assertEqual(stat.S_IFMT(mode), fmt)
75 func = getattr(stat, funcname, None)
92 self.assertEqual(stat.S_IMODE(st_mode),
93 stat.S_IRWXU)
98 self.assertEqual(stat.S_IMODE(st_mode),
99 stat.S_IRWXG)
104 self.assertEqual(stat
[all...]
/external/apache-commons-math/src/main/java/org/apache/commons/math/stat/descriptive/
H A DSynchronizedDescriptiveStatistics.java17 package org.apache.commons.math.stat.descriptive;
21 * {@link org.apache.commons.math.stat.descriptive.DescriptiveStatistics} that
73 public synchronized double apply(UnivariateStatistic stat) { argument
74 return super.apply(stat);
H A DStatisticalSummaryValues.java17 package org.apache.commons.math.stat.descriptive;
139 StatisticalSummaryValues stat = (StatisticalSummaryValues) object;
140 return MathUtils.equalsIncludingNaN(stat.getMax(), getMax()) &&
141 MathUtils.equalsIncludingNaN(stat.getMean(), getMean()) &&
142 MathUtils.equalsIncludingNaN(stat.getMin(), getMin()) &&
143 MathUtils.equalsIncludingNaN(stat.getN(), getN()) &&
144 MathUtils.equalsIncludingNaN(stat.getSum(), getSum()) &&
145 MathUtils.equalsIncludingNaN(stat.getVariance(), getVariance());
/external/ipsec-tools/src/racoon/
H A Dsafefile.c37 #include <sys/stat.h>
52 struct stat s;
62 if (stat(path, &s) != 0)
/external/libese/third_party/NXPNFC_P61_JCOP_Kit/src/
H A DAlaLib.cpp37 BOOLEAN stat = FALSE; local
51 stat = initialize (channel);
52 if(stat != TRUE)
66 stat = FALSE;
71 stat = TRUE;
77 stat = FALSE;
80 return (stat == true)?STATUS_OK:STATUS_FAILED;
131 BOOLEAN stat = FALSE; local
141 stat = channel->close(alaHandle);
142 if(stat !
[all...]
/external/ltp/testcases/kernel/fs/ext4-new-features/ext4-nsec-timestamps/
H A Dext4_file_time.c24 #include <sys/stat.h>
35 struct stat st;
42 if (stat(argv[1], &st) != 0) {
43 perror("stat failed");
/external/ltp/testcases/kernel/syscalls/rmdir/
H A Drmdir01.c61 #include <sys/stat.h>
81 struct stat buf;
117 if (stat(tstdir, &buf) != -1) {
/external/ltp/testcases/kernel/syscalls/stat/
H A Dstat05.c42 * TEST TITLE : Basic test for stat(2)
62 * 1.) stat(2) returns...(See Description)
90 * This is a Phase I test for the stat(2) system call. It is intended
93 * stat(2).
114 #include <sys/stat.h>
128 struct stat statter;
143 * Call stat(2) with F_CLRALF argument on fname
145 TEST(stat(fname, &statter));
149 tst_resm(TFAIL, "stat(%s, &statter) failed", fname);
152 "stat(
[all...]
/external/antlr/antlr-3.4/runtime/ObjC/Framework/examples/hoistedPredicates/
H A DT.g24 stat: identifier {NSLog(@"enum is an ID");}
/external/apache-commons-math/src/main/java/org/apache/commons/math/random/
H A DEmpiricalDistribution.java25 import org.apache.commons.math.stat.descriptive.StatisticalSummary;
26 import org.apache.commons.math.stat.descriptive.SummaryStatistics;
89 * {@link org.apache.commons.math.stat.descriptive.StatisticalSummary}
116 * {@link org.apache.commons.math.stat.descriptive.SummaryStatistics}
/external/ltp/lib/
H A Dtst_cpu.c52 struct stat buf;
63 if (stat(KERNEL_MAX, &buf) == 0) {
/external/ltp/testcases/open_posix_testsuite/conformance/interfaces/shm_open/
H A D16-1.c18 #include <sys/stat.h>
30 struct stat stat_buf;
H A D17-1.c18 #include <sys/stat.h>
30 struct stat stat_buf;
H A D21-1.c16 #include <sys/stat.h>
28 struct stat stat_buf;
/external/mesa3d/src/gallium/winsys/etnaviv/drm/
H A Detnaviv_drm_winsys.c27 #include <sys/stat.h>
97 struct stat stat; local
99 fstat(fd, &stat);
101 return stat.st_dev ^ stat.st_ino ^ stat.st_rdev;
108 struct stat stat1, stat2;
/external/mesa3d/src/gallium/winsys/nouveau/drm/
H A Dnouveau_drm_winsys.c1 #include <sys/stat.h>
42 struct stat stat; local
43 fstat(fd, &stat);
45 return stat.st_dev ^ stat.st_ino ^ stat.st_rdev;
52 struct stat stat1, stat2;

Completed in 2288 milliseconds

1234567891011>>