Lines Matching refs:sNodeCfg
338 string &sNodeCfg = ctxPoint->localArgs[1]; in DetechForwardType() local
350 sNodeCfg = harmonyReservedSocketPrefix + sNodeCfg; in DetechForwardType()
353 sNodeCfg = filesystemSocketPrefix + sNodeCfg; in DetechForwardType()
367 string &sNodeCfg = ctxPoint->localArgs[1]; in SetupTCPPoint() local
368 int port = atoi(sNodeCfg.c_str()); in SetupTCPPoint()
376 ctxPoint->lastError = "TCP Port listen failed at " + sNodeCfg; in SetupTCPPoint()
395 string &sNodeCfg = ctxPoint->localArgs[1]; in SetupDevicePoint() local
396 string resolvedPath = Base::CanonicalizeSpecPath(sNodeCfg); in SetupDevicePoint()
420 bool HdcForwardBase::LocalAbstractConnect(uv_pipe_t *pipe, string &sNodeCfg) in LocalAbstractConnect() argument
432 int addrLen = sNodeCfg.size() + offsetof(struct sockaddr_un, sun_path) + 1; in LocalAbstractConnect()
436 …if (memcpy_s(addr.sun_path + 1, sizeof(addr.sun_path) - 1, sNodeCfg.c_str(), sNodeCfg.size()) != E… in LocalAbstractConnect()
459 string &sNodeCfg = ctxPoint->localArgs[1]; in SetupFilePoint() local
464 unlink(sNodeCfg.c_str()); in SetupFilePoint()
466 if (uv_pipe_bind(&ctxPoint->pipe, sNodeCfg.c_str())) { in SetupFilePoint()
476 bool abstractRet = LocalAbstractConnect(&ctxPoint->pipe, sNodeCfg); in SetupFilePoint()
489 uv_pipe_connect(connect, &ctxPoint->pipe, sNodeCfg.c_str(), ConnectTarget); in SetupFilePoint()