Searched refs:stat (Results 1 - 25 of 862) sorted by relevance

1234567891011>>

/external/webkit/LayoutTests/http/tests/resources/
H A Dtouch-temp-file.php11 $stat = stat($tmpFile); variable
12 if (!$stat) {
13 echo "FAIL: stat() call failed.\n";
17 $mtime = $stat['mtime'] + 1;
/external/webkit/Source/JavaScriptCore/tests/mozilla/ecma_3/Exceptions/
H A Dregress-58946.js32 var stat = 'Testing a return statement inside a catch statement inside a function'; variable
41 printStatus (stat);
/external/webkit/Source/WebKit/android/WebCoreSupport/
H A DMemoryUsage.cpp41 v8::HeapStatistics stat; local
42 v8::V8::GetHeapStatistics(&stat);
43 unsigned v8Usage = stat.total_heap_size() >> 20;
/external/eigen/bench/spbench/
H A Dspbenchsolver.h128 Stats stat; local
136 stat.info = NumericalIssue;
138 return stat;
141 stat.compute_time = timer.value();
148 stat.info = NumericalIssue;
150 return stat;
154 stat.solve_time = timer.value();
155 stat.total_time = stat.solve_time + stat
182 Stats stat; local
190 Stats stat; local
199 printStatItem(Stats *stat, int solver_id, int& best_time_id, double& best_time_val) argument
244 printHtmlStatLine(Stats *stat, int best_time_id, string& statline) argument
287 SelectSolvers(const SparseMatrix<Scalar>&A, unsigned int sym, Matrix<Scalar, Dynamic, 1>& b, const Matrix<Scalar, Dynamic, 1>& refX, Stats *stat) argument
493 Stats stat[EIGEN_ALL_SOLVERS]; local
[all...]
/external/openssh/
H A Dsftp-common.h45 void stat_to_attrib(const struct stat *, Attrib *);
46 void attrib_to_stat(const Attrib *, struct stat *);
49 char *ls_file(const char *, const struct stat *, int, int);
/external/oprofile/libdb/
H A Ddb_stat.c74 void odb_hash_display_stat(odb_hash_stat_t const * stat) argument
76 printf("total node number: %d\n", stat->node_nr);
77 printf("total used node: %d\n", stat->used_node_nr);
78 printf("total count: %llu\n", stat->total_count);
79 printf("hash table size: %d\n", stat->hash_table_size);
80 printf("greater list length: %d\n", stat->max_list_length);
81 printf("average non empty list length: %2.4f\n", stat->average_list_length);
85 void odb_hash_free_stat(odb_hash_stat_t * stat) argument
87 free(stat);
/external/valgrind/main/none/tests/x86-linux/
H A Dseg_override.stdout.exp0 stat = 0
/external/openssh/openbsd-compat/
H A Dglob.h48 #include <sys/stat.h>
50 struct stat;
57 struct stat **gl_statv; /* Stat entries corresponding to gl_pathv */
63 * versions of closedir(3), readdir(3), opendir(3), stat(2)
69 int (*gl_lstat)(const char *, struct stat *);
70 int (*gl_stat)(const char *, struct stat *);
93 #define GLOB_KEEPSTAT 0x4000 /* Retain stat data for paths in gl_statv. */
/external/clang/include/clang/Basic/
H A DFileSystemStatCache.h1 //===--- FileSystemStatCache.h - Caching for 'stat' calls -------*- C++ -*-===//
22 #include <sys/stat.h>
26 /// \brief Abstract interface for introducing a FileManager cache for 'stat'
38 CacheExists, ///< We know the file exists and its cached stat data.
42 /// \brief Get the 'stat' information for the specified path, using the cache
52 static bool get(const char *Path, struct stat &StatBuf, int *FileDescriptor,
56 /// \brief Sets the next stat call cache in the chain of stat caches.
57 /// Takes ownership of the given stat cache.
62 /// \brief Retrieve the next stat cal
[all...]
/external/e2fsprogs/tests/progs/
H A Dhold_inode.c17 #include <sys/stat.h>
23 struct stat statbuf;
31 if (stat(filename, &statbuf) < 0) {
/external/dropbear/libtomcrypt/src/encauth/ocb/
H A Docb_done_decrypt.c28 @param stat [out] The result of the tag comparison
34 const unsigned char *tag, unsigned long taglen, int *stat)
44 LTC_ARGCHK(stat != NULL);
47 *stat = 0;
61 *stat = 1;
31 ocb_done_decrypt(ocb_state *ocb, const unsigned char *ct, unsigned long ctlen, unsigned char *pt, const unsigned char *tag, unsigned long taglen, int *stat) argument
/external/e2fsprogs/lib/ext2fs/
H A Dinline.c23 #include <sys/stat.h>
/external/qemu/elff/
H A Delff-common.h30 #include <sys/stat.h>
/external/oprofile/libutil/
H A Dop_file.c12 #include <sys/stat.h>
28 struct stat st;
29 return !stat(file, &st) && S_ISREG(st.st_mode) && !access(file, R_OK);
35 struct stat st;
37 if (stat(file, &st))
90 struct stat * st_buf)
97 if (stat(name, st_buf) != 0)
99 struct stat lstat_buf;
105 fprintf(stderr, "stat failed for %s (%s)\n",
135 struct stat stat_buffe
[all...]
/external/qemu/distrib/sdl-1.2.15/src/audio/
H A DSDL_audiodev.c30 #include <sys/stat.h>
62 struct stat sb;
65 if ( ((stat("/dev/sound", &sb) == 0) && S_ISDIR(sb.st_mode)) &&
66 ((stat(_PATH_DEV_DSP24, &sb) == 0) && S_ISCHR(sb.st_mode)) ) {
78 struct stat sb;
85 if ( stat(audiopath, &sb) == 0 ) {
104 #include <sys/stat.h>
148 struct stat sb;
166 if ( stat(audiopath, &sb) == 0 ) {
/external/dropbear/libtomcrypt/src/pk/rsa/
H A Drsa_decrypt_key.c30 @param stat [out] Result of the decryption, 1==valid, 0==invalid
38 int *stat, rsa_key *key)
47 LTC_ARGCHK(stat != NULL);
50 *stat = 0;
91 out, outlen, stat);
94 err = pkcs_1_v1_5_decode(tmp, x, LTC_PKCS_1_EME, modulus_bitlen, out, outlen, stat);
34 rsa_decrypt_key_ex(const unsigned char *in, unsigned long inlen, unsigned char *out, unsigned long *outlen, const unsigned char *lparam, unsigned long lparamlen, int hash_idx, int padding, int *stat, rsa_key *key) argument
/external/ipsec-tools/src/racoon/
H A Dsafefile.c37 #include <sys/stat.h>
52 struct stat s;
62 if (stat(path, &s) != 0)
/external/linux-tools-perf/util/
H A Dabspath.c7 struct stat cwd_stat, pwd_stat;
12 stat(cwd, &cwd_stat);
13 if (!stat(pwd, &pwd_stat) &&
/external/antlr/antlr-3.4/runtime/ObjC/Framework/examples/hoistedPredicates/
H A DT.g24 stat: identifier {NSLog(@"enum is an ID");}
/external/dropbear/libtomcrypt/testprof/
H A Dkatja_test.c9 int hash_idx, prng_idx, stat, stat2, size; local
81 DO(katja_decrypt_key(out, len, tmp, &len2, NULL, 0, hash_idx, &stat, &key));
82 if (!(stat == 1 && stat2 == 0)) {
126 DO(katja_decrypt_key(out, len, tmp, &len2, lparam, sizeof(lparam), hash_idx, &stat, &key));
127 if (!(stat == 1 && stat2 == 0)) {
152 DO(katja_verify_hash(out, len, in, 20, hash_idx, 0, &stat, &key));
157 if (!(stat == 1 && stat2 == 0)) {
158 fprintf(stderr, "katja_verify_hash (unsalted, origKey) failed, %d, %d", stat, stat2);
168 DO(katja_verify_hash(out, len, in, 20, hash_idx, 0, &stat, &privKey));
173 if (!(stat
[all...]
/external/webkit/Source/WebKit/win/
H A DWebCache.cpp100 WebCore::MemoryCache::Statistics stat = WebCore::memoryCache()->getStatistics();
113 RetainPtr<CFNumberRef> value(AdoptCF, CFNumberCreate(0, kCFNumberIntType, &stat.images.count));
116 value.adoptCF(CFNumberCreate(0, kCFNumberIntType, &stat.cssStyleSheets.count));
120 value.adoptCF(CFNumberCreate(0, kCFNumberIntType, &stat.xslStyleSheets.count));
126 value.adoptCF(CFNumberCreate(0, kCFNumberIntType, &stat.scripts.count));
135 value.adoptCF(CFNumberCreate(0, kCFNumberIntType, &stat.images.size));
138 value.adoptCF(CFNumberCreate(0, kCFNumberIntType, &stat.cssStyleSheets.size));
142 value.adoptCF(CFNumberCreate(0, kCFNumberIntType, &stat.xslStyleSheets.size));
148 value.adoptCF(CFNumberCreate(0, kCFNumberIntType, &stat.scripts.size));
157 value.adoptCF(CFNumberCreate(0, kCFNumberIntType, &stat
[all...]
/external/chromium/sdch/open-vcdiff/
H A Ddepcomp109 stat=$?
110 if test $stat -eq 0; then :
113 exit $stat
132 stat=$?
133 if test $stat -eq 0; then :
136 exit $stat
174 stat=$?
175 if test $stat -eq 0; then :
178 exit $stat
232 stat
[all...]
/external/elfutils/config/
H A Ddepcomp109 stat=$?
110 if test $stat -eq 0; then :
113 exit $stat
132 stat=$?
133 if test $stat -eq 0; then :
136 exit $stat
174 stat=$?
175 if test $stat -eq 0; then :
178 exit $stat
232 stat
[all...]
/external/libffi/
H A Ddepcomp109 stat=$?
110 if test $stat -eq 0; then :
113 exit $stat
132 stat=$?
133 if test $stat -eq 0; then :
136 exit $stat
174 stat=$?
175 if test $stat -eq 0; then :
178 exit $stat
225 stat
[all...]
/external/libmtp/
H A Ddepcomp116 stat=$?
117 if test $stat -eq 0; then :
120 exit $stat
139 stat=$?
140 if test $stat -eq 0; then :
143 exit $stat
181 stat=$?
182 if test $stat -eq 0; then :
185 exit $stat
239 stat
[all...]

Completed in 1106 milliseconds

1234567891011>>