/external/iproute2/netem/ |
stats.c | 15 #include <sys/stat.h> 20 struct stat info;
|
/external/kernel-headers/original/asm-x86/ |
stat.h | 7 struct stat { struct 68 struct stat { struct
|
/external/webkit/JavaScriptCore/tests/mozilla/ecma_3/Exceptions/ |
regress-58946.js | 32 var stat = 'Testing a return statement inside a catch statement inside a function'; variable 41 printStatus (stat);
|
/ndk/build/platforms/android-5/arch-x86/usr/include/asm/ |
stat.h | 18 struct stat { struct 75 struct stat { struct
|
/ndk/build/platforms/android-8/arch-x86/usr/include/asm/ |
stat.h | 18 struct stat { struct 75 struct stat { struct
|
/prebuilt/linux-x86/toolchain/i686-unknown-linux-gnu-4.2.1/lib/gcc/i686-unknown-linux-gnu/4.2.1/include/X11/ |
Xw32defs.h | 19 #define lstat stat 57 #define stat _stat macro
|
/system/core/toolbox/ |
insmod.c | 8 #include <sys/stat.h> 16 struct stat sb;
|
rm.c | 7 #include <sys/stat.h> 19 struct stat st;
|
/external/dropbear/libtomcrypt/src/pk/rsa/ |
rsa_verify_hash.c | 29 @param stat [out] The result of the signature comparison, 1==valid, 0==invalid 37 int *stat, rsa_key *key) 45 LTC_ARGCHK(stat != NULL); 49 *stat = 0; 95 err = pkcs_1_pss_decode(hash, hashlen, tmpbuf, x, saltlen, hash_idx, modulus_bitlen, stat); 146 *stat = 1;
|
/system/core/adb/ |
file_sync_client.c | 21 #include <sys/stat.h> 139 if(readx(fd, &msg.stat, sizeof(msg.stat))) { 143 if(msg.stat.id != ID_STAT) { 147 *timestamp = ltohl(msg.stat.time); 172 if(readx(fd, &msg.stat, sizeof(msg.stat))) 175 if(msg.stat.id != ID_STAT) 178 *timestamp = ltohl(msg.stat.time); 179 *mode = ltohl(msg.stat.mode) [all...] |
/system/core/cpio/ |
mkbootfs.c | 8 #include <sys/stat.h> 40 static void fix_stat(const char *path, struct stat *s) 45 static void _eject(struct stat *s, char *out, int olen, char *data, unsigned datasize) 97 struct stat s; 186 struct stat s; 193 if(lstat(in, &s)) die("could not stat '%s'\n", in);
|
/bootable/diskinstaller/libdiskconfig/ |
diskconfig.c | 27 #include <sys/stat.h> 239 struct stat stat; local 244 if (fstat(fd, &stat)) { 245 LOGE("Cannot stat, errno=%d.", errno); 249 if (S_ISBLK(stat.st_mode) && ((rv = ioctl(fd, BLKRRPART, NULL)) < 0)) { 276 struct stat stat; local 286 if (fstat(fd, &stat)) { 287 LOGE("Cannot stat file '%s', errno=%d.", dinfo->device, errno) [all...] |
/external/opencore/nodes/pvomxbasedecnode/src/ |
pvmf_omx_basedec_callbacks.cpp | 112 OsclAny* EventHandlerThreadSafeCallbackAO::DeQueue(OsclReturnCode &stat) 117 stat = OsclSuccess; 125 stat = OsclFailure; 145 stat = OsclPending; // let the Run know that the last event was pulled out of the queue 158 stat = OsclFailure; 255 OsclAny* EmptyBufferDoneThreadSafeCallbackAO::DeQueue(OsclReturnCode &stat) 260 stat = OsclSuccess; 268 stat = OsclFailure; 288 stat = OsclPending; // let the Run know that the last event was pulled out of the queue 300 stat = OsclFailure [all...] |
/external/opencore/nodes/pvomxencnode/src/ |
pvmf_omx_enc_callbacks.cpp | 112 OsclAny* EventHandlerThreadSafeCallbackAOEnc::DeQueue(OsclReturnCode &stat) 117 stat = OsclSuccess; 125 stat = OsclFailure; 146 stat = OsclPending; // let the Run know that the last event was pulled out of the queue 159 stat = OsclFailure; 256 OsclAny* EmptyBufferDoneThreadSafeCallbackAOEnc::DeQueue(OsclReturnCode &stat) 261 stat = OsclSuccess; 269 stat = OsclFailure; 290 stat = OsclPending; // let the Run know that the last event was pulled out of the queue 302 stat = OsclFailure [all...] |
/system/core/libdiskconfig/ |
diskconfig.c | 27 #include <sys/stat.h> 241 struct stat stat; local 246 if (fstat(fd, &stat)) { 247 LOGE("Cannot stat, errno=%d.", errno); 251 if (S_ISBLK(stat.st_mode) && ((rv = ioctl(fd, BLKRRPART, NULL)) < 0)) { 278 struct stat stat; local 288 if (fstat(fd, &stat)) { 289 LOGE("Cannot stat file '%s', errno=%d.", dinfo->device, errno) [all...] |
/external/dropbear/libtomcrypt/testprof/ |
rsa_test.c | 129 int hash_idx, prng_idx, stat, stat2; local 204 DO(rsa_decrypt_key(out, len, tmp, &len2, NULL, 0, hash_idx, &stat, &key)); 205 if (!(stat == 1 && stat2 == 0)) { 249 DO(rsa_decrypt_key(out, len, tmp, &len2, lparam, sizeof(lparam), hash_idx, &stat, &key)); 250 if (!(stat == 1 && stat2 == 0)) { 267 DO(rsa_decrypt_key_ex(out, len, tmp, &len2, NULL, 0, 0, LTC_PKCS_1_V1_5, &stat, &key)); 268 if (!(stat == 1 && stat2 == 0)) { 269 fprintf(stderr, "rsa_decrypt_key_ex failed, %d, %d", stat, stat2); 291 DO(rsa_verify_hash(out, len, in, 20, hash_idx, 0, &stat, &key)); 296 if (!(stat == 1 && stat2 == 0)) [all...] |
/bionic/libc/bionic/ |
fts.c | 33 #include <sys/stat.h> 272 /* Any type of file may be re-visited; re-stat and re-turn. */ 533 * The real slowdown in walking the tree is the stat calls. If FTS_NOSTAT is 538 * The former skips all stat calls. The latter skips stat calls in any leaf 540 * been found, cutting the stat calls by about 2/3. 572 * directory if we're cheating on stat calls, 0 if we're not doing 573 * any stat calls at all, -1 if we're doing stats on everything. 591 * If we're going to need to stat anything or we want to descend 594 * We won't be able to stat anything, but we can still return th [all...] |
/build/tools/atree/ |
files.cpp | 6 #include <sys/stat.h> 301 struct stat st; 302 err = stat(full.c_str(), &st); 323 struct stat st; 324 err = stat(rec->outPath.c_str(), &st); 353 struct stat st; 354 int err = stat(r.sourcePath.c_str(), &st); 405 // If dirent.d_type is missing, then use stat instead 406 struct stat stat_buf; 407 stat(entry.c_str(), &stat_buf) [all...] |
/external/stlport/src/details/ |
fstream_stdio.cpp | 21 // For sunpro, it chokes if time.h is included through stat.h 33 # include <sys/stat.h> 47 # include <sys/stat.h> // For _fstat 114 # define STAT stat 120 # define STAT stat64 129 struct STAT buf; 137 struct STAT buf; 165 // Return the size of the file. This is a wrapper for stat. 278 struct STAT buf [all...] |
/frameworks/base/media/libdrm/mobile2/src/util/ustl-1.0/ |
fstream.cpp | 17 #include <sys/stat.h> 206 struct stat st; 208 stat (st); 219 /// Get the stat structure. 220 void fstream::stat (struct stat& rs) const function in class:ustl::fstream 226 throw file_exception ("stat", name());
|
/external/libffi/ |
depcomp | 109 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/libpng/ |
depcomp | 116 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...] |
/external/bluetooth/glib/gio/xdgmime/ |
xdgmime.c | 42 #include <sys/stat.h> 140 struct stat st; 146 if (stat (file_name, &st) == 0) 166 if (stat (file_name, &st) == 0) 176 if (stat (file_name, &st) == 0) 189 if (stat (file_name, &st) == 0) 308 struct stat st; 311 if (stat (file_path, &st) == 0) 388 /* Walks through all the mime files stat()ing them to see if they've changed. 414 /* We want to avoid stat()ing on every single mime call, so we only look fo [all...] |
/external/webkit/WebKitTools/Scripts/ |
svn-create-patch | 49 use File::stat; 163 my ($stat) = @_; 164 my $fileStat = substr($stat, 0, 1); 165 my $propertyStat = substr($stat, 1, 1); 167 my $additionWithHistory = substr($stat, 3, 1); 223 open STAT, "svn stat '$statPath' |" or die; 224 while (my $line = <STAT>) { 227 my $stat; 230 $stat = substr($line, 0, 8) [all...] |
/external/opencore/oscl/oscl/osclio/src/ |
oscl_file_find.cpp | 94 struct stat statbuf; 95 if (stat(buf, &statbuf) == 0) 132 struct stat statbuf; 161 // d_type is not all available on all lunix system, using stat() instead 164 if (stat(pEnt->d_name, &statbuf) == 0) 280 struct stat statbuf; 281 if (stat(buf, &statbuf) == 0) 305 struct stat statbuf; 306 if (stat(buf, &statbuf) == 0)
|