Lines Matching defs:pszFilename

97  * @param   pszFilename     The file name under evaluation.
100 typedef int FNDBGFR3ASSEARCHOPEN(const char *pszFilename, void *pvUser);
565 static DECLCALLBACK(int) dbgfR3AsLazyPopulateR0Callback(PVM pVM, const char *pszFilename, const char *pszName,
574 int rc = RTDbgModCreateFromImage(&hDbgMod, pszFilename, pszName, RTLDRARCH_HOST, pVM->pUVM->dbgf.s.hDbgCfg);
584 rc, pszName, pszFilename));
593 static DECLCALLBACK(int) dbgfR3AsLazyPopulateRCCallback(PVM pVM, const char *pszFilename, const char *pszName,
602 int rc = RTDbgModCreateFromImage(&hDbgMod, pszFilename, pszName, RTLDRARCH_X86_32, pVM->pUVM->dbgf.s.hDbgCfg);
612 rc, pszName, pszFilename));
801 * @param pszFilename The file to search for.
806 static int dbgfR3AsSearchPath(const char *pszFilename, const char *pszPath, PFNDBGFR3ASSEARCHOPEN pfnOpen, void *pvUser)
811 size_t const cchFilename = strlen(pszFilename);
814 const char *pszName = RTPathFilename(pszFilename);
822 memcpy(szFound, pszFilename, cchFilename + 1);
885 * @param pszFilename The filename.
890 static int dbgfR3AsSearchEnvPath(const char *pszFilename, const char *pszEnvVar, PFNDBGFR3ASSEARCHOPEN pfnOpen, void *pvUser)
896 rc = dbgfR3AsSearchPath(pszFilename, pszPath, pfnOpen, pvUser);
900 rc = dbgfR3AsSearchPath(pszFilename, ".", pfnOpen, pvUser);
913 * @param pszFilename The filename.
918 static int dbgfR3AsSearchCfgPath(PUVM pUVM, const char *pszFilename, const char *pszCfgValue,
927 rc = dbgfR3AsSearchPath(pszFilename, pszPath, pfnOpen, pvUser);
943 * @param pszFilename The filename of the executable module.
953 VMMR3DECL(int) DBGFR3AsLoadImage(PUVM pUVM, RTDBGAS hDbgAs, const char *pszFilename, const char *pszModName, RTLDRARCH enmArch,
960 AssertPtrReturn(pszFilename, VERR_INVALID_POINTER);
961 AssertReturn(*pszFilename, VERR_INVALID_PARAMETER);
969 int rc = RTDbgModCreateFromImage(&hDbgMod, pszFilename, pszModName, enmArch, pUVM->dbgf.s.hDbgCfg);
992 * @param pszFilename The map file.
1003 VMMR3DECL(int) DBGFR3AsLoadMap(PUVM pUVM, RTDBGAS hDbgAs, const char *pszFilename, const char *pszModName,
1010 AssertPtrReturn(pszFilename, VERR_INVALID_POINTER);
1011 AssertReturn(*pszFilename, VERR_INVALID_PARAMETER);
1019 int rc = RTDbgModCreateFromMap(&hDbgMod, pszFilename, pszModName, uSubtrahend, pUVM->dbgf.s.hDbgCfg);