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) {
39 StatCalls[Path] = statBuf;
44 void InjectFile(const char *Path, ino_t INode) {
45 InjectFileOrDirectory(Path, INode, /*IsFile=*/true);
49 void InjectDirectory(const char *Path, ino_t INode) {
50 InjectFileOrDirectory(Path, INode, /*IsFile=*/false);
54 virtual LookupResult getStat(const char *Path, struct stat &StatBuf,
56 if (StatCalls.count(Path) != 0) {
57 StatBuf = StatCalls[Path];
123 // getFile() returns non-NULL if a real file exists at the given path.
140 // getFile() returns non-NULL if a virtual file exists at the given path.
174 // exists at the given path.