Lines Matching full:inode
30 void InjectFileOrDirectory(const char *Path, ino_t INode, bool IsFile) {
34 statBuf.st_ino = INode;
42 // Inject a file with the given inode value to the fake file system.
43 void InjectFile(const char *Path, ino_t INode) {
44 InjectFileOrDirectory(Path, INode, /*IsFile=*/true);
47 // Inject a directory with the given inode value to the fake file system.
48 void InjectDirectory(const char *Path, ino_t INode) {
49 InjectFileOrDirectory(Path, INode, /*IsFile=*/false);
194 // Inject two real files with the same inode.
207 // Inject two real files with the same inode.