| 265 | } |
| 266 | bool isOnMainThread() const override { return baseNetwork->isOnMainThread(); } |
| 267 | THREAD_HANDLE startThread(THREAD_FUNC_RETURN (*func)(void*), void* arg, int stackSize, const char* name) override { |
| 268 | return baseNetwork->startThread(func, arg, stackSize, name); |
| 269 | } |
| 270 | Future<Reference<class IAsyncFile>> open(std::string filename, int64_t flags, int64_t mode) { |
| 271 | return IAsyncFileSystem::filesystem()->open(filename, flags, mode); |
| 272 | } |
no outgoing calls
no test coverage detected