Lines Matching refs:ctxPoint
33 HCtxForward ctxPoint = (HCtxForward)handle->data; in SetupJdwpPointCallBack() local
34 HdcDaemonForward *thisClass = reinterpret_cast<HdcDaemonForward *>(ctxPoint->thisClass); in SetupJdwpPointCallBack()
35 thisClass->SetupPointContinue(ctxPoint, 1); // It usually works in SetupJdwpPointCallBack()
42 bool HdcDaemonForward::SetupJdwpPoint(HCtxForward ctxPoint) in SetupJdwpPoint() argument
46 uint32_t pid = std::stol(ctxPoint->localArgs[1]); in SetupJdwpPoint()
47 if (ctxPoint->checkPoint) { // checke in SetupJdwpPoint()
49 SetupPointContinue(ctxPoint, (int)ret); in SetupJdwpPoint()
59 if (uv_tcp_init(loopTask, &ctxPoint->tcp)) { in SetupJdwpPoint()
62 ctxPoint->tcp.data = ctxPoint; in SetupJdwpPoint()
63 if (uv_tcp_open(&ctxPoint->tcp, fds[0])) { in SetupJdwpPoint()
83 Base::IdleUvTask(loopTask, ctxPoint, SetupJdwpPointCallBack); in SetupJdwpPoint()