/external/e2fsprogs/tests/f_swapfs/ |
debugfs.cmd | 2 stat sym 3 stat double-indirect-test
|
/system/core/toolbox/ |
exists.c | 2 #include <sys/stat.h> 7 struct stat s; 11 if(stat(argv[1], &s)) {
|
/bionic/libc/arch-arm/syscalls/ |
stat.S | 5 .type stat, #function 6 .globl stat 10 stat: label
|
/external/elfutils/libebl/ |
i386_corenote.c | 88 struct elf_prstatus *stat = (struct elf_prstatus *) desc; local 101 stat->pr_info. si_signo, 102 stat->pr_info. si_code, 103 stat->pr_info. si_errno, 104 stat->pr_cursig, 105 stat->pr_sigpend, stat->pr_sighold, 106 stat->pr_pid, stat->pr_ppid, stat->pr_pgrp, stat->pr_sid [all...] |
/external/oprofile/libdb/ |
db_stat.c | 74 void odb_hash_display_stat(odb_hash_stat_t const * stat) 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) 87 free(stat);
|
/bionic/libc/arch-sh/syscalls/ |
stat.S | 5 .type stat, @function 6 .globl stat 9 stat: label
|
/bionic/libc/arch-x86/syscalls/ |
stat.S | 5 .type stat, @function 6 .globl stat 9 stat: label
|
/cts/tests/tests/os/src/android/os/cts/ |
StatFsTest.java | 64 StatFs stat = new StatFs(path.getPath()); local 65 int blockSize = stat.getBlockSize(); 66 int totalBlocks = stat.getBlockCount(); 67 int freeBlocks = stat.getFreeBlocks(); 68 int availableBlocks = stat.getAvailableBlocks(); 76 stat.restat(path.getPath()); 77 blockSize = stat.getBlockSize(); 78 totalBlocks = stat.getBlockCount(); 79 freeBlocks = stat.getFreeBlocks(); 80 availableBlocks = stat.getAvailableBlocks() [all...] |
/frameworks/base/core/jni/ |
android_os_StatFs.cpp | 45 struct statfs *stat = (struct statfs *)env->GetIntField(thiz, fields.context); local 46 return stat->f_bsize; 52 struct statfs *stat = (struct statfs *)env->GetIntField(thiz, fields.context); local 53 return stat->f_blocks; 59 struct statfs *stat = (struct statfs *)env->GetIntField(thiz, fields.context); local 60 return stat->f_bfree; 66 struct statfs *stat = (struct statfs *)env->GetIntField(thiz, fields.context); local 67 return stat->f_bavail; 79 struct statfs *stat = (struct statfs *)env->GetIntField(thiz, fields.context); local 80 if (stat == NULL) 111 struct statfs* stat = new struct statfs; local 123 struct statfs *stat = (struct statfs *)env->GetIntField(thiz, fields.context); local [all...] |
/external/e2fsprogs/tests/progs/ |
hold_inode.c | 17 #include <sys/stat.h> 23 struct stat statbuf; 31 if (stat(filename, &statbuf) < 0) {
|
/development/host/windows/usb/legacy/driver/ |
android_usb_inl.h | 66 NTSTATUS stat = WdfRequestRetrieveOutputMemory(request, &wdf_mem);
local 67 ASSERT((NULL != wdf_mem) || (!NT_SUCCESS(stat)));
69 *status = stat;
70 return NT_SUCCESS(stat) ? GetAddress(wdf_mem) : NULL;
81 NTSTATUS stat = WdfRequestRetrieveInputMemory(request, &wdf_mem);
local 82 ASSERT((NULL != wdf_mem) || (!NT_SUCCESS(stat)));
84 *status = stat;
85 return NT_SUCCESS(stat) ? GetAddress(wdf_mem) : NULL;
|
/hardware/msm7k/librpc/ |
rpc.c | 33 int32 stat = (int32) RPC_MSG_ACCEPTED; local 37 XDR_SEND_INT32(xdr, &stat) && 49 if (!XDR_SEND_ENUM(xdr, &accreply->stat)) 52 switch ((*accreply).stat){ 81 if (!XDR_SEND_ENUM(xdr, &rejreply->stat)) 84 switch ((*rejreply).stat){ 106 if (!XDR_SEND_ENUM(xdr, &reply->stat)) 109 switch ((*reply).stat) {
|
/packages/experimental/procstatlog/ |
README | 3 A statically linked binary that polls and dumps /proc/*/stat files
|
/external/dropbear/libtomcrypt/src/encauth/ocb/ |
ocb_done_decrypt.c | 28 @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;
|
/frameworks/base/tests/LowStorageTest/src/com/android/lowstoragetest/ |
LowStorageTest.java | 52 StatFs stat = new StatFs(path.getPath()); local 53 int totalBlocks = stat.getBlockCount(); 54 mBlockSize = (int) (stat.getBlockSize()); 80 StatFs stat = new StatFs(path.getPath()); local 81 int totalBlocks = stat.getBlockCount(); 82 int noOfBlockToFill = stat.getAvailableBlocks(); 118 // The stat didn't relect the correct data right away 122 StatFs stat = new StatFs(path.getPath()); local 123 long availableBlocks = stat.getAvailableBlocks();
|
/bootable/recovery/ |
test_roots.c | 17 #include <sys/stat.h> 27 struct stat st; 29 ret = stat(path, &st); 58 struct stat st1, st2; 63 ret = stat(CANARY_FILE, &st1); 65 ret = stat(path, &st2);
|
/external/bzip2/ |
bzdiff | 48 STAT="$?" 58 STAT="$?" 62 STAT="$?";; 67 STAT="$?";; 69 STAT="$?";; 72 exit "$STAT"
|
/external/dropbear/libtomcrypt/src/pk/rsa/ |
rsa_decrypt_key.c | 30 @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);
|
/external/dropbear/libtomcrypt/testprof/ |
katja_test.c | 9 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 == 1 && stat2 == 0)) [all...] |
/external/webkit/WebKit/win/ |
WebCache.cpp | 103 WebCore::Cache::Statistics stat = WebCore::cache()->getStatistics(); 116 RetainPtr<CFNumberRef> value(AdoptCF, CFNumberCreate(0, kCFNumberIntType, &stat.images.count)); 119 value.adoptCF(CFNumberCreate(0, kCFNumberIntType, &stat.cssStyleSheets.count)); 123 value.adoptCF(CFNumberCreate(0, kCFNumberIntType, &stat.xslStyleSheets.count)); 129 value.adoptCF(CFNumberCreate(0, kCFNumberIntType, &stat.scripts.count)); 138 value.adoptCF(CFNumberCreate(0, kCFNumberIntType, &stat.images.size)); 141 value.adoptCF(CFNumberCreate(0, kCFNumberIntType, &stat.cssStyleSheets.size)); 145 value.adoptCF(CFNumberCreate(0, kCFNumberIntType, &stat.xslStyleSheets.size)); 151 value.adoptCF(CFNumberCreate(0, kCFNumberIntType, &stat.scripts.size)); 160 value.adoptCF(CFNumberCreate(0, kCFNumberIntType, &stat.images.liveSize)) [all...] |
/bionic/libc/include/sys/ |
stat.h | 34 #include <linux/stat.h> 44 struct stat { struct 85 extern int stat(const char *, struct stat *); 86 extern int fstat(int, struct stat *); 87 extern int lstat(const char *, struct stat *); 91 #define stat64 stat 100 extern int fstatat(int dirfd, const char *path, struct stat *buf, int flags);
|
/build/tools/atree/ |
fs.cpp | 11 #include <sys/stat.h> 22 struct stat st; 23 err = stat(path.c_str(), &st); 67 // If dirent.d_type is missing, then use stat instead 68 struct stat stat_buf; 69 stat(full.c_str(), &stat_buf); 114 struct stat st; 115 err = stat(p.c_str(), &st);
|
/external/dropbear/libtomcrypt/src/pk/dsa/ |
dsa_verify_hash.c | 27 @param stat [out] The result of the signature verification, 1==valid, 0==invalid 33 int *stat, dsa_key *key) 40 LTC_ARGCHK(stat != NULL); 44 *stat = 0; 75 *stat = 1; 90 @param stat [out] The result of the signature verification, 1==valid, 0==invalid 96 int *stat, dsa_key *key) 114 err = dsa_verify_hash_raw(r, s, hash, hashlen, stat, key);
|
/external/e2fsprogs/tests/r_inline_xattr/ |
expect | 2 debugfs -R ''stat file'' ./test.img 2>&1 | grep ''^Inode\|in inode body\|name = '' 12 debugfs -R ''stat file'' ./test.img 2>&1 | grep ''^Inode\|in inode body\|name = ''
|
/ndk/build/platforms/android-3/arch-arm/usr/include/sys/ |
stat.h | 34 #include <linux/stat.h> 44 struct stat { struct 85 extern int stat(const char *, struct stat *); 86 extern int fstat(int, struct stat *); 87 extern int lstat(const char *, struct stat *); 91 #define stat64 stat 100 extern int fstatat(int dirfd, const char *path, struct stat *buf, int flags);
|