Lines Matching refs:contextIO
195 auto contextIO = new(std::nothrow) CtxFileIO(); in LoopReadOnThread() local
197 if (!contextIO || !buf) { in LoopReadOnThread()
198 if (contextIO) { in LoopReadOnThread()
199 delete contextIO; in LoopReadOnThread()
208 contextIO->bufIO = buf; in LoopReadOnThread()
209 contextIO->thisClass = this; in LoopReadOnThread()
211 ioReadThread = std::thread(FileIOOnThread, contextIO, readMax); in LoopReadOnThread()
250 auto contextIO = new(std::nothrow) CtxFileIO(); in WriteWithMem() local
251 if (!contextIO) { in WriteWithMem()
257 contextIO->bufIO = data; in WriteWithMem()
258 contextIO->size = static_cast<size_t>(size); in WriteWithMem()
259 contextIO->thisClass = this; in WriteWithMem()
260 PushWrite(contextIO); in WriteWithMem()