Home
last modified time | relevance | path

Searched refs:stat (Results 1 – 25 of 2749) sorted by relevance

12345678910>>...110

/external/ImageMagick/MagickWand/tests/
Dscript-token-test-results.txt1 l=8, c=1, stat=0, len=64, token="-option"
2 l=8, c=9, stat=0, len=64, token="key"
3 l=9, c=1, stat=0, len=64, token="+reset"
4 l=9, c=10, stat=0, len=64, token="imbedded#hash"
5 l=11, c=1, stat=0, len=64, token="This is a single token"
6 l=13, c=1, stat=0, len=64, token="And\ 'even '"more "complex"
7 l=15, c=1, stat=0, len=64, token="Backslash chars \n are returned as is"
8 l=16, c=1, stat=0, len=64, token="regardless \n of quoting"
9 l=18, c=1, stat=0, len=64, token="Single quote escapes"
10 l=19, c=2, stat=0, len=64, token="'"
[all …]
/external/autotest/client/tests/signaltest/src/
Dsignaltest.c98 struct thread_stat *stat = par->stats; in signalthread() local
119 stat->tid = gettid(); in signalthread()
129 stat->threadstarted++; in signalthread()
154 if (!par->id && !(stat->cycles & 0x0F)) in signalthread()
159 pthread_kill(stat->tothread, SIGUSR1); in signalthread()
170 if (diff < stat->min) in signalthread()
171 stat->min = diff; in signalthread()
172 if (diff > stat->max) in signalthread()
173 stat->max = diff; in signalthread()
174 stat->avg += (double) diff; in signalthread()
[all …]
/external/toybox/toys/other/
Dstat.c47 struct stat st;
49 } stat;
76 struct stat *stat = (struct stat *)&TT.stat; in print_stat() local
78 if (type == 'a') out('o', stat->st_mode&~S_IFMT); in print_stat()
82 mode_to_string(stat->st_mode, str); in print_stat()
84 } else if (type == 'b') out('u', stat->st_blocks); in print_stat()
91 } else if (type == 'd') out('d', stat->st_dev); in print_stat()
92 else if (type == 'D') out('x', stat->st_dev); in print_stat()
93 else if (type == 'f') out('x', stat->st_mode); in print_stat()
97 int i, filetype = stat->st_mode & S_IFMT; in print_stat()
[all …]
/external/ltp/testcases/kernel/syscalls/nftw/
Dnftw.h112 int test_func1(const char *, const struct stat *, int, struct FTW *);
113 int test_func3(const char *, const struct stat *, int, struct FTW *);
114 int test_func4(const char *, const struct stat *, int, struct FTW *);
115 int test_func5(const char *, const struct stat *, int, struct FTW *);
116 int test_func7(const char *, const struct stat *, int, struct FTW *);
117 int test_func8(const char *, const struct stat *, int, struct FTW *);
118 int test_func9(const char *, const struct stat *, int, struct FTW *);
119 int test_func10(const char *, const struct stat *, int, struct FTW *);
120 int test_func11(const char *, const struct stat *, int, struct FTW *);
121 int test_func12(const char *, const struct stat *, int, struct FTW *);
[all …]
/external/tensorflow/tensorflow/core/util/
Dstats_calculator_test.cc79 Stat<double> stat; in TEST() local
80 EXPECT_TRUE(stat.empty()); in TEST()
81 EXPECT_TRUE(stat.all_same()); in TEST()
82 stat.UpdateStat(1); in TEST()
83 EXPECT_TRUE(stat.all_same()); in TEST()
84 stat.UpdateStat(-1.0); in TEST()
85 EXPECT_FALSE(stat.all_same()); in TEST()
86 stat.UpdateStat(100); in TEST()
87 stat.UpdateStat(0); in TEST()
88 EXPECT_EQ(4, stat.count()); in TEST()
[all …]
/external/autotest/client/tests/cyclictest/src/
Dcyclictest.c207 struct thread_stat *stat = par->stats; in timerthread() local
229 stat->tid = gettid(); in timerthread()
238 sigev.sigev_notify_thread_id = stat->tid; in timerthread()
270 stat->threadstarted++; in timerthread()
316 if (diff < stat->min) in timerthread()
317 stat->min = diff; in timerthread()
318 if (diff > stat->max) in timerthread()
319 stat->max = diff; in timerthread()
320 stat->avg += (double) diff; in timerthread()
330 stat->act = diff; in timerthread()
[all …]
/external/chromium-trace/catapult/dependency_manager/dependency_manager/
Ddependency_manager_util_unittest.py7 import stat
31 os.chmod(self.read_only_path, stat.S_IRUSR)
36 os.chmod(self.writable_path, stat.S_IRUSR | stat.S_IWUSR)
41 os.chmod(self.executable_path, stat.S_IRWXU)
46 os.chmod(self.sub_read_only_path, stat.S_IRUSR)
51 os.chmod(self.sub_writable_path, stat.S_IRUSR | stat.S_IWUSR)
56 os.chmod(self.sub_executable_path, stat.S_IRWXU)
87 stat.S_IRUSR & stat.S_IMODE(os.stat(read_only_path).st_mode))
89 stat.S_IRUSR & stat.S_IMODE(os.stat(sub_read_only_path).st_mode))
91 stat.S_IRUSR & stat.S_IMODE(os.stat(writable_path).st_mode))
[all …]
/external/igt-gpu-tools/tests/i915/
Di915_pm_sseu.c151 dbg_get_status(struct status *stat) in dbg_get_status() argument
161 memset(stat, 0, sizeof(*stat)); in dbg_get_status()
167 stat->info.slice_total = in dbg_get_status()
169 stat->info.subslice_total = in dbg_get_status()
173 stat->info.subslice_per = in dbg_get_status()
176 stat->info.subslice_per = in dbg_get_status()
179 stat->info.eu_total = in dbg_get_status()
181 stat->info.eu_per = in dbg_get_status()
183 stat->info.has_slice_pg = in dbg_get_status()
185 stat->info.has_subslice_pg = in dbg_get_status()
[all …]
/external/libese/third_party/NXPNFC_P61_JCOP_Kit/src/
DJcDnld.cpp38 BOOLEAN stat = FALSE; in JCDNLD_Init() local
53 stat = jd->initialize (channel); in JCDNLD_Init()
54 if(stat != TRUE) in JCDNLD_Init()
67 stat = FALSE; in JCDNLD_Init()
72 stat = TRUE; in JCDNLD_Init()
78 stat = FALSE; in JCDNLD_Init()
81 return (stat == true)?STATUS_OK:STATUS_FAILED; in JCDNLD_Init()
97 BOOLEAN stat = FALSE; in JCDNLD_StartDownload() local
116 BOOLEAN stat = FALSE; in JCDNLD_DeInit() local
127 stat = channel->close(jcHandle); in JCDNLD_DeInit()
[all …]
/external/llvm-project/flang/runtime/
Dstat.cpp14 const char *StatErrorString(int stat) { in StatErrorString() argument
15 switch (stat) { in StatErrorString()
58 int ToErrmsg(Descriptor *errmsg, int stat) { in ToErrmsg() argument
59 if (stat != StatOk && errmsg && errmsg->raw().base_addr && in ToErrmsg()
62 if (const char *msg{StatErrorString(stat)}) { in ToErrmsg()
74 return stat; in ToErrmsg()
78 Terminator &terminator, int stat, Descriptor *errmsg, bool hasStat) { in ReturnError() argument
79 if (stat == StatOk || hasStat) { in ReturnError()
80 return ToErrmsg(errmsg, stat); in ReturnError()
81 } else if (const char *msg{StatErrorString(stat)}) { in ReturnError()
[all …]
/external/python/cpython2/Lib/test/
Dtest_stat.py4 import stat
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.S_IMODE(st_mode),
[all …]
/external/llvm-project/polly/lib/External/isl/interface/
Ddepcomp192 stat=$?
193 if test $stat -ne 0; then
195 exit $stat
218 stat=$?
219 if test $stat -ne 0; then
221 exit $stat
260 stat=$?
261 if test $stat -ne 0; then
263 exit $stat
315 stat=$?
[all …]
/external/ImageMagick/config/
Ddepcomp192 stat=$?
193 if test $stat -ne 0; then
195 exit $stat
218 stat=$?
219 if test $stat -ne 0; then
221 exit $stat
260 stat=$?
261 if test $stat -ne 0; then
263 exit $stat
315 stat=$?
[all …]
/external/python/cpython2/Modules/_ctypes/libffi/
Ddepcomp192 stat=$?
193 if test $stat -ne 0; then
195 exit $stat
218 stat=$?
219 if test $stat -ne 0; then
221 exit $stat
260 stat=$?
261 if test $stat -ne 0; then
263 exit $stat
315 stat=$?
[all …]
/external/expat/conftools/
Ddepcomp192 stat=$?
193 if test $stat -ne 0; then
195 exit $stat
218 stat=$?
219 if test $stat -ne 0; then
221 exit $stat
260 stat=$?
261 if test $stat -ne 0; then
263 exit $stat
315 stat=$?
[all …]
/external/curl/
Ddepcomp192 stat=$?
193 if test $stat -ne 0; then
195 exit $stat
218 stat=$?
219 if test $stat -ne 0; then
221 exit $stat
260 stat=$?
261 if test $stat -ne 0; then
263 exit $stat
315 stat=$?
[all …]
/external/speex/
Ddepcomp192 stat=$?
193 if test $stat -ne 0; then
195 exit $stat
218 stat=$?
219 if test $stat -ne 0; then
221 exit $stat
260 stat=$?
261 if test $stat -ne 0; then
263 exit $stat
315 stat=$?
[all …]
/external/iperf3/config/
Ddepcomp192 stat=$?
193 if test $stat -ne 0; then
195 exit $stat
218 stat=$?
219 if test $stat -ne 0; then
221 exit $stat
260 stat=$?
261 if test $stat -ne 0; then
263 exit $stat
315 stat=$?
[all …]
/external/strace/
Ddepcomp192 stat=$?
193 if test $stat -ne 0; then
195 exit $stat
218 stat=$?
219 if test $stat -ne 0; then
221 exit $stat
260 stat=$?
261 if test $stat -ne 0; then
263 exit $stat
315 stat=$?
[all …]
/external/libpng/
Ddepcomp192 stat=$?
193 if test $stat -ne 0; then
195 exit $stat
218 stat=$?
219 if test $stat -ne 0; then
221 exit $stat
260 stat=$?
261 if test $stat -ne 0; then
263 exit $stat
315 stat=$?
[all …]
/external/libnetfilter_conntrack/build-aux/
Ddepcomp192 stat=$?
193 if test $stat -ne 0; then
195 exit $stat
218 stat=$?
219 if test $stat -ne 0; then
221 exit $stat
260 stat=$?
261 if test $stat -ne 0; then
263 exit $stat
315 stat=$?
[all …]
/external/libevent/build-aux/
Ddepcomp192 stat=$?
193 if test $stat -ne 0; then
195 exit $stat
218 stat=$?
219 if test $stat -ne 0; then
221 exit $stat
260 stat=$?
261 if test $stat -ne 0; then
263 exit $stat
315 stat=$?
[all …]
/external/google-breakpad/autotools/
Ddepcomp192 stat=$?
193 if test $stat -ne 0; then
195 exit $stat
218 stat=$?
219 if test $stat -ne 0; then
221 exit $stat
260 stat=$?
261 if test $stat -ne 0; then
263 exit $stat
315 stat=$?
[all …]
/external/pcre/dist2/
Ddepcomp192 stat=$?
193 if test $stat -ne 0; then
195 exit $stat
218 stat=$?
219 if test $stat -ne 0; then
221 exit $stat
260 stat=$?
261 if test $stat -ne 0; then
263 exit $stat
315 stat=$?
[all …]
/external/llvm-project/polly/lib/External/isl/
Ddepcomp192 stat=$?
193 if test $stat -ne 0; then
195 exit $stat
218 stat=$?
219 if test $stat -ne 0; then
221 exit $stat
260 stat=$?
261 if test $stat -ne 0; then
263 exit $stat
315 stat=$?
[all …]

12345678910>>...110