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

/vbox/src/VBox/VMM/VMMR3/
H A DPDMLdr.cpp70 static char *pdmR3File(const char *pszFile, const char *pszDefaultExt, const char *pszSearchPath, bool fShared);
1052 * @param pszDefaultExt Extension part
1054 static char *pdmR3FileConstruct(const char *pszDir, const char *pszFile, const char *pszDefaultExt) argument
1066 if (!pszDefaultExt || strchr(pszFile, '.'))
1069 cchDefaultExt = strlen(pszDefaultExt);
1084 memcpy(pszRet + cchDir + cchFile, pszDefaultExt, cchDefaultExt + 1);
1097 * @param pszDefaultExt The default extention, NULL if none.
1107 static char *pdmR3File(const char *pszFile, const char *pszDefaultExt, const char *pszSearchPath, bool fShared) argument
1176 return pdmR3FileConstruct(szPath, pszFile, pszDefaultExt);

Completed in 46 milliseconds