Lines Matching defs:pszFilename

65     const char         *pszFilename;
172 if (fDelete && pImage->pszFilename)
173 vdIfIoIntFileDelete(pImage->pIfIo, pImage->pszFilename);
189 rc = vdIfIoIntFileOpen(pImage->pIfIo, pImage->pszFilename,
209 char *pszSuffix = RTPathSuffix(pImage->pszFilename);
281 rc = vdIfError(pImage->pIfError, VERR_VD_INVALID_TYPE, RT_SRC_POS, N_("Parallels: cannot create fixed image '%s'. Create a raw image"), pImage->pszFilename);
304 rc = vdIfIoIntFileOpen(pImage->pIfIo, pImage->pszFilename, fOpen, &pImage->pStorage);
307 rc = vdIfError(pImage->pIfError, rc, RT_SRC_POS, N_("Parallels: cannot create image '%s'"), pImage->pszFilename);
360 static int parallelsCheckIfValid(const char *pszFilename, PVDINTERFACE pVDIfsDisk,
370 rc = vdIfIoIntFileOpen(pIfIo, pszFilename,
404 pszSuffix = RTPathSuffix(pszFilename);
420 static int parallelsOpen(const char *pszFilename, unsigned uOpenFlags,
424 LogFlowFunc(("pszFilename=\"%s\" uOpenFlags=%#x pVDIfsDisk=%#p pVDIfsImage=%#p enmType=%u ppBackendData=%#p\n", pszFilename, uOpenFlags, pVDIfsDisk, pVDIfsImage, enmType, ppBackendData));
438 if ( !VALID_PTR(pszFilename)
439 || !*pszFilename)
452 pImage->pszFilename = pszFilename;
470 static int parallelsCreate(const char *pszFilename, uint64_t cbSize,
480 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",
481 pszFilename, cbSize, uImageFlags, pszComment, pPCHSGeometry, pLCHSGeometry, pUuid, uOpenFlags, uPercentStart, uPercentSpan, pVDIfsDisk, pVDIfsImage, pVDIfsOperation, enmType, ppBackendData));
509 if ( !VALID_PTR(pszFilename)
510 || !*pszFilename
524 pImage->pszFilename = pszFilename;
557 static int parallelsRename(void *pBackendData, const char *pszFilename)
559 LogFlowFunc(("pBackendData=%#p pszFilename=%#p\n", pBackendData, pszFilename));
565 || !pszFilename
566 || !*pszFilename)
578 rc = vdIfIoIntFileMove(pImage->pIfIo, pImage->pszFilename, pszFilename, 0);
590 pImage->pszFilename = pszFilename;