Home
last modified time | relevance | path

Searched refs:FAllocate (Results 1 – 4 of 4) sorted by relevance

/test/dittosuite/include/ditto/
Dsyscall.h53 virtual int FAllocate(int fd, int mode, int64_t offset, int64_t len) = 0;
80 int FAllocate(int fd, int mode, int64_t offset, int64_t len) override;
/test/dittosuite/test/include/
Dmock_syscall.h33 ON_CALL(*this, FAllocate(::testing::_, ::testing::_, ::testing::_, ::testing::_)) in MockSyscall()
60 MOCK_METHOD(int, FAllocate, (int fd, int mode, int64_t offset, int64_t len), (override));
/test/dittosuite/src/
Dresize_file.cpp32 if (syscall_.FAllocate(fd, 0, 0, size_) != 0) { in RunSingle()
Dsyscall.cpp45 int Syscall::FAllocate(int fd, int mode, int64_t offset, int64_t len) { in FAllocate() function in dittosuite::Syscall