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

/vbox/src/VBox/Runtime/testcase/
H A DtstRTUri.cpp274 static void tstCreate(size_t iCount, const char *pszScheme, const char *pszAuthority, const char *pszPath, const char *pszQuery, const char *pszFragment, const char *pszTest) argument
276 char *pszResult = RTUriCreate(pszScheme, pszAuthority, pszPath, pszQuery, pszFragment);
/vbox/src/VBox/Runtime/common/misc/
H A Duri.cpp301 RTR3DECL(char *) RTUriCreate(const char *pszScheme, const char *pszAuthority, const char *pszPath, const char *pszQuery, const char *pszFragment) argument
303 if (!pszScheme) /* Scheme is minimum requirement */
316 size_t cbSize = strlen(pszScheme) + 1 + 1; /* plus zero byte */
350 RTStrCatP(&pszTmp, &cbSize, pszScheme);
386 RTR3DECL(bool) RTUriHasScheme(const char *pszUri, const char *pszScheme) argument
392 fRes = RTStrNICmp(pszScheme, pszTmp, strlen(pszTmp)) == 0;

Completed in 43 milliseconds