Lines Matching refs:sNodeCfg
325 string &sNodeCfg = ctxPoint->localArgs[1]; in DetechForwardType() local
337 sNodeCfg = harmonyReservedSocketPrefix + sNodeCfg; in DetechForwardType()
340 sNodeCfg = filesystemSocketPrefix + sNodeCfg; in DetechForwardType()
352 string &sNodeCfg = ctxPoint->localArgs[1]; in SetupTCPPoint() local
353 int port = atoi(sNodeCfg.c_str()); in SetupTCPPoint()
361 ctxPoint->lastError = "TCP Port listen failed at " + sNodeCfg; in SetupTCPPoint()
380 string &sNodeCfg = ctxPoint->localArgs[1]; in SetupDevicePoint() local
381 string resolvedPath = Base::CanonicalizeSpecPath(sNodeCfg); in SetupDevicePoint()
405 bool HdcForwardBase::LocalAbstractConnect(uv_pipe_t *pipe, string &sNodeCfg) in LocalAbstractConnect() argument
417 int addrLen = sNodeCfg.size() + offsetof(struct sockaddr_un, sun_path) + 1; in LocalAbstractConnect()
421 …if (memcpy_s(addr.sun_path + 1, sizeof(addr.sun_path) - 1, sNodeCfg.c_str(), sNodeCfg.size()) != E… in LocalAbstractConnect()
442 string &sNodeCfg = ctxPoint->localArgs[1]; in SetupFilePoint() local
447 unlink(sNodeCfg.c_str()); in SetupFilePoint()
449 if (uv_pipe_bind(&ctxPoint->pipe, sNodeCfg.c_str())) { in SetupFilePoint()
459 bool abstractRet = LocalAbstractConnect(&ctxPoint->pipe, sNodeCfg); in SetupFilePoint()
472 uv_pipe_connect(connect, &ctxPoint->pipe, sNodeCfg.c_str(), ConnectTarget); in SetupFilePoint()