| 182 | return underlayfs->stat(path, buf); |
| 183 | } |
| 184 | virtual int lstat(const char *path, struct stat *buf) override |
| 185 | { |
| 186 | PathCat __(this, path); |
| 187 | return underlayfs->lstat(path, buf); |
| 188 | } |
| 189 | virtual int access(const char *path, int mode) override |
| 190 | { |
| 191 | PathCat __(this, path); |
no outgoing calls
no test coverage detected