fstat 37 base/files/file_posix.cc return fstat(fd, sb); fstat 23 base/files/memory_mapped_file_posix.cc if (fstat(file_.GetPlatformFile(), &file_stat) == -1 ) { fstat 187 base/linux_util.cc if (fstat(fd, &buf) < 0) fstat 61 base/memory/shared_memory_posix.cc if (fstat(handle.fd, &st) == 0) { fstat 187 base/memory/shared_memory_posix.cc (fstat(fd, &sb) != 0 || sb.st_uid != real_uid || fstat 214 base/memory/shared_memory_posix.cc if (fstat(fileno(fp.get()), &stat) != 0) fstat 364 base/memory/shared_memory_posix.cc if (fstat(fileno(fp.get()), &st)) fstat 366 base/memory/shared_memory_posix.cc if (fstat(readonly_fd.get(), &readonly_st)) fstat 560 base/memory/shared_memory_unittest.cc EXPECT_EQ(0, fstat(shm_fd, &shm_stat)); fstat 586 base/memory/shared_memory_unittest.cc EXPECT_EQ(0, fstat(shm_fd, &shm_stat)); fstat 36 base/platform_file_posix.cc return fstat(fd, sb); fstat 130 base/third_party/xdg_mime/xdgmimecache.c if (fstat (fd, &st) < 0 || st.st_size < 4) fstat 60 components/breakpad/app/breakpad_linux.cc #define FSTAT_FUNC fstat fstat 49 components/nacl/loader/nonsfi/irt_fdio.cc if (fstat(fd, &host_st)) fstat 660 content/browser/renderer_host/render_sandbox_host_linux.cc if (fstat(reply_fd, &st) == 0 && S_ISDIR(st.st_mode)) { fstat 122 content/common/child_process_sandbox_support_impl_linux.cc if (fstat(fd, &st) < 0) fstat 171 content/common/plugin_list_posix.cc bool ret = (fstat(fd, &stat_buf) >= 0 && S_ISREG(stat_buf.st_mode)); fstat 134 dbus/message_unittest.cc int status_stdout = HANDLE_EINTR(fstat(1, &sb_stdout)); fstat 137 dbus/message_unittest.cc int status_fd = HANDLE_EINTR(fstat(fd_value.value(), &sb_fd)); fstat 111 ipc/file_descriptor_set_posix.cc if (fstat(i->fd, &st) == 0 && S_ISDIR(st.st_mode)) fstat 76 ipc/ipc_send_fds_test.cc ASSERT_EQ(fstat(fd, &st), 0); fstat 155 ipc/ipc_send_fds_test.cc fstat(fd, &st); fstat 171 ipc/ipc_send_fds_test.cc fstat(fd, &st); fstat 217 native_client_sdk/src/libraries/nacl_io/kernel_intercept.cc return s_state.kp->fstat(fd, buf); fstat 381 native_client_sdk/src/libraries/nacl_io/kernel_proxy.cc int result = fstat(fd, buf); fstat 111 native_client_sdk/src/libraries/nacl_io/kernel_proxy.h virtual int fstat(int fd, struct stat *buf); fstat 61 native_client_sdk/src/libraries/nacl_io/kernel_wrap.h extern int fstat(int fd, struct stat* buf) NOTHROW; fstat 130 native_client_sdk/src/libraries/nacl_io/kernel_wrap_bionic.cc OP(fstat); \ fstat 186 native_client_sdk/src/libraries/nacl_io/kernel_wrap_bionic.cc int WRAP(fstat)(int fd, struct nacl_abi_stat *nacl_buf) { fstat 376 native_client_sdk/src/libraries/nacl_io/kernel_wrap_bionic.cc CHECK_REAL(fstat); fstat 378 native_client_sdk/src/libraries/nacl_io/kernel_wrap_bionic.cc int err = REAL(fstat)(fd, (struct stat*) &st); fstat 438 native_client_sdk/src/libraries/nacl_io/kernel_wrap_bionic.cc CHECK_REAL(fstat); fstat 132 native_client_sdk/src/libraries/nacl_io/kernel_wrap_glibc.cc OP(fstat); \ fstat 171 native_client_sdk/src/libraries/nacl_io/kernel_wrap_glibc.cc int WRAP(fstat)(int fd, struct nacl_abi_stat *nacl_buf) { fstat 316 native_client_sdk/src/libraries/nacl_io/kernel_wrap_glibc.cc CHECK_REAL(fstat); fstat 317 native_client_sdk/src/libraries/nacl_io/kernel_wrap_glibc.cc int err = REAL(fstat)(fd, &st); fstat 65 native_client_sdk/src/libraries/nacl_io/kernel_wrap_newlib.cc OP(fdio, fstat); \ fstat 130 native_client_sdk/src/libraries/nacl_io/kernel_wrap_newlib.cc int WRAP(fstat)(int fd, struct stat* buf) { fstat 284 native_client_sdk/src/libraries/nacl_io/kernel_wrap_newlib.cc CHECK_REAL(fstat); fstat 285 native_client_sdk/src/libraries/nacl_io/kernel_wrap_newlib.cc return REAL(fstat)(fd, buf); fstat 228 native_client_sdk/src/tests/nacl_io_test/kernel_wrap_test.cc TEST_F(KernelWrapTest, fstat) { fstat 233 native_client_sdk/src/tests/nacl_io_test/kernel_wrap_test.cc EXPECT_CALL(mock, fstat(kDummyInt, _)) fstat 237 native_client_sdk/src/tests/nacl_io_test/kernel_wrap_test.cc EXPECT_EQ(0, fstat(kDummyInt, &out_statbuf)); fstat 239 native_client_sdk/src/tests/nacl_io_test/kernel_wrap_test.cc EXPECT_EQ(-1, fstat(kDummyInt, &out_statbuf)); fstat 33 native_client_sdk/src/tests/nacl_io_test/mock_kernel_proxy.h MOCK_METHOD2(fstat, int(int, struct stat*)); fstat 87 net/base/file_stream_context_posix.cc if (fstat(file_.GetPlatformFile(), &info) != 0) { fstat 127 net/tools/flip_server/flip_in_mem_edsm_server.cc if (fstat(fd, &pid_stat) == -1) { fstat 28 ppapi/native_client/src/trusted/plugin/file_utils.cc if (fstat(fd, &stat_buf) != 0) { fstat 663 ppapi/native_client/src/trusted/plugin/plugin.cc if (0 != fstat(info.get_desc(), &stat_buf)) { fstat 107 sandbox/linux/seccomp-bpf/sandbox_bpf.cc fstat(task, &sb) != 0 || sb.st_nlink != 3 || IGNORE_EINTR(close(task))) { fstat 207 sandbox/linux/services/libc_urandom_override.cc int result = fstat(base::GetUrandomFD(), buf); fstat 30 sandbox/linux/services/thread_helpers.cc int fstat_ret = fstat(proc_self_task, &task_stat); fstat 94 sandbox/linux/suid/linux_util.c if (fstat(proc_pid_fd, &statbuf) < 0 || uid != statbuf.st_uid) { fstat 42 sandbox/linux/suid/process_util_linux.c if (fstat(dirfd, &statbuf) < 0) { fstat 74 third_party/bspatch/mbspatch.cc s = fstat(fd, &hs); fstat 234 third_party/bspatch/mbspatch.cc if ((ret = fstat(ofd, &os))) { fstat 2759 third_party/libevent/evdns.c if (fstat(fd, &st)) { err = 2; goto out1; } fstat 153 third_party/npapi/npspy/extern/nspr/md/sunos4.h extern int fstat(int, struct stat *); fstat 24464 third_party/sqlite/amalgamation/sqlite3.c { "fstat", (sqlite3_syscall_ptr)fstat, 0 }, fstat 323 third_party/sqlite/src/src/os_unix.c { "fstat", (sqlite3_syscall_ptr)fstat, 0 }, fstat 346 third_party/sqlite/src/src/test_demovfs.c rc = fstat(p->fd, &sStat); fstat 491 third_party/sqlite/src/tool/showdb.c fstat(db, &sbuf); fstat 292 third_party/sqlite/src/tool/showwal.c fstat(fd, &sbuf); fstat 81 third_party/talloc/libreplace/repdir_getdents.c if (fstat(d->fd, &sb) < 0) { fstat 83 third_party/talloc/libreplace/repdir_getdirentries.c if (fstat(d->fd, &sb) < 0) { fstat 71 third_party/talloc/libreplace/test/testsuite.c if (fstat(fd, &st) != 0) { fstat 892 third_party/talloc/libreplace/test/testsuite.c if (fstat(fd, &st1) != 0) { fstat 908 third_party/talloc/libreplace/test/testsuite.c if (fstat(fd, &st2) != 0) { fstat 922 third_party/talloc/libreplace/test/testsuite.c if (fstat(fd, &st3) != 0) { fstat 974 third_party/talloc/libreplace/test/testsuite.c if (fstat(fd, &st1) != 0) { fstat 991 third_party/talloc/libreplace/test/testsuite.c if (fstat(fd, &st2) != 0) { fstat 1868 third_party/tcmalloc/chromium/src/base/linux_syscall_support.h LSS_INLINE _syscall2(int, fstat, int, f, fstat 193 third_party/tcmalloc/chromium/src/tests/profiledata_unittest.cc if (fstat(fd.get(), &statbuf) != 0) fstat 1784 third_party/tcmalloc/vendor/src/base/linux_syscall_support.h LSS_INLINE _syscall2(int, fstat, int, f, fstat 193 third_party/tcmalloc/vendor/src/tests/profiledata_unittest.cc if (fstat(fd.get(), &statbuf) != 0) fstat 89 ui/surface/transport_dib_posix.cc if ((fstat(shared_memory_.handle().fd, &st) != 0) ||