Searched refs:FAdvise (Results 1 – 5 of 5) sorted by relevance
/test/dittosuite/include/ditto/ |
D | syscall.h | 52 virtual int FAdvise(int fd, int64_t offset, int64_t len, int advice) = 0; 79 int FAdvise(int fd, int64_t offset, int64_t len, int advice) override;
|
/test/dittosuite/test/include/ |
D | mock_syscall.h | 31 ON_CALL(*this, FAdvise(::testing::_, ::testing::_, ::testing::_, ::testing::_)) in MockSyscall() 59 MOCK_METHOD(int, FAdvise, (int fd, int64_t offset, int64_t len, int advice), (override));
|
/test/dittosuite/src/ |
D | syscall.cpp | 41 int Syscall::FAdvise(int fd, int64_t offset, int64_t len, int advice) { in FAdvise() function in dittosuite::Syscall
|
D | read_write_file.cpp | 146 if (syscall_.FAdvise(fd, 0, file_size, fadvise_) != 0) { in SetUpSingle()
|
/test/dittosuite/test/ |
D | read_file_test.cpp | 47 EXPECT_CALL(syscall_, FAdvise(fd_, 0, MockSyscall::kDefaultFileSize, fadvise)); in TEST_F()
|