Lines Matching refs:ctxPoint
33 HCtxForward ctxPoint = (HCtxForward)handle->data; in SetupJdwpPointCallBack() local
34 uint32_t id = ctxPoint->id; in SetupJdwpPointCallBack()
35 HdcDaemonForward *thisClass = reinterpret_cast<HdcDaemonForward *>(ctxPoint->thisClass); in SetupJdwpPointCallBack()
36 thisClass->SetupPointContinue(ctxPoint, 1); // It usually works in SetupJdwpPointCallBack()
43 bool HdcDaemonForward::SetupJdwpPoint(HCtxForward ctxPoint) in SetupJdwpPoint() argument
47 uint32_t pid = std::stol(ctxPoint->localArgs[1]); in SetupJdwpPoint()
48 if (ctxPoint->checkPoint) { in SetupJdwpPoint()
49 uint32_t id = ctxPoint->id; in SetupJdwpPoint()
51 SetupPointContinue(ctxPoint, (int)ret); in SetupJdwpPoint()
61 if (uv_tcp_init(loopTask, &ctxPoint->tcp)) { in SetupJdwpPoint()
64 ctxPoint->tcp.data = ctxPoint; in SetupJdwpPoint()
65 if (uv_tcp_open(&ctxPoint->tcp, fds[0])) { in SetupJdwpPoint()
85 Base::IdleUvTask(loopTask, ctxPoint, SetupJdwpPointCallBack); in SetupJdwpPoint()
89 bool HdcDaemonForward::SetupArkPoint(HCtxForward ctxPoint) in SetupArkPoint() argument
93 std::string ark = ctxPoint->localArgs[0]; // ark in SetupArkPoint()
94 std::string svr = ctxPoint->localArgs[1]; // pid@tid@Debugger in SetupArkPoint()
97 SetupPointContinue(ctxPoint, true); in SetupArkPoint()
99 ctxPoint->lastError = ark + ":" + svr + " parameter invalid"; in SetupArkPoint()
106 SetupPointContinue(ctxPoint, (int)ret); in SetupArkPoint()
108 ctxPoint->lastError = ark + ":" + svr + " pid invalid"; in SetupArkPoint()
134 Base::IdleUvTask(loopTask, ctxPoint, SetupJdwpPointCallBack); in SetupArkPoint()