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

/vbox/src/VBox/Runtime/common/string/
H A Dstrcache.cpp930 char *pszStackBuf = (char *)alloca(cchString + 1); local
931 if (pszStackBuf)
933 memcpy(pszStackBuf, pchString, cchString);
934 pszStackBuf[cchString] = '\0';
935 RTStrToLower(pszStackBuf);
936 return RTStrCacheEnterN(pThis, pszStackBuf, cchString);

Completed in 46 milliseconds