Searched refs:ctxPoint (Results 1 – 6 of 6) sorted by relevance
33 HCtxForward ctxPoint = (HCtxForward)handle->data; in SetupJdwpPointCallBack() local34 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() argument47 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()[all …]
26 bool SetupJdwpPoint(HCtxForward ctxPoint) override;27 bool SetupArkPoint(HCtxForward ctxPoint) override;
335 bool HdcForwardBase::DetechForwardType(HCtxForward ctxPoint) in DetechForwardType() argument337 string &sFType = ctxPoint->localArgs[0]; in DetechForwardType()338 string &sNodeCfg = ctxPoint->localArgs[1]; in DetechForwardType()341 ctxPoint->type = FORWARD_TCP; in DetechForwardType()343 ctxPoint->type = FORWARD_DEVICE; in DetechForwardType()348 ctxPoint->type = FORWARD_ABSTRACT; in DetechForwardType()351 ctxPoint->type = FORWARD_RESERVED; in DetechForwardType()354 ctxPoint->type = FORWARD_FILESYSTEM; in DetechForwardType()356 ctxPoint->type = FORWARD_JDWP; in DetechForwardType()358 ctxPoint->type = FORWARD_ARK; in DetechForwardType()[all …]
64 virtual bool SetupJdwpPoint(HCtxForward ctxPoint) in SetupJdwpPoint() argument68 virtual bool SetupArkPoint(HCtxForward ctxPoint) in SetupArkPoint() argument82 bool SetupPoint(HCtxForward ctxPoint);96 bool DetechForwardType(HCtxForward ctxPoint);97 bool SetupTCPPoint(HCtxForward ctxPoint);98 bool SetupDevicePoint(HCtxForward ctxPoint);99 bool SetupFilePoint(HCtxForward ctxPoint);
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