Lines Matching defs:pszSearchPath

67 static int      pdmR3LoadR0U(PUVM pUVM, const char *pszFilename, const char *pszName, const char *pszSearchPath);
68 static char *pdmR3FileRC(const char *pszFile, const char *pszSearchPath);
69 static char *pdmR3FileR0(const char *pszFile, const char *pszSearchPath);
70 static char *pdmR3File(const char *pszFile, const char *pszDefaultExt, const char *pszSearchPath, bool fShared);
620 * @param pszSearchPath List of directories to search if @a pszFilename is
624 static int pdmR3LoadR0U(PUVM pUVM, const char *pszFilename, const char *pszName, const char *pszSearchPath)
648 pszFilename = pszFile = pdmR3FileR0(pszName, pszSearchPath);
826 * @param pszSearchPath List of directories to search if @a pszFile is
833 VMMR3DECL(int) PDMR3LdrGetSymbolR0Lazy(PVM pVM, const char *pszModule, const char *pszSearchPath, const char *pszSymbol,
863 int rc = pdmR3LoadR0U(pUVM, NULL, pszModule, pszSearchPath);
942 * @param pszSearchPath List of directories to search if @a pszFile is
949 VMMR3DECL(int) PDMR3LdrGetSymbolRCLazy(PVM pVM, const char *pszModule, const char *pszSearchPath, const char *pszSymbol,
980 char *pszFilename = pdmR3FileRC(pszModule, pszSearchPath);
1015 * @param pszSearchPath List of directories to search if @a pszFile is
1019 char *pdmR3FileR0(const char *pszFile, const char *pszSearchPath)
1021 return pdmR3File(pszFile, NULL, pszSearchPath, /*fShared=*/false);
1033 * @param pszSearchPath List of directories to search if @a pszFile is
1037 char *pdmR3FileRC(const char *pszFile, const char *pszSearchPath)
1039 return pdmR3File(pszFile, NULL, pszSearchPath, /*fShared=*/false);
1098 * @param pszSearchPath List of directories to search if @a pszFile is
1107 static char *pdmR3File(const char *pszFile, const char *pszDefaultExt, const char *pszSearchPath, bool fShared)
1112 AssertLogRelReturn(!fShared || !pszSearchPath, NULL);
1118 if ( pszSearchPath
1119 && *pszSearchPath)
1129 const char *psz = pszSearchPath;
1472 * @param pszSearchPath Search path for use when lazy loading.
1475 bool fLazy, const char *pszSearchPath)
1493 char *pszFilename = pdmR3FileRC(pszModule, pszSearchPath);
1507 int rc = pdmR3LoadR0U(pUVM, NULL, pszModule, pszSearchPath);
1534 * @param pszSearchPath The module search path. If NULL, search the
1559 const char *pszModule, const char *pszSearchPath,
1574 true /*fLazy*/, pszSearchPath);