Home
last modified time | relevance | path

Searched refs:ROOT_INODE (Results 1 – 2 of 2) sorted by relevance

/ohos5.0/base/security/dlp_permission_service/interfaces/inner_api/dlp_fuse/test/unittest/src/
H A Dfuse_daemon_test.cpp37 static const fuse_ino_t ROOT_INODE = 1; variable
197 FuseDaemon::fuseDaemonOper_.lookup(req, ROOT_INODE, nullptr);
215 FuseDaemon::fuseDaemonOper_.lookup(req, ROOT_INODE, ".");
216 EXPECT_EQ(ROOT_INODE, g_fuseReplyEntry.ino);
224 FuseDaemon::fuseDaemonOper_.lookup(req, ROOT_INODE, "..");
225 EXPECT_EQ(ROOT_INODE, g_fuseReplyEntry.ino);
233 FuseDaemon::fuseDaemonOper_.lookup(req, ROOT_INODE, "test");
256 FuseDaemon::fuseDaemonOper_.getattr(req, ROOT_INODE, nullptr);
287 FuseDaemon::fuseDaemonOper_.open(req, ROOT_INODE, nullptr);
344 FuseDaemon::fuseDaemonOper_.read(&req, ROOT_INODE, 1, -1, nullptr);
[all …]
/ohos5.0/base/security/dlp_permission_service/interfaces/inner_api/dlp_fuse/src/
H A Dfuse_daemon.cpp35 static constexpr int ROOT_INODE = 1; variable
71 if (parent != ROOT_INODE) { in FuseDaemonLookup()
80 fep.ino = ROOT_INODE; in FuseDaemonLookup()
108 if (ino == ROOT_INODE) { in FuseDaemonGetattr()
128 if (ino == ROOT_INODE) { in FuseDaemonOpen()
156 if (ino == ROOT_INODE) { in GetValidFileNode()
240 if (ino == ROOT_INODE) { in FuseDaemonForget()
318 if (ino != ROOT_INODE) { in FuseDaemonReadDir()
391 if (ino == ROOT_INODE) { in FuseDaemonSetAttr()
461 rootFileStat_.st_ino = ROOT_INODE; in InitRootFileStat()