| 167 | } |
| 168 | |
| 169 | int32_t AP_Filesystem::lseek(int fd, int32_t offset, int seek_from) |
| 170 | { |
| 171 | const Backend &backend = backend_by_fd(fd); |
| 172 | return backend.fs.lseek(fd, offset, seek_from); |
| 173 | } |
| 174 | |
| 175 | int AP_Filesystem::stat(const char *pathname, struct stat *stbuf) |
| 176 | { |
no outgoing calls
no test coverage detected