Lines Matching refs:contextIO
79 CtxUnityIO *contextIO = reinterpret_cast<CtxUnityIO *>(req->data); in OnFileIO() local
80 ContextUnity *context = reinterpret_cast<ContextUnity *>(contextIO->context); in OnFileIO()
82 uint8_t *bufIO = contextIO->bufIO; in OnFileIO()
99 delete contextIO; // req is part of contextIO, no need to release in OnFileIO()
105 auto contextIO = new CtxUnityIO(); in AppendLocalLog() local
106 if (!buf || !contextIO) { in AppendLocalLog()
110 if (contextIO) { in AppendLocalLog()
111 delete contextIO; in AppendLocalLog()
115 uv_fs_t *req = &contextIO->fs; in AppendLocalLog()
116 contextIO->bufIO = buf; in AppendLocalLog()
117 contextIO->context = &opContext; in AppendLocalLog()
118 req->data = contextIO; in AppendLocalLog()