Lines Matching refs:ino
45 void expect_lookup(const char *relpath, uint64_t ino) in expect_lookup() argument
47 FuseTest::expect_lookup(relpath, ino, S_IFDIR | 0755, 0, 1); in expect_lookup()
50 void expect_opendir(uint64_t ino, uint32_t flags, ProcessMockerT r) in expect_opendir() argument
65 in.header.nodeid == ino && in expect_opendir()
84 uint64_t ino = 42; in TEST_F() local
89 expect_lookup(RELPATH, ino); in TEST_F()
90 expect_opendir(ino, O_RDONLY, ReturnErrno(ENOENT)); in TEST_F()
93 expect_forget(ino, 1, &sem); in TEST_F()
110 uint64_t ino = 42; in TEST_F() local
112 expect_lookup(RELPATH, ino); in TEST_F()
113 expect_opendir(ino, O_RDONLY, ReturnErrno(EPERM)); in TEST_F()
123 uint64_t ino = 42; in TEST_F() local
126 expect_lookup(RELPATH, ino); in TEST_F()
127 expect_opendir(ino, O_RDONLY, in TEST_F()
143 uint64_t ino = 42; in TEST_F() local
146 expect_lookup(RELPATH, ino); in TEST_F()
147 expect_opendir(ino, O_EXEC, in TEST_F()
162 uint64_t ino = 42; in TEST_F() local
164 expect_lookup(RELPATH, ino); in TEST_F()
165 expect_opendir(ino, O_RDONLY, in TEST_F()
183 uint64_t ino = 42; in TEST_F() local
186 FuseTest::expect_lookup(RELPATH, ino, S_IFDIR | 0755, 0, 2); in TEST_F()
187 expect_opendir(ino, O_RDONLY, ReturnErrno(ENOSYS)); in TEST_F()