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