Lines Matching refs:ctxJdwp
143 HCtxJdwpSimulator ctxJdwp = static_cast<HCtxJdwpSimulator>(q->data); in ReceiveNewFd() local
144 HdcJdwpSimulator *thisClass = static_cast<HdcJdwpSimulator *>(ctxJdwp->thisClass); in ReceiveNewFd()
168 uv_tcp_init(thisClass->loop, &ctxJdwp->newFd); in ReceiveNewFd()
169 if (uv_accept(q, reinterpret_cast<uv_stream_t *>(&ctxJdwp->newFd)) == 0) { in ReceiveNewFd()
171 ctxJdwp->hasNewFd = true; in ReceiveNewFd()
172 uv_fileno(reinterpret_cast<const uv_handle_t *>(&ctxJdwp->newFd), &fd); in ReceiveNewFd()
174 uv_read_start(reinterpret_cast<uv_stream_t *>(&ctxJdwp->newFd), alloc_buffer, in ReceiveNewFd()
177 ctxJdwp->hasNewFd = false; in ReceiveNewFd()
178 uv_close(reinterpret_cast<uv_handle_t *>(&ctxJdwp->newFd), NULL); in ReceiveNewFd()
190 HCtxJdwpSimulator ctxJdwp = static_cast<HCtxJdwpSimulator>(connection->data); in ConnectJdwp() local
191 HdcJdwpSimulator *thisClass = static_cast<HdcJdwpSimulator *>(ctxJdwp->thisClass); in ConnectJdwp()
221 thisClass->SendToStream(reinterpret_cast<uv_stream_t *>(&ctxJdwp->pipe), info, pkgSize, in ConnectJdwp()
237 thisClass->SendToStream(reinterpret_cast<uv_stream_t *>(&ctxJdwp->pipe), in ConnectJdwp()
241 uv_read_start(reinterpret_cast<uv_stream_t *>(&ctxJdwp->pipe), thisClass->alloc_buffer, in ConnectJdwp()