| 149 | } |
| 150 | |
| 151 | int32_t AP_Filesystem::read(int fd, void *buf, uint32_t count) |
| 152 | { |
| 153 | const Backend &backend = backend_by_fd(fd); |
| 154 | return backend.fs.read(fd, buf, count); |
| 155 | } |
| 156 | |
| 157 | int32_t AP_Filesystem::write(int fd, const void *buf, uint32_t count) |
| 158 | { |
no outgoing calls
no test coverage detected