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

/vbox/src/VBox/Main/src-client/
H A DGuestImpl.cpp215 const char *pszLastSlash = strrchr(pszName, '/'); local
216 AssertLogRelMsgReturn(pszLastSlash, ("Unexpected sample '%s'\n", pszName), VINF_SUCCESS);
220 if (!strcmp(pszLastSlash, "/BytesReceived"))
222 else if (!strcmp(pszLastSlash, "/BytesTransmitted"))
230 --pszLastSlash;
231 while (pszLastSlash > pszName && RT_C_IS_DIGIT(*pszLastSlash));
232 pszLastSlash++;
235 int rc = RTStrToUInt8Ex(pszLastSlash, NULL, 10, &uInstance);

Completed in 102 milliseconds