Home
last modified time | relevance | path

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

12345678910>>...68

/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.c46 struct stat st;
48 } stat;
79 struct stat *stat = (struct stat *)&TT.stat; in print_stat() local
81 if (type == 'a') out('o', stat->st_mode&~S_IFMT); in print_stat()
85 mode_to_string(stat->st_mode, str); in print_stat()
87 } else if (type == 'b') out('u', stat->st_blocks); in print_stat()
89 else if (type == 'd') out('d', stat->st_dev); in print_stat()
90 else if (type == 'D') out('x', stat->st_dev); in print_stat()
91 else if (type == 'f') out('x', stat->st_mode); in print_stat()
95 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/google-benchmark/src/
Dstat.h56 Stat1(const Self &stat) { in Stat1() argument
57 sum_ = stat.sum_; in Stat1()
58 sum_squares_ = stat.sum_squares_; in Stat1()
59 numsamples_ = stat.numsamples_; in Stat1()
67 Self &operator=(const Self &stat) {
68 sum_ = stat.sum_;
69 sum_squares_ = stat.sum_squares_;
70 numsamples_ = stat.numsamples_;
74 Self &operator+=(const Self &stat) {
75 sum_ += stat.sum_;
[all …]
/external/libcxx/utils/google-benchmark/src/
Dstat.h56 Stat1(const Self &stat) { in Stat1() argument
57 sum_ = stat.sum_; in Stat1()
58 sum_squares_ = stat.sum_squares_; in Stat1()
59 numsamples_ = stat.numsamples_; in Stat1()
67 Self &operator=(const Self &stat) {
68 sum_ = stat.sum_;
69 sum_squares_ = stat.sum_squares_;
70 numsamples_ = stat.numsamples_;
74 Self &operator+=(const Self &stat) {
75 sum_ += stat.sum_;
[all …]
/external/lzma/CPP/Windows/
DSystem.cpp49 MY_MEMORYSTATUSEX stat; in GetRamSize() local
50 stat.dwLength = sizeof(stat); in GetRamSize()
53 if (!::GlobalMemoryStatusEx(&stat)) in GetRamSize()
55 return MyMin(stat.ullTotalVirtual, stat.ullTotalPhys); in GetRamSize()
60 if (globalMemoryStatusEx != 0 && globalMemoryStatusEx(&stat)) in GetRamSize()
61 return MyMin(stat.ullTotalVirtual, stat.ullTotalPhys); in GetRamSize()
64 MEMORYSTATUS stat; in GetRamSize() local
65 stat.dwLength = sizeof(stat); in GetRamSize()
66 ::GlobalMemoryStatus(&stat); in GetRamSize()
67 return MyMin(stat.dwTotalVirtual, stat.dwTotalPhys); in GetRamSize()
/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/bison/m4/
Dstat.m414 dnl mingw is the only known platform where stat(".") and stat("./") differ
15 AC_CACHE_CHECK([whether stat handles trailing slashes on directories],
19 [[#include <sys/stat.h>
20 ]], [[struct stat st; return stat (".", &st) != stat ("./", &st);]])],
26 dnl AIX 7.1, Solaris 9, mingw64 mistakenly succeed on stat("file/").
27 dnl (For mingw, this is due to a broken stat() override in libmingwex.a.)
28 dnl FreeBSD 7.2 mistakenly succeeds on stat("link-to-file/").
29 AC_CACHE_CHECK([whether stat handles trailing slashes on files],
38 [[#include <sys/stat.h>
40 struct stat st;
[all …]
/external/ltp/utils/ffsb-6.0-rc2/
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/netperf/
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
186 stat=$?
[all …]
/external/libchrome/dbus/
Ddbus_statistics.cc92 Stat* stat = GetStat(service, interface, method, true); in AddStat() local
93 DCHECK(stat); in AddStat()
95 ++stat->sent_method_calls; in AddStat()
97 ++stat->received_signals; in AddStat()
99 ++stat->sent_blocking_method_calls; in AddStat()
111 std::unique_ptr<Stat> stat(new Stat(service, interface, method)); in GetStat() local
112 StatSet::iterator found = stats_.find(stat.get()); in GetStat()
117 found = stats_.insert(stat.release()).first; in GetStat()
199 const Stat* stat = *cur_iter; in GetAsString() local
200 sent += stat->sent_method_calls; in GetAsString()
[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/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/libedit/
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/protobuf/gtest/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/libmicrohttpd/
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/protobuf/
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/bison/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/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/libnfnetlink/build-aux/
Ddepcomp136 stat=$?
137 if test $stat -eq 0; then :
140 exit $stat
159 stat=$?
160 if test $stat -eq 0; then :
163 exit $stat
202 stat=$?
203 if test $stat -eq 0; then :
206 exit $stat
264 stat=$?
[all …]
/external/vulkan-validation-layers/tests/gtest-1.7.0/build-aux/
Ddepcomp124 stat=$?
125 if test $stat -eq 0; then :
128 exit $stat
147 stat=$?
148 if test $stat -eq 0; then :
151 exit $stat
191 stat=$?
192 if test $stat -eq 0; then :
195 exit $stat
249 stat=$?
[all …]

12345678910>>...68