Home
last modified time | relevance | path

Searched refs:FSync (Results 1 – 5 of 5) sorted by relevance

/test/dittosuite/include/ditto/
Dsyscall.h56 virtual int FSync(int fd) = 0;
85 int FSync(int fd) override;
/test/dittosuite/test/include/
Dmock_syscall.h41 ON_CALL(*this, FSync(::testing::_)).WillByDefault(::testing::Return(0)); in MockSyscall()
63 MOCK_METHOD(int, FSync, (int fd), (override));
/test/dittosuite/src/
Dsyscall.cpp57 int Syscall::FSync(int fd) { in FSync() function in dittosuite::Syscall
Dread_write_file.cpp130 if (fsync_ && syscall_.FSync(fd) != 0) { in RunSingle()
/test/dittosuite/test/
Dwrite_file_test.cpp45 EXPECT_CALL(syscall_, FSync(fd_)); in TEST_F()