Lines Matching refs:contextIO
83 CtxUnityIO *contextIO = reinterpret_cast<CtxUnityIO *>(req->data); in OnFileIO() local
84 ContextUnity *context = reinterpret_cast<ContextUnity *>(contextIO->context); in OnFileIO()
86 uint8_t *bufIO = contextIO->bufIO; in OnFileIO()
103 delete contextIO; // req is part of contextIO, no need to release in OnFileIO()
109 auto contextIO = new CtxUnityIO(); in AppendLocalLog() local
110 if (!buf || !contextIO) { in AppendLocalLog()
114 if (contextIO) { in AppendLocalLog()
115 delete contextIO; in AppendLocalLog()
119 uv_fs_t *req = &contextIO->fs; in AppendLocalLog()
120 contextIO->bufIO = buf; in AppendLocalLog()
121 contextIO->context = &opContext; in AppendLocalLog()
122 req->data = contextIO; in AppendLocalLog()