| 206 | return underlayfs->statfs(path, buf); |
| 207 | } |
| 208 | virtual int statvfs(const char *path, struct statvfs *buf) override |
| 209 | { |
| 210 | PathCat __(this, path); |
| 211 | return underlayfs->statvfs(path, buf); |
| 212 | } |
| 213 | virtual int utime(const char *path, const struct utimbuf *file_times) override |
| 214 | { |
| 215 | PathCat __(this, path); |
no outgoing calls
no test coverage detected