Searched defs:pszRaw (Results 1 - 2 of 2) sorted by relevance

/vbox/src/VBox/NetworkServices/NetLib/
H A DVBoxNetPortForwardString.cpp52 static int netPfStrAddressParse(char *pszRaw, int cbRaw, argument
59 AssertPtrReturn(pszRaw, -1);
61 AssertReturn(pszRaw[0] == PF_ADDRESS_FIELD_STARTS, -1);
63 if (pszRaw[0] == PF_ADDRESS_FIELD_STARTS)
65 /* shift pszRaw to next symbol */
66 pszRaw++;
73 char *pszEndOfAddress = RTStrStr(pszRaw, PF_STR_ADDRESS_FIELD_ENDS);
78 cbField = pszEndOfAddress - pszRaw;
84 RTStrCopy(pszAddress, RT_MIN(cbField + 1, cbAddress), pszRaw);
89 AssertReturn(pszRaw[cbFiel
151 netPfStrAddressPortPairParse(char *pszRaw, int cbRaw, char *pszAddress, int cbAddress, bool fEmptyAddressAcceptable, uint16_t *pu16Port) argument
227 char *pszRaw = NULL; local
[all...]
/vbox/src/VBox/Frontends/VBoxManage/
H A DVBoxManageMetrics.cpp105 char *pszRaw = aFullName.mutableRaw(); local
110 if (strcmp(pszRaw, "CPU/MHz") && !RTStrSimplePatternMatch("Net/*/LinkSpeed", pszRaw))
112 char *pszSlash = strrchr(pszRaw, '/');

Completed in 48 milliseconds