Searched refs:ctxPoint (Results 1 – 6 of 6) sorted by relevance
322 bool HdcForwardBase::DetechForwardType(HCtxForward ctxPoint) in DetechForwardType() argument324 string &sFType = ctxPoint->localArgs[0]; in DetechForwardType()325 string &sNodeCfg = ctxPoint->localArgs[1]; in DetechForwardType()328 ctxPoint->type = FORWARD_TCP; in DetechForwardType()330 ctxPoint->type = FORWARD_DEVICE; in DetechForwardType()335 ctxPoint->type = FORWARD_ABSTRACT; in DetechForwardType()338 ctxPoint->type = FORWARD_RESERVED; in DetechForwardType()341 ctxPoint->type = FORWARD_FILESYSTEM; in DetechForwardType()343 ctxPoint->type = FORWARD_JDWP; in DetechForwardType()350 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;
261 if (!ctxPoint) { in FreeContext()264 if (loop && !uv_is_closing(reinterpret_cast<uv_handle_t *>(&ctxPoint->pipe))) { in FreeContext()265 uv_close(reinterpret_cast<uv_handle_t *>(&ctxPoint->pipe), nullptr); in FreeContext()267 if (ctxPoint->hasNewFd && loop && in FreeContext()268 !uv_is_closing(reinterpret_cast<uv_handle_t *>(&ctxPoint->newFd))) { in FreeContext()269 uv_close(reinterpret_cast<uv_handle_t *>(&ctxPoint->newFd), nullptr); in FreeContext()271 delete ctxPoint; in FreeContext()272 ctxPoint = nullptr; in FreeContext()280 ctxPoint = static_cast<HCtxJdwpSimulator>(MallocContext()); in Connect()281 if (!ctxPoint) { in Connect()[all …]
54 HCtxJdwpSimulator ctxPoint; variable