Searched refs:Access (Results 1 – 4 of 4) sorted by relevance
/test/dittosuite/src/ |
D | utils.cpp | 41 return syscall.Access(path_name, F_OK) != -1; in FileExists()
|
D | syscall.cpp | 29 int Syscall::Access(const std::string& path_name, int mode) { in Access() function in dittosuite::Syscall
|
/test/dittosuite/include/ditto/ |
D | syscall.h | 49 virtual int Access(const std::string& path_name, int mode) = 0; 76 int Access(const std::string& path_name, int mode) override;
|
/test/dittosuite/test/include/ |
D | mock_syscall.h | 28 ON_CALL(*this, Access(::testing::_, ::testing::_)).WillByDefault(::testing::Return(0)); in MockSyscall() 56 MOCK_METHOD(int, Access, (const std::string& path_name, int mode), (override));
|