Lines Matching defs:pszFilename

315     const char         *pszFilename;
855 if (fDelete && pThis->pszFilename)
856 vdIfIoIntFileDelete(pThis->pIfIoXxx, pThis->pszFilename);
1457 * @param pszFilename The input filename, optional.
1466 static int dmgOpenImageWithinXar(uint32_t fOpen, PVDINTERFACEIOINT pVDIfIoInt, void *pvStorage, const char *pszFilename,
1474 int rc = RTVfsFileOpenNormal(pszFilename, fOpen, &hVfsFile);
1517 if (pszFilename)
1518 DMG_PRINTF(("DMG: Using '%s' within XAR file '%s'...\n", pszName, pszFilename));
1561 int rc = vdIfIoIntFileOpen(pThis->pIfIoXxx, pThis->pszFilename,
1583 pThis->pszFilename,
1595 rc = RTVfsFileOpenNormal(pThis->pszFilename, VDOpenFlagsToFileOpenFlags(uOpenFlags, false /* fCreate */),
1629 DMG_PRINTF(("Bad DMG: '%s' cbFile=%RTfoff\n", pThis->pszFilename, pThis->cbFile));
1707 static DECLCALLBACK(int) dmgCheckIfValid(const char *pszFilename, PVDINTERFACE pVDIfsDisk,
1710 LogFlowFunc(("pszFilename=\"%s\" pVDIfsDisk=%#p pVDIfsImage=%#p penmType=%#p\n",
1711 pszFilename, pVDIfsDisk, pVDIfsImage, penmType));
1720 int rc = vdIfIoIntFileOpen(pIfIo, pszFilename,
1740 pIfIo, pStorage, pszFilename,
1779 DMG_PRINTF(("Bad DMG: '%s' offFtr=%RTfoff\n", pszFilename, offFtr));
1800 static DECLCALLBACK(int) dmgOpen(const char *pszFilename, unsigned uOpenFlags,
1804 LogFlowFunc(("pszFilename=\"%s\" uOpenFlags=%#x pVDIfsDisk=%#p pVDIfsImage=%#p enmType=%u ppBackendData=%#p\n", pszFilename, uOpenFlags, pVDIfsDisk, pVDIfsImage, enmType, ppBackendData));
1812 AssertPtrReturn(pszFilename, VERR_INVALID_POINTER);
1813 AssertReturn(*pszFilename, VERR_INVALID_PARAMETER);
1837 pThis->pszFilename = pszFilename;
1854 static DECLCALLBACK(int) dmgCreate(const char *pszFilename, uint64_t cbSize,
1863 LogFlowFunc(("pszFilename=\"%s\" cbSize=%llu uImageFlags=%#x pszComment=\"%s\" pPCHSGeometry=%#p pLCHSGeometry=%#p Uuid=%RTuuid uOpenFlags=%#x uPercentStart=%u uPercentSpan=%u pVDIfsDisk=%#p pVDIfsImage=%#p pVDIfsOperation=%#p enmType=%u ppBackendData=%#p",
1864 pszFilename, cbSize, uImageFlags, pszComment, pPCHSGeometry, pLCHSGeometry, pUuid, uOpenFlags, uPercentStart, uPercentSpan, pVDIfsDisk, pVDIfsImage, pVDIfsOperation, enmType, ppBackendData));
1872 static int dmgRename(void *pBackendData, const char *pszFilename)
1874 LogFlowFunc(("pBackendData=%#p pszFilename=%#p\n", pBackendData, pszFilename));