Searched defs:szAddress (Results 1 - 5 of 5) sorted by relevance

/vbox/src/VBox/Debugger/
H A DDBGCTcp.cpp248 char szAddress[512]; local
249 rc = CFGMR3QueryStringDef(pKey, "Address", szAddress, sizeof(szAddress), "");
257 rc = RTTcpServerCreate(szAddress, u32Port, RTTHREADTYPE_DEBUGGER, "DBGC", dbgcTcpConnection, pUVM, &pServer);
260 LogFlow(("DBGCTcpCreate: Created server on port %d %s\n", u32Port, szAddress));
/vbox/src/VBox/Main/src-server/generic/
H A DNetIf-generic.cpp137 char szAddress[16]; /* 4*3 + 3*1 + 1 */ local
154 RTStrPrintf(szAddress, sizeof(szAddress), "%d.%d.%d.%d",
156 return NetIfAdpCtl(pIf, szAddress, pszOption, pszMask);
162 char szAddress[5*8 + 1 + 5 + 1]; local
165 RTStrPrintf(szAddress, sizeof(szAddress), "%ls/%d",
167 return NetIfAdpCtl(pIf, szAddress, NULL, NULL);
171 RTStrPrintf(szAddress, sizeof(szAddress), "
[all...]
/vbox/src/VBox/Devices/USB/
H A DUSBProxyDevice.cpp831 char szAddress[1024]; local
832 int rc = CFGMR3QueryString(pCfg, "Address", szAddress, sizeof(szAddress));
855 rc = pThis->pOps->pfnOpen(pThis, szAddress, pvBackend);
1082 pUsbIns->pszName, szAddress, pThis->fMaskedIfs, rc));
/vbox/src/VBox/ExtPacks/VNC/
H A DVBoxVNC.cpp290 char szAddress[VNC_ADDRESSSIZE + 1] = {0}; local
294 &szAddress, sizeof(szAddress), &cbOut);
295 Assert(cbOut <= sizeof(szAddress));
296 if (RT_SUCCESS(rc) && szAddress[0])
298 if (!rfbStringToAddr(szAddress, &vncServer->listenInterface))
299 LogRel(("VNC: could not parse VNC server listen address '%s'\n", szAddress));
/vbox/src/VBox/Main/src-server/darwin/
H A Diokit.cpp966 char szAddress[64]; local
967 RTStrPrintf(szAddress, sizeof(szAddress), "p=0x%04RX16;v=0x%04RX16;s=0x%016RX64;l=0x%08RX32",
969 pCur->pszAddress = RTStrDup(szAddress);

Completed in 108 milliseconds