Home | History | Annotate | Download | only in libclang

Lines Matching refs:ino

91   ino_t ino;
96 PPRegion() : ino(), ModTime(), dev(), Offset() {}
97 PPRegion(dev_t dev, ino_t ino, unsigned offset, time_t modTime)
98 : ino(ino), ModTime(modTime), dev(dev), Offset(offset) {}
100 ino_t getIno() const { return ino; }
108 return lhs.dev == rhs.dev && lhs.ino == rhs.ino &&