Searched refs:ctxPoint (Results 1 – 6 of 6) sorted by relevance
319 bool HdcForwardBase::DetechForwardType(HCtxForward ctxPoint) in DetechForwardType() argument321 string &sFType = ctxPoint->localArgs[0]; in DetechForwardType()322 string &sNodeCfg = ctxPoint->localArgs[1]; in DetechForwardType()325 ctxPoint->type = FORWARD_TCP; in DetechForwardType()327 ctxPoint->type = FORWARD_DEVICE; in DetechForwardType()332 ctxPoint->type = FORWARD_ABSTRACT; in DetechForwardType()335 ctxPoint->type = FORWARD_RESERVED; in DetechForwardType()338 ctxPoint->type = FORWARD_FILESYSTEM; in DetechForwardType()340 ctxPoint->type = FORWARD_JDWP; in DetechForwardType()347 bool HdcForwardBase::SetupTCPPoint(HCtxForward ctxPoint) in SetupTCPPoint() argument[all …]
62 virtual bool SetupJdwpPoint(HCtxForward ctxPoint) in SetupJdwpPoint() argument76 bool SetupPoint(HCtxForward ctxPoint);90 bool DetechForwardType(HCtxForward ctxPoint);91 bool SetupTCPPoint(HCtxForward ctxPoint);92 bool SetupDevicePoint(HCtxForward ctxPoint);93 bool SetupFilePoint(HCtxForward ctxPoint);
33 HCtxForward ctxPoint = (HCtxForward)handle->data; in SetupJdwpPointCallBack() local34 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() argument46 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()[all …]
26 bool SetupJdwpPoint(HCtxForward ctxPoint) override;
260 if (!ctxPoint) { in FreeContext()263 if (loop && !uv_is_closing(reinterpret_cast<uv_handle_t *>(&ctxPoint->pipe))) { in FreeContext()264 uv_close(reinterpret_cast<uv_handle_t *>(&ctxPoint->pipe), nullptr); in FreeContext()266 if (ctxPoint->hasNewFd && loop && in FreeContext()267 !uv_is_closing(reinterpret_cast<uv_handle_t *>(&ctxPoint->newFd))) { in FreeContext()268 uv_close(reinterpret_cast<uv_handle_t *>(&ctxPoint->newFd), nullptr); in FreeContext()270 delete ctxPoint; in FreeContext()271 ctxPoint = nullptr; in FreeContext()279 ctxPoint = static_cast<HCtxJdwpSimulator>(MallocContext()); in Connect()280 if (!ctxPoint) { in Connect()[all …]
54 HCtxJdwpSimulator ctxPoint; variable