Home | History | Annotate | Download | only in Frontend

Lines Matching refs:StatBuf

61   struct stat *StatBuf;
64 : FE(fe), Kind(IsFE), StatBuf(0) {}
66 PTHEntryKeyVariant(struct stat* statbuf, const char* path)
67 : Path(path), Kind(IsDE), StatBuf(new struct stat(*statbuf)) {}
70 : Path(path), Kind(IsNoExist), StatBuf(0) {}
92 ::Emit32(Out, (uint32_t) StatBuf->st_ino);
93 ::Emit32(Out, (uint32_t) StatBuf->st_dev);
94 ::Emit16(Out, (uint16_t) StatBuf->st_mode);
95 ::Emit64(Out, (uint64_t) StatBuf->st_mtime);
96 ::Emit64(Out, (uint64_t) StatBuf->st_size);
97 delete StatBuf;
519 LookupResult getStat(const char *Path, struct stat &StatBuf,
521 LookupResult Result = statChained(Path, StatBuf, FileDescriptor);
525 else if (S_ISDIR(StatBuf.st_mode)) {
530 StatBuf, Path), PTHEntry());