HomeSort by relevance Sort by last modified time
    Searched refs:stat (Results 26 - 50 of 861) sorted by null

12 3 4 5 6 7 8 91011>>

  /external/e2fsprogs/lib/ext2fs/
inline.c 23 #include <sys/stat.h>
  /hardware/qcom/gps/loc_api/libloc_api-rpc/src/
loc_api_rpc_glue.c 49 #include <sys/stat.h>
89 #define LOC_GLUE_CHECK_RESULT(stat, ret_type) \
90 if (stat != RPC_SUCCESS) { return (ret_type) RPC_LOC_API_RPC_FAILURE; }
200 enum clnt_stat stat = RPC_SUCCESS; local
202 stat = RPC_FUNC_VERSION(rpc_loc_open_, LOC_APIVERS)(&args, &rets, loc_api_clnt);
203 LOC_GLUE_CHECK_RESULT(stat, int32);
216 enum clnt_stat stat = RPC_SUCCESS; local
218 stat = RPC_FUNC_VERSION(rpc_loc_close_, LOC_APIVERS)(&args, &rets, loc_api_clnt);
219 LOC_GLUE_CHECK_RESULT(stat, int32);
232 enum clnt_stat stat = RPC_SUCCESS local
248 enum clnt_stat stat = RPC_SUCCESS; local
319 enum clnt_stat stat = RPC_SUCCESS; local
333 enum clnt_stat stat = RPC_SUCCESS; local
    [all...]
  /external/oprofile/libutil/
op_file.c 12 #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_buffer
    [all...]
  /external/qemu/distrib/sdl-1.2.12/src/audio/
SDL_audiodev.c 30 #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/
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/ipsec-tools/src/racoon/
safefile.c 37 #include <sys/stat.h>
52 struct stat s;
62 if (stat(path, &s) != 0)
  /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...]
  /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...]
  /build/core/combo/
HOST_linux-x86.mk 22 stat --format "%s" "$(1)" | tr -d '\n'
  /build/libs/host/include/host/
CopyFile.h 5 #include <sys/stat.h>
  /dalvik/vm/arch/x86/
Hints386ABI.c 26 #include <sys/stat.h>
  /dalvik/vm/arch/x86-atom/
Hints386ABI.c 49 #include <sys/stat.h>
  /external/bluetooth/glib/glib/
gstdio.h 26 #include <sys/stat.h>
43 #define g_stat stat
93 struct stat *buf);
96 struct stat *buf);
  /external/dropbear/libtomcrypt/src/encauth/eax/
eax_decrypt_verify_memory.c 34 @param stat [out] The result of the decryption (1==valid tag, 0==invalid)
44 int *stat)
51 LTC_ARGCHK(stat != NULL);
58 *stat = 0;
88 *stat = 1;
  /external/dropbear/libtomcrypt/src/pk/katja/
katja_decrypt_key.c 29 @param stat [out] Result of the decryption, 1==valid, 0==invalid
36 int hash_idx, int *stat,
46 LTC_ARGCHK(stat != NULL);
49 *stat = 0;
91 out, outlen, stat);
  /external/e2fsprogs/lib/e2p/
fgetflags.c 27 #include <sys/stat.h>
43 struct stat buf;
46 if (stat (name, &buf) == -1)
68 if (!stat(name, &buf) &&
  /external/qemu/elff/
elff-common.h 29 #include <sys/stat.h>
  /external/webkit/WebKitTools/wx/build/
waf_extensions.py 68 import stat namespace
70 st = os.stat(filename)
71 if stat.S_ISDIR(st[stat.ST_MODE]): raise IOError('not a file')
  /packages/inputmethods/PinyinIME/jni/share/
sync.cpp 106 UserDict::UserDictStat stat; local
107 userdict_->state(&stat);
108 return stat.limit_lemma_count - stat.lemma_count;
  /external/webkit/WebCore/platform/posix/
FileSystemPOSIX.cpp 35 #include <sys/stat.h>
56 struct stat fileInfo;
58 // stat(...) returns 0 on successful stat'ing of the file, and non-zero in any case where the file doesn't exist or cannot be accessed
59 return !stat(fsRep.data(), &fileInfo);
91 struct stat fileInfo;
93 if (stat(fsRep.data(), &fileInfo))
107 struct stat fileInfo;
109 if (stat(fsRep.data(), &fileInfo))
  /development/simulator/wrapsim/
Globals.h 12 #include <sys/stat.h>
49 typedef int (*Func_lstat)(const char*, struct stat*);
50 typedef int (*Func_lstat64)(const char*, struct stat*);
51 typedef int (*Func___lxstat)(int version, const char*, struct stat*);
52 typedef int (*Func___lxstat64)(int version, const char*, struct stat*);
57 typedef int (*Func_stat)(const char*, struct stat*);
58 typedef int (*Func_stat64)(const char*, struct stat*);
59 typedef int (*Func___xstat)(int version, const char*, struct stat*);
60 typedef int (*Func___xstat64)(int version, const char*, struct stat*);
77 int (*fn) (const char*, const struct stat*, int)
    [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...]

Completed in 1107 milliseconds

12 3 4 5 6 7 8 91011>>