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

1 2 3 4 5 67 8 91011>>

  /system/core/libcutils/
process_name.c 22 #include <sys/stat.h>
ashmem-host.c 26 #include <sys/stat.h>
98 struct stat buf;
  /system/core/toolbox/
umount.c 3 #include <sys/stat.h>
insmod.c 8 #include <sys/stat.h>
16 struct stat sb;
  /external/quake/quake/src/QW/gas2masm/
gas2masm.c 786 tokenstat stat; local
793 if ((stat = whitespace (c)) == LINE_DONE)
795 } while (stat == WHITESPACE);
903 tokenstat stat; local
914 stat = gettoken ();
916 switch (stat)
1015 fprintf (stderr, "Error: unknown tokenstat %d\n", stat);
1024 tokenstat stat; local
1033 stat = parseline ();
1036 switch (stat)
    [all...]
  /external/quake/quake/src/WinQuake/gas2masm/
gas2masm.c 786 tokenstat stat; local
793 if ((stat = whitespace (c)) == LINE_DONE)
795 } while (stat == WHITESPACE);
903 tokenstat stat; local
914 stat = gettoken ();
916 switch (stat)
1015 fprintf (stderr, "Error: unknown tokenstat %d\n", stat);
1024 tokenstat stat; local
1033 stat = parseline ();
1036 switch (stat)
    [all...]
  /bionic/libc/bionic/
realpath.c 44 #include <sys/stat.h>
64 struct stat sb;
  /dalvik/libcore/sql/src/test/java/tests/java/sql/
UpdateFunctionalityTest2.java 350 PreparedStatement stat = conn.prepareStatement("UPDATE " local
353 stat.setString(1, "1");
354 stat.setInt(2, 1);
355 stat.execute();
356 stat.setString(1, "2");
357 stat.setInt(2, 2);
358 stat.execute();
367 stat.close();
DeleteFunctionalityTest.java 236 PreparedStatement stat = conn.prepareStatement("DELETE FROM " local
238 stat.setInt(1, 1);
239 stat.execute();
240 stat.setInt(1, 2);
241 stat.execute();
247 stat.close();
  /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)
  /external/qemu/android/utils/
path.c 26 #include <sys/stat.h>
32 #include <sys/stat.h>
227 struct stat st;
229 CHECKED(ret, stat(path, &st));
242 struct stat st;
244 CHECKED(ret, stat(path, &st));
388 struct stat st;
390 CHECKED(ret, stat(path, &st));
timezone.c 156 #include <sys/stat.h>
167 struct stat localtime_st;
177 struct stat st;
182 if ( stat( path, &st ) < 0 ) {
183 D( " can't stat: %s\n", strerror(errno) );
244 struct stat ent_st;
256 if ( stat( scan->path, &ent_st ) < 0 )
383 if ( stat( localtime, &scan->localtime_st ) < 0 ) {
  /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
  /external/clearsilver/util/
neo_files.c 23 #include <sys/stat.h>
68 struct stat s;
76 if (stat(path, &s) == -1)
80 return nerr_raise_errno (NERR_SYSTEM, "Unable to stat file %s", path);
143 struct stat s;
147 if (stat(path, &s) == -1)
150 return nerr_raise_errno (NERR_SYSTEM, "Unable to stat file %s", path);
164 if (stat(npath, &s) == -1)
168 return nerr_raise_errno (NERR_SYSTEM, "Unable to stat file %s", npath);
  /external/gtest/src/
gtest-filepath.cc 42 #include <sys/stat.h>
49 #include <sys/stat.h> // NOLINT
180 struct stat file_stat = {};
181 return stat(pathname_.c_str(), &file_stat) == 0;
208 struct stat file_stat = {};
209 result = stat(pathname_.c_str(), &file_stat) == 0 &&
  /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...]
  /frameworks/base/cmds/installd/
commands.c 243 struct stat s;
251 if (stat(pkgpath, &s) < 0) return -1;
266 static int stat_size(struct stat *s)
282 struct stat s;
322 struct stat s;
334 if (stat(apkpath, &s) == 0) {
341 if (stat(fwdlock_apkpath, &s) == 0) {
347 if (stat(path, &s) == 0) {
492 struct stat apk_stat, dex_stat;
512 if (stat(dex_path, &dex_stat) == 0)
    [all...]
  /hardware/msm7k/librpc/
xdr.c 259 bool_t stat; local
276 stat = (*proc) (xdrs, *pp, LASTUNSIGNED);
282 return stat;
347 bool_t stat = TRUE; local
380 for (i = 0; (i < c) && stat; i++) {
381 stat = (*elproc) (xdrs, target, LASTUNSIGNED);
393 return stat;
  /packages/apps/Settings/src/com/android/settings/deviceinfo/
Memory.java 283 StatFs stat = new StatFs(path.getPath());
284 long blockSize = stat.getBlockSize();
285 long totalBlocks = stat.getBlockCount();
286 long availableBlocks = stat.getAvailableBlocks();
321 StatFs stat = new StatFs(path.getPath());
322 long blockSize = stat.getBlockSize();
323 long availableBlocks = stat.getAvailableBlocks();
  /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...]
  /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...]
  /prebuilt/linux-x86/toolchain/i686-unknown-linux-gnu-4.2.1/lib/gcc/i686-unknown-linux-gnu/4.2.1/include/xorg/
xf86_OSlib.h 128 # include <sys/stat.h>
283 #include <sys/stat.h>
364 # include <sys/stat.h>
393 # include <sys/stat.h>
442 # include <sys/stat.h>
583 # include <sys/stat.h>
621 #include <sys/stat.h>
665 #include <sys/stat.h>
690 #include <sys/stat.h>
  /external/webkit/WebKit/win/
WebHTMLRepresentation.cpp 283 STATSTG stat;
284 hr = data->Stat(&stat, STATFLAG_NONAME);
288 if (stat.cbSize.HighPart || !stat.cbSize.LowPart)
291 Vector<char> dataBuffer(stat.cbSize.LowPart);
  /frameworks/base/core/jni/
android_os_FileUtils.cpp 27 #include <sys/stat.h>
92 struct stat st;
93 if (stat(file8.string(), &st) != 0) {
145 struct stat s;
146 int res = stat(pathStr, &s);
  /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());

Completed in 1351 milliseconds

1 2 3 4 5 67 8 91011>>