HomeSort by relevance Sort by last modified time
    Searched full:fstat (Results 1 - 25 of 1219) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/strace/tests/
fstat64.test 5 . "${srcdir=.}/fstat.test"
fstat.c 9 # define TEST_SYSCALL_NAME fstat
fstat.test 3 # Check fstat syscall decoding.
.gitignore 25 fstat
  /development/ide/intellij/
p4.sh 3 if [ $1 == "fstat" ] && [ $2 =~ ".*/out/.*" ]; then
  /external/bison/m4/
fstat.m4 0 # fstat.m4 serial 4
21 dnl Replace fstat() for supporting the gnulib-defined open() on directories.
35 # Prerequisites of lib/fstat.c.
  /bionic/libc/arch-arm/syscalls/
fstat64.S 18 ALIAS_SYMBOL(fstat, fstat64)
  /bionic/libc/arch-arm64/syscalls/
fstat64.S 16 ALIAS_SYMBOL(fstat, fstat64)
  /bionic/libc/arch-mips/syscalls/
fstat64.S 21 ALIAS_SYMBOL(fstat, fstat64)
  /bionic/libc/arch-x86_64/syscalls/
fstat64.S 17 ALIAS_SYMBOL(fstat, fstat64)
  /external/bison/lib/
fstat.c 0 /* fstat() replacement.
23 /* Get the original definition of fstat. It might be defined as a macro. */
29 # undef fstat /* avoid warning on mingw64 with _FILE_OFFSET_BITS=64 */ macro
30 # define fstat _fstati64 macro
37 return fstat (fd, buf);
  /bionic/libc/arch-x86/syscalls/
fstat64.S 36 ALIAS_SYMBOL(fstat, fstat64)
  /external/e2fsprogs/include/nonunix/
unistd.h 21 #define fstat _fstat macro
  /external/autotest/client/tests/iosched_bugs/src/
dirty.c 39 if (fstat(fd, &st) < 0)
40 err(1, "fstat");
  /external/e2fsprogs/lib/e2p/
getflags.c 35 if (fstat (fd, &buf) == -1)
57 if (!fstat(fd, &buf) &&
  /external/libgsm/inc/
config.h 17 #define HAS_FSTAT 1 /* fstat syscall */
  /libcore/luni/src/test/java/libcore/dalvik/system/
SocketTaggingTest.java 42 this.stat = fstat(fd);
67 StructStat current = fstat(socketDescriptor);
148 private static StructStat fstat(FileDescriptor fd) { method in class:SocketTaggingTest
150 return android.system.Os.fstat(fd);
  /build/kati/
file.cc 36 if (fstat(fd, &st) < 0) {
37 PERROR("fstat failed for %s", filename.c_str());
  /bionic/tests/
fcntl_test.cpp 119 ASSERT_EQ(0, fstat(tf.fd, &sb));
124 ASSERT_EQ(0, fstat(tf.fd, &sb));
128 ASSERT_EQ(0, fstat(tf.fd, &sb));
133 ASSERT_EQ(0, fstat(tf.fd, &sb));
137 ASSERT_EQ(0, fstat(tf.fd, &sb));
  /cts/tests/tests/security/jni/
android_security_cts_MMapExecutableTest.cpp 49 if (fstat(fd, &stat_buf) == -1) {
50 ALOGE("fstat %s: %s", filename.c_str(), strerror(errno));
  /external/curl/tests/libtest/
lib541.c 58 hd = fstat(fileno(hd_src), &file_info);
62 fprintf(stderr, "fstat() failed with error: %d %s\n",
  /frameworks/av/drm/common/
ReadWriteUtils.cpp 44 if (fstat(fd, &sb) == 0 && sb.st_size > 0) {
66 if (fstat(fd, &sb) == 0 && sb.st_size > 0) {
  /system/bt/osi/test/
AlarmTestHarness.cpp 102 fstat(lock_fd, &lock_stat);
103 fstat(unlock_fd, &unlock_stat);
  /toolchain/binutils/binutils-2.25/libiberty/
fdmatch.c 57 if ((fstat (fd1, &sbuf1) == 0) &&
58 (fstat (fd2, &sbuf2) == 0) &&
  /external/clang/lib/Basic/
FileSystemStatCache.cpp 66 // do "open+fstat" on success than it is to do "stat+open".
69 // open succeeds, use fstat to get the stat info.
76 // Otherwise, the open succeeded. Do an fstat to get the information
85 // fstat rarely fails. If it does, claim the initial open didn't

Completed in 1084 milliseconds

1 2 3 4 5 6 7 8 91011>>