Lines Matching defs:pBackendData

465     LogFlowFunc(("returns %Rrc (pBackendData=%#p)\n", rc, *ppBackendData));
557 static int parallelsRename(void *pBackendData, const char *pszFilename)
559 LogFlowFunc(("pBackendData=%#p pszFilename=%#p\n", pBackendData, pszFilename));
561 PPARALLELSIMAGE pImage = (PPARALLELSIMAGE)pBackendData;
603 static int parallelsClose(void *pBackendData, bool fDelete)
605 LogFlowFunc(("pBackendData=%#p fDelete=%d\n", pBackendData, fDelete));
606 PPARALLELSIMAGE pImage = (PPARALLELSIMAGE)pBackendData;
617 static int parallelsRead(void *pBackendData, uint64_t uOffset, size_t cbToRead,
620 LogFlowFunc(("pBackendData=%#p uOffset=%llu pIoCtx=%#p cbToRead=%zu pcbActuallyRead=%#p\n",
621 pBackendData, uOffset, pIoCtx, cbToRead, pcbActuallyRead));
623 PPARALLELSIMAGE pImage = (PPARALLELSIMAGE)pBackendData;
662 static int parallelsWrite(void *pBackendData, uint64_t uOffset, size_t cbToWrite,
666 LogFlowFunc(("pBackendData=%#p uOffset=%llu pIoCtx=%#p cbToWrite=%zu pcbWriteProcess=%#p\n",
667 pBackendData, uOffset, pIoCtx, cbToWrite, pcbWriteProcess));
669 PPARALLELSIMAGE pImage = (PPARALLELSIMAGE)pBackendData;
746 static int parallelsFlush(void *pBackendData, PVDIOCTX pIoCtx)
749 PPARALLELSIMAGE pImage = (PPARALLELSIMAGE)pBackendData;
761 static unsigned parallelsGetVersion(void *pBackendData)
763 LogFlowFunc(("pBackendData=%#p\n", pBackendData));
764 PPARALLELSIMAGE pImage = (PPARALLELSIMAGE)pBackendData;
775 static uint32_t parallelsGetSectorSize(void *pBackendData)
777 LogFlowFunc(("pBackendData=%#p\n", pBackendData));
778 PPARALLELSIMAGE pImage = (PPARALLELSIMAGE)pBackendData;
791 static uint64_t parallelsGetSize(void *pBackendData)
793 LogFlowFunc(("pBackendData=%#p\n", pBackendData));
794 PPARALLELSIMAGE pImage = (PPARALLELSIMAGE)pBackendData;
807 static uint64_t parallelsGetFileSize(void *pBackendData)
809 LogFlowFunc(("pBackendData=%#p\n", pBackendData));
810 PPARALLELSIMAGE pImage = (PPARALLELSIMAGE)pBackendData;
823 static int parallelsGetPCHSGeometry(void *pBackendData,
826 LogFlowFunc(("pBackendData=%#p pPCHSGeometry=%#p\n", pBackendData, pPCHSGeometry));
827 PPARALLELSIMAGE pImage = (PPARALLELSIMAGE)pBackendData;
850 static int parallelsSetPCHSGeometry(void *pBackendData,
853 LogFlowFunc(("pBackendData=%#p pPCHSGeometry=%#p PCHS=%u/%u/%u\n", pBackendData, pPCHSGeometry, pPCHSGeometry->cCylinders, pPCHSGeometry->cHeads, pPCHSGeometry->cSectors));
854 PPARALLELSIMAGE pImage = (PPARALLELSIMAGE)pBackendData;
879 static int parallelsGetLCHSGeometry(void *pBackendData,
882 LogFlowFunc(("pBackendData=%#p pLCHSGeometry=%#p\n", pBackendData, pLCHSGeometry));
883 PPARALLELSIMAGE pImage = (PPARALLELSIMAGE)pBackendData;
906 static int parallelsSetLCHSGeometry(void *pBackendData,
909 LogFlowFunc(("pBackendData=%#p pLCHSGeometry=%#p LCHS=%u/%u/%u\n", pBackendData, pLCHSGeometry, pLCHSGeometry->cCylinders, pLCHSGeometry->cHeads, pLCHSGeometry->cSectors));
910 PPARALLELSIMAGE pImage = (PPARALLELSIMAGE)pBackendData;
935 static unsigned parallelsGetImageFlags(void *pBackendData)
937 LogFlowFunc(("pBackendData=%#p\n", pBackendData));
938 PPARALLELSIMAGE pImage = (PPARALLELSIMAGE)pBackendData;
953 static unsigned parallelsGetOpenFlags(void *pBackendData)
955 LogFlowFunc(("pBackendData=%#p\n", pBackendData));
956 PPARALLELSIMAGE pImage = (PPARALLELSIMAGE)pBackendData;
971 static int parallelsSetOpenFlags(void *pBackendData, unsigned uOpenFlags)
973 LogFlowFunc(("pBackendData=%#p\n uOpenFlags=%#x", pBackendData, uOpenFlags));
974 PPARALLELSIMAGE pImage = (PPARALLELSIMAGE)pBackendData;
996 static int parallelsGetComment(void *pBackendData, char *pszComment,
999 LogFlowFunc(("pBackendData=%#p pszComment=%#p cbComment=%zu\n", pBackendData, pszComment, cbComment));
1000 PPARALLELSIMAGE pImage = (PPARALLELSIMAGE)pBackendData;
1015 static int parallelsSetComment(void *pBackendData, const char *pszComment)
1017 LogFlowFunc(("pBackendData=%#p pszComment=\"%s\"\n", pBackendData, pszComment));
1018 PPARALLELSIMAGE pImage = (PPARALLELSIMAGE)pBackendData;
1038 static int parallelsGetUuid(void *pBackendData, PRTUUID pUuid)
1040 LogFlowFunc(("pBackendData=%#p pUuid=%#p\n", pBackendData, pUuid));
1041 PPARALLELSIMAGE pImage = (PPARALLELSIMAGE)pBackendData;
1056 static int parallelsSetUuid(void *pBackendData, PCRTUUID pUuid)
1058 LogFlowFunc(("pBackendData=%#p Uuid=%RTuuid\n", pBackendData, pUuid));
1059 PPARALLELSIMAGE pImage = (PPARALLELSIMAGE)pBackendData;
1079 static int parallelsGetModificationUuid(void *pBackendData, PRTUUID pUuid)
1081 LogFlowFunc(("pBackendData=%#p pUuid=%#p\n", pBackendData, pUuid));
1082 PPARALLELSIMAGE pImage = (PPARALLELSIMAGE)pBackendData;
1097 static int parallelsSetModificationUuid(void *pBackendData, PCRTUUID pUuid)
1099 LogFlowFunc(("pBackendData=%#p Uuid=%RTuuid\n", pBackendData, pUuid));
1100 PPARALLELSIMAGE pImage = (PPARALLELSIMAGE)pBackendData;
1120 static int parallelsGetParentUuid(void *pBackendData, PRTUUID pUuid)
1122 LogFlowFunc(("pBackendData=%#p pUuid=%#p\n", pBackendData, pUuid));
1123 PPARALLELSIMAGE pImage = (PPARALLELSIMAGE)pBackendData;
1138 static int parallelsSetParentUuid(void *pBackendData, PCRTUUID pUuid)
1140 LogFlowFunc(("pBackendData=%#p Uuid=%RTuuid\n", pBackendData, pUuid));
1141 PPARALLELSIMAGE pImage = (PPARALLELSIMAGE)pBackendData;
1161 static int parallelsGetParentModificationUuid(void *pBackendData, PRTUUID pUuid)
1163 LogFlowFunc(("pBackendData=%#p pUuid=%#p\n", pBackendData, pUuid));
1164 PPARALLELSIMAGE pImage = (PPARALLELSIMAGE)pBackendData;
1179 static int parallelsSetParentModificationUuid(void *pBackendData, PCRTUUID pUuid)
1181 LogFlowFunc(("pBackendData=%#p Uuid=%RTuuid\n", pBackendData, pUuid));
1182 PPARALLELSIMAGE pImage = (PPARALLELSIMAGE)pBackendData;
1202 static void parallelsDump(void *pBackendData)
1204 PPARALLELSIMAGE pImage = (PPARALLELSIMAGE)pBackendData;