Home | History | Annotate | Download | only in Basic

Lines Matching refs:Path

26   // Maps a file/directory path to its desired stat result.  Anything
30 void InjectFileOrDirectory(const char *Path, ino_t INode, bool IsFile) {
38 StatCalls[Path] = statBuf;
43 void InjectFile(const char *Path, ino_t INode) {
44 InjectFileOrDirectory(Path, INode, /*IsFile=*/true);
48 void InjectDirectory(const char *Path, ino_t INode) {
49 InjectFileOrDirectory(Path, INode, /*IsFile=*/false);
53 virtual LookupResult getStat(const char *Path, struct stat &StatBuf,
55 if (StatCalls.count(Path) != 0) {
56 StatBuf = StatCalls[Path];
122 // getFile() returns non-NULL if a real file exists at the given path.
139 // getFile() returns non-NULL if a virtual file exists at the given path.
173 // exists at the given path.