/external/toybox/toys/posix/ |
split.c | 46 fstat(infd, &st);
|
/external/valgrind/coregrind/m_gdbserver/ |
32bit-core.xml | 58 <reg name="fstat" bitsize="32" type="int" group="float"/>
|
/external/vboot_reference/futility/ |
cmd_gbb_utility.c | 212 if (0 != fstat(fileno(fp), &sb)) { 213 fprintf(stderr, "ERROR: can't fstat %s: %s\n", 305 if (0 != fstat(fileno(fp), &sb)) { 306 fprintf(stderr, "ERROR: can't fstat %s: %s\n",
|
dump_kernel_config_lib.c | 149 if (fstat(fd, &stat_buf)) {
|
/hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/ |
vpxstats.c | 35 fstat(fd, &stat_buf);
|
/libcore/luni/src/main/java/android/system/ |
StructStat.java | 22 * File information returned by {@link Os#fstat}, {@link Os#lstat}, and {@link Os#stat}.
|
/libcore/luni/src/main/java/libcore/io/ |
MemoryMappedFile.java | 52 long size = Libcore.os.fstat(fd).st_size;
|
IoUtils.java | 203 // NOTE: This costs us an additional call to fstat(2) to test whether 214 final StructStat stat = Libcore.os.fstat(fd);
|
/libcore/ojluni/src/main/native/ |
io_util_md.c | 83 fstat(fd, &stat);
|
/prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/sysroot/usr/include/sys/ |
stat.h | 214 extern int fstat (int __fd, struct stat *__buf) __THROW __nonnull ((2)); 220 extern int __REDIRECT_NTH (fstat, (int __fd, struct stat *__buf), fstat64) 224 # define fstat fstat64 469 __NTH (fstat (int __fd, struct stat *__statbuf)) 467 __NTH (fstat (int __fd, struct stat *__statbuf)) function
|
/prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/i386-linux-gnu/sys/ |
stat.h | 216 extern int fstat (int __fd, struct stat *__buf) __THROW __nonnull ((2)); 222 extern int __REDIRECT_NTH (fstat, (int __fd, struct stat *__buf), fstat64) 226 # define fstat fstat64 471 __NTH (fstat (int __fd, struct stat *__statbuf)) 469 __NTH (fstat (int __fd, struct stat *__statbuf)) function
|
/prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/x86_64-linux-gnu/sys/ |
stat.h | 216 extern int fstat (int __fd, struct stat *__buf) __THROW __nonnull ((2)); 222 extern int __REDIRECT_NTH (fstat, (int __fd, struct stat *__buf), fstat64) 226 # define fstat fstat64 471 __NTH (fstat (int __fd, struct stat *__statbuf)) 469 __NTH (fstat (int __fd, struct stat *__statbuf)) function
|
/prebuilts/go/darwin-x86/src/os/ |
stat_plan9.go | 57 n, err = syscall.Fstat(a.fd, buf)
|
/prebuilts/go/linux-x86/src/os/ |
stat_plan9.go | 57 n, err = syscall.Fstat(a.fd, buf)
|
/system/core/libutils/ |
Tokenizer.cpp | 62 if (fstat(fd, &stat)) {
|
/system/extras/kexec_tools/ |
kexecload.c | 32 fstat(f, &st);
|
/system/update_engine/payload_consumer/ |
file_descriptor.cc | 74 if (fstat(fd_, &stbuf) < 0) {
|
/external/curl/tests/libtest/ |
lib582.c | 255 hd = fstat(fileno(hd_src), &file_info); 259 fprintf(stderr, "fstat() failed with error: %d (%s)\n",
|
/external/dbus/dbus/ |
dbus-file-unix.c | 82 if (fstat (fd, &sb) < 0) 89 _dbus_verbose ("fstat() failed: %s",
|
/external/libchrome/sandbox/linux/seccomp-bpf-helpers/ |
baseline_policy_unittest.cc | 49 // This also tests that read(), write() and fstat() are allowed. 54 int sys_ret = fstat(read_end.get(), &stat_buf);
|
/external/libgdx/extensions/gdx-freetype/jni/freetype-2.6.2/builds/unix/ |
ftsystem.c | 262 if ( fstat( file, &stat_buf ) < 0 ) 265 FT_ERROR(( " could not `fstat' file `%s'\n", filepathname ));
|
/external/libpcap/tests/ |
filtertest.c | 66 * we get all the bytes specified by the size we get from "fstat()". 85 if (fstat(fd, &buf) < 0)
|
/external/strace/tests/ |
Makefile.am | 60 fstat \ 190 fstat.test \
|
/frameworks/av/media/libmediaplayerservice/ |
MetadataRetrieverClient.cpp | 141 int ret = fstat(fd, &sb); 143 ALOGE("fstat(%d) failed: %d, %s", fd, ret, strerror(errno));
|
/frameworks/base/core/jni/android/graphics/ |
BitmapRegionDecoder.cpp | 78 if (fstat(descriptor, &fdStat) == -1) { 80 return nullObjectReturn("fstat return -1");
|