VirtualBox

Changeset 63785 in vbox for trunk


Ignore:
Timestamp:
Sep 9, 2016 9:48:46 PM (8 years ago)
Author:
vboxsync
Message:

Storage/VD: Doxygen after VBOXHDDBACKEND -> VDIMAGEBACKEND

Location:
trunk/src/VBox/Storage
Files:
8 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/VBox/Storage/DMG.cpp

    r63781 r63785  
    17211721
    17221722
    1723 /** @interface_method_impl{VBOXHDDBACKEND,pfnCheckIfValid} */
     1723/** @interface_method_impl{VDIMAGEBACKEND,pfnCheckIfValid} */
    17241724static DECLCALLBACK(int) dmgCheckIfValid(const char *pszFilename, PVDINTERFACE pVDIfsDisk,
    17251725                                         PVDINTERFACE pVDIfsImage, VDTYPE *penmType)
     
    18151815}
    18161816
    1817 /** @interface_method_impl{VBOXHDDBACKEND,pfnOpen} */
     1817/** @interface_method_impl{VDIMAGEBACKEND,pfnOpen} */
    18181818static DECLCALLBACK(int) dmgOpen(const char *pszFilename, unsigned uOpenFlags,
    18191819                                 PVDINTERFACE pVDIfsDisk, PVDINTERFACE pVDIfsImage,
     
    18691869}
    18701870
    1871 /** @interface_method_impl{VBOXHDDBACKEND,pfnCreate} */
     1871/** @interface_method_impl{VDIMAGEBACKEND,pfnCreate} */
    18721872static DECLCALLBACK(int) dmgCreate(const char *pszFilename, uint64_t cbSize,
    18731873                                   unsigned uImageFlags, const char *pszComment,
     
    18891889}
    18901890
    1891 /** @interface_method_impl{VBOXHDDBACKEND,pfnRename} */
     1891/** @interface_method_impl{VDIMAGEBACKEND,pfnRename} */
    18921892static DECLCALLBACK(int) dmgRename(void *pBackendData, const char *pszFilename)
    18931893{
     
    19001900}
    19011901
    1902 /** @interface_method_impl{VBOXHDDBACKEND,pfnClose} */
     1902/** @interface_method_impl{VDIMAGEBACKEND,pfnClose} */
    19031903static DECLCALLBACK(int) dmgClose(void *pBackendData, bool fDelete)
    19041904{
     
    19131913}
    19141914
    1915 /** @interface_method_impl{VBOXHDDBACKEND,pfnRead} */
     1915/** @interface_method_impl{VDIMAGEBACKEND,pfnRead} */
    19161916static DECLCALLBACK(int) dmgRead(void *pBackendData, uint64_t uOffset,  size_t cbToRead,
    19171917                                 PVDIOCTX pIoCtx, size_t *pcbActuallyRead)
     
    20012001}
    20022002
    2003 /** @interface_method_impl{VBOXHDDBACKEND,pfnWrite} */
     2003/** @interface_method_impl{VDIMAGEBACKEND,pfnWrite} */
    20042004static DECLCALLBACK(int) dmgWrite(void *pBackendData, uint64_t uOffset, size_t cbToWrite,
    20052005                                  PVDIOCTX pIoCtx, size_t *pcbWriteProcess, size_t *pcbPreRead,
     
    20252025}
    20262026
    2027 /** @interface_method_impl{VBOXHDDBACKEND,pfnFlush} */
     2027/** @interface_method_impl{VDIMAGEBACKEND,pfnFlush} */
    20282028static DECLCALLBACK(int) dmgFlush(void *pBackendData, PVDIOCTX pIoCtx)
    20292029{
     
    20412041}
    20422042
    2043 /** @interface_method_impl{VBOXHDDBACKEND,pfnGetVersion} */
     2043/** @interface_method_impl{VDIMAGEBACKEND,pfnGetVersion} */
    20442044static DECLCALLBACK(unsigned) dmgGetVersion(void *pBackendData)
    20452045{
     
    20552055}
    20562056
    2057 /** @interface_method_impl{VBOXHDDBACKEND,pfnGetSectorSize} */
     2057/** @interface_method_impl{VDIMAGEBACKEND,pfnGetSectorSize} */
    20582058static DECLCALLBACK(uint32_t) dmgGetSectorSize(void *pBackendData)
    20592059{
     
    20712071}
    20722072
    2073 /** @interface_method_impl{VBOXHDDBACKEND,pfnGetSize} */
     2073/** @interface_method_impl{VDIMAGEBACKEND,pfnGetSize} */
    20742074static DECLCALLBACK(uint64_t) dmgGetSize(void *pBackendData)
    20752075{
     
    20872087}
    20882088
    2089 /** @interface_method_impl{VBOXHDDBACKEND,pfnGetFileSize} */
     2089/** @interface_method_impl{VDIMAGEBACKEND,pfnGetFileSize} */
    20902090static DECLCALLBACK(uint64_t) dmgGetFileSize(void *pBackendData)
    20912091{
     
    21082108}
    21092109
    2110 /** @interface_method_impl{VBOXHDDBACKEND,pfnGetPCHSGeometry} */
     2110/** @interface_method_impl{VDIMAGEBACKEND,pfnGetPCHSGeometry} */
    21112111static DECLCALLBACK(int) dmgGetPCHSGeometry(void *pBackendData, PVDGEOMETRY pPCHSGeometry)
    21122112{
     
    21342134}
    21352135
    2136 /** @interface_method_impl{VBOXHDDBACKEND,pfnSetPCHSGeometry} */
     2136/** @interface_method_impl{VDIMAGEBACKEND,pfnSetPCHSGeometry} */
    21372137static DECLCALLBACK(int) dmgSetPCHSGeometry(void *pBackendData, PCVDGEOMETRY pPCHSGeometry)
    21382138{
     
    21612161}
    21622162
    2163 /** @interface_method_impl{VBOXHDDBACKEND,pfnGetLCHSGeometry} */
     2163/** @interface_method_impl{VDIMAGEBACKEND,pfnGetLCHSGeometry} */
    21642164static DECLCALLBACK(int) dmgGetLCHSGeometry(void *pBackendData, PVDGEOMETRY pLCHSGeometry)
    21652165{
     
    21872187}
    21882188
    2189 /** @interface_method_impl{VBOXHDDBACKEND,pfnSetLCHSGeometry} */
     2189/** @interface_method_impl{VDIMAGEBACKEND,pfnSetLCHSGeometry} */
    21902190static DECLCALLBACK(int) dmgSetLCHSGeometry(void *pBackendData, PCVDGEOMETRY pLCHSGeometry)
    21912191{
     
    22142214}
    22152215
    2216 /** @interface_method_impl{VBOXHDDBACKEND,pfnGetImageFlags} */
     2216/** @interface_method_impl{VDIMAGEBACKEND,pfnGetImageFlags} */
    22172217static DECLCALLBACK(unsigned) dmgGetImageFlags(void *pBackendData)
    22182218{
     
    22322232}
    22332233
    2234 /** @interface_method_impl{VBOXHDDBACKEND,pfnGetOpenFlags} */
     2234/** @interface_method_impl{VDIMAGEBACKEND,pfnGetOpenFlags} */
    22352235static DECLCALLBACK(unsigned) dmgGetOpenFlags(void *pBackendData)
    22362236{
     
    22502250}
    22512251
    2252 /** @interface_method_impl{VBOXHDDBACKEND,pfnSetOpenFlags} */
     2252/** @interface_method_impl{VDIMAGEBACKEND,pfnSetOpenFlags} */
    22532253static DECLCALLBACK(int) dmgSetOpenFlags(void *pBackendData, unsigned uOpenFlags)
    22542254{
     
    22772277}
    22782278
    2279 /** @interface_method_impl{VBOXHDDBACKEND,pfnGetComment} */
     2279/** @interface_method_impl{VDIMAGEBACKEND,pfnGetComment} */
    22802280static DECLCALLBACK(int) dmgGetComment(void *pBackendData, char *pszComment, size_t cbComment)
    22812281{
     
    22962296}
    22972297
    2298 /** @interface_method_impl{VBOXHDDBACKEND,pfnSetComment} */
     2298/** @interface_method_impl{VDIMAGEBACKEND,pfnSetComment} */
    22992299static DECLCALLBACK(int) dmgSetComment(void *pBackendData, const char *pszComment)
    23002300{
     
    23202320}
    23212321
    2322 /** @interface_method_impl{VBOXHDDBACKEND,pfnGetUuid} */
     2322/** @interface_method_impl{VDIMAGEBACKEND,pfnGetUuid} */
    23232323static DECLCALLBACK(int) dmgGetUuid(void *pBackendData, PRTUUID pUuid)
    23242324{
     
    23392339}
    23402340
    2341 /** @interface_method_impl{VBOXHDDBACKEND,pfnSetUuid} */
     2341/** @interface_method_impl{VDIMAGEBACKEND,pfnSetUuid} */
    23422342static DECLCALLBACK(int) dmgSetUuid(void *pBackendData, PCRTUUID pUuid)
    23432343{
     
    23642364}
    23652365
    2366 /** @interface_method_impl{VBOXHDDBACKEND,pfnGetModificationUuid} */
     2366/** @interface_method_impl{VDIMAGEBACKEND,pfnGetModificationUuid} */
    23672367static DECLCALLBACK(int) dmgGetModificationUuid(void *pBackendData, PRTUUID pUuid)
    23682368{
     
    23832383}
    23842384
    2385 /** @interface_method_impl{VBOXHDDBACKEND,pfnSetModificationUuid} */
     2385/** @interface_method_impl{VDIMAGEBACKEND,pfnSetModificationUuid} */
    23862386static DECLCALLBACK(int) dmgSetModificationUuid(void *pBackendData, PCRTUUID pUuid)
    23872387{
     
    24072407}
    24082408
    2409 /** @interface_method_impl{VBOXHDDBACKEND,pfnGetParentUuid} */
     2409/** @interface_method_impl{VDIMAGEBACKEND,pfnGetParentUuid} */
    24102410static DECLCALLBACK(int) dmgGetParentUuid(void *pBackendData, PRTUUID pUuid)
    24112411{
     
    24262426}
    24272427
    2428 /** @interface_method_impl{VBOXHDDBACKEND,pfnSetParentUuid} */
     2428/** @interface_method_impl{VDIMAGEBACKEND,pfnSetParentUuid} */
    24292429static DECLCALLBACK(int) dmgSetParentUuid(void *pBackendData, PCRTUUID pUuid)
    24302430{
     
    24502450}
    24512451
    2452 /** @interface_method_impl{VBOXHDDBACKEND,pfnGetParentModificationUuid} */
     2452/** @interface_method_impl{VDIMAGEBACKEND,pfnGetParentModificationUuid} */
    24532453static DECLCALLBACK(int) dmgGetParentModificationUuid(void *pBackendData, PRTUUID pUuid)
    24542454{
     
    24692469}
    24702470
    2471 /** @interface_method_impl{VBOXHDDBACKEND,pfnSetParentModificationUuid} */
     2471/** @interface_method_impl{VDIMAGEBACKEND,pfnSetParentModificationUuid} */
    24722472static DECLCALLBACK(int) dmgSetParentModificationUuid(void *pBackendData, PCRTUUID pUuid)
    24732473{
     
    24932493}
    24942494
    2495 /** @interface_method_impl{VBOXHDDBACKEND,pfnDump} */
     2495/** @interface_method_impl{VDIMAGEBACKEND,pfnDump} */
    24962496static DECLCALLBACK(void) dmgDump(void *pBackendData)
    24972497{
  • trunk/src/VBox/Storage/ISCSI.cpp

    r63781 r63785  
    46504650
    46514651
    4652 /** @copydoc VBOXHDDBACKEND::pfnCheckIfValid */
     4652/** @copydoc VDIMAGEBACKEND::pfnCheckIfValid */
    46534653static DECLCALLBACK(int) iscsiCheckIfValid(const char *pszFilename, PVDINTERFACE pVDIfsDisk,
    46544654                                           PVDINTERFACE pVDIfsImage, VDTYPE *penmType)
     
    46654665}
    46664666
    4667 /** @copydoc VBOXHDDBACKEND::pfnOpen */
     4667/** @copydoc VDIMAGEBACKEND::pfnOpen */
    46684668static DECLCALLBACK(int) iscsiOpen(const char *pszFilename, unsigned uOpenFlags,
    46694669                                   PVDINTERFACE pVDIfsDisk, PVDINTERFACE pVDIfsImage,
     
    47294729}
    47304730
    4731 /** @copydoc VBOXHDDBACKEND::pfnCreate */
     4731/** @copydoc VDIMAGEBACKEND::pfnCreate */
    47324732static DECLCALLBACK(int) iscsiCreate(const char *pszFilename, uint64_t cbSize,
    47334733                                     unsigned uImageFlags, const char *pszComment,
     
    47494749}
    47504750
    4751 /** @copydoc VBOXHDDBACKEND::pfnClose */
     4751/** @copydoc VDIMAGEBACKEND::pfnClose */
    47524752static DECLCALLBACK(int) iscsiClose(void *pBackendData, bool fDelete)
    47534753{
     
    47654765}
    47664766
    4767 /** @copydoc VBOXHDDBACKEND::pfnRead */
     4767/** @copydoc VDIMAGEBACKEND::pfnRead */
    47684768static DECLCALLBACK(int) iscsiRead(void *pBackendData, uint64_t uOffset, size_t cbToRead,
    47694769                                   PVDIOCTX pIoCtx, size_t *pcbActuallyRead)
     
    48884888}
    48894889
    4890 /** @copydoc VBOXHDDBACKEND::pfnWrite */
     4890/** @copydoc VDIMAGEBACKEND::pfnWrite */
    48914891static DECLCALLBACK(int) iscsiWrite(void *pBackendData, uint64_t uOffset, size_t cbToWrite,
    48924892                                    PVDIOCTX pIoCtx, size_t *pcbWriteProcess, size_t *pcbPreRead,
     
    50155015}
    50165016
    5017 /** @copydoc VBOXHDDBACKEND::pfnFlush */
     5017/** @copydoc VDIMAGEBACKEND::pfnFlush */
    50185018static DECLCALLBACK(int) iscsiFlush(void *pBackendData, PVDIOCTX pIoCtx)
    50195019{
     
    50755075}
    50765076
    5077 /** @copydoc VBOXHDDBACKEND::pfnGetVersion */
     5077/** @copydoc VDIMAGEBACKEND::pfnGetVersion */
    50785078static DECLCALLBACK(unsigned) iscsiGetVersion(void *pBackendData)
    50795079{
     
    50875087}
    50885088
    5089 /** @copydoc VBOXHDDBACKEND::pfnGetSectorSize */
     5089/** @copydoc VDIMAGEBACKEND::pfnGetSectorSize */
    50905090static DECLCALLBACK(uint32_t) iscsiGetSectorSize(void *pBackendData)
    50915091{
     
    51015101}
    51025102
    5103 /** @copydoc VBOXHDDBACKEND::pfnGetSize */
     5103/** @copydoc VDIMAGEBACKEND::pfnGetSize */
    51045104static DECLCALLBACK(uint64_t) iscsiGetSize(void *pBackendData)
    51055105{
     
    51155115}
    51165116
    5117 /** @copydoc VBOXHDDBACKEND::pfnGetFileSize */
     5117/** @copydoc VDIMAGEBACKEND::pfnGetFileSize */
    51185118static DECLCALLBACK(uint64_t) iscsiGetFileSize(void *pBackendData)
    51195119{
     
    51305130}
    51315131
    5132 /** @copydoc VBOXHDDBACKEND::pfnGetPCHSGeometry */
     5132/** @copydoc VDIMAGEBACKEND::pfnGetPCHSGeometry */
    51335133static DECLCALLBACK(int) iscsiGetPCHSGeometry(void *pBackendData, PVDGEOMETRY pPCHSGeometry)
    51345134{
     
    51495149}
    51505150
    5151 /** @copydoc VBOXHDDBACKEND::pfnSetPCHSGeometry */
     5151/** @copydoc VDIMAGEBACKEND::pfnSetPCHSGeometry */
    51525152static DECLCALLBACK(int) iscsiSetPCHSGeometry(void *pBackendData, PCVDGEOMETRY pPCHSGeometry)
    51535153{
     
    51765176}
    51775177
    5178 /** @copydoc VBOXHDDBACKEND::pfnGetLCHSGeometry */
     5178/** @copydoc VDIMAGEBACKEND::pfnGetLCHSGeometry */
    51795179static DECLCALLBACK(int) iscsiGetLCHSGeometry(void *pBackendData, PVDGEOMETRY pLCHSGeometry)
    51805180{
     
    51955195}
    51965196
    5197 /** @copydoc VBOXHDDBACKEND::pfnSetLCHSGeometry */
     5197/** @copydoc VDIMAGEBACKEND::pfnSetLCHSGeometry */
    51985198static DECLCALLBACK(int) iscsiSetLCHSGeometry(void *pBackendData, PCVDGEOMETRY pLCHSGeometry)
    51995199{
     
    52225222}
    52235223
    5224 /** @copydoc VBOXHDDBACKEND::pfnGetImageFlags */
     5224/** @copydoc VDIMAGEBACKEND::pfnGetImageFlags */
    52255225static DECLCALLBACK(unsigned) iscsiGetImageFlags(void *pBackendData)
    52265226{
     
    52385238}
    52395239
    5240 /** @copydoc VBOXHDDBACKEND::pfnGetOpenFlags */
     5240/** @copydoc VDIMAGEBACKEND::pfnGetOpenFlags */
    52415241static DECLCALLBACK(unsigned) iscsiGetOpenFlags(void *pBackendData)
    52425242{
     
    52565256}
    52575257
    5258 /** @copydoc VBOXHDDBACKEND::pfnSetOpenFlags */
     5258/** @copydoc VDIMAGEBACKEND::pfnSetOpenFlags */
    52595259static DECLCALLBACK(int) iscsiSetOpenFlags(void *pBackendData, unsigned uOpenFlags)
    52605260{
     
    52885288}
    52895289
    5290 /** @copydoc VBOXHDDBACKEND::pfnGetComment */
     5290/** @copydoc VDIMAGEBACKEND::pfnGetComment */
    52915291static DECLCALLBACK(int) iscsiGetComment(void *pBackendData, char *pszComment,
    52925292                                         size_t cbComment)
     
    53085308}
    53095309
    5310 /** @copydoc VBOXHDDBACKEND::pfnSetComment */
     5310/** @copydoc VDIMAGEBACKEND::pfnSetComment */
    53115311static DECLCALLBACK(int) iscsiSetComment(void *pBackendData, const char *pszComment)
    53125312{
     
    53325332}
    53335333
    5334 /** @copydoc VBOXHDDBACKEND::pfnGetUuid */
     5334/** @copydoc VDIMAGEBACKEND::pfnGetUuid */
    53355335static DECLCALLBACK(int) iscsiGetUuid(void *pBackendData, PRTUUID pUuid)
    53365336{
     
    53515351}
    53525352
    5353 /** @copydoc VBOXHDDBACKEND::pfnSetUuid */
     5353/** @copydoc VDIMAGEBACKEND::pfnSetUuid */
    53545354static DECLCALLBACK(int) iscsiSetUuid(void *pBackendData, PCRTUUID pUuid)
    53555355{
     
    53765376}
    53775377
    5378 /** @copydoc VBOXHDDBACKEND::pfnGetModificationUuid */
     5378/** @copydoc VDIMAGEBACKEND::pfnGetModificationUuid */
    53795379static DECLCALLBACK(int) iscsiGetModificationUuid(void *pBackendData, PRTUUID pUuid)
    53805380{
     
    53955395}
    53965396
    5397 /** @copydoc VBOXHDDBACKEND::pfnSetModificationUuid */
     5397/** @copydoc VDIMAGEBACKEND::pfnSetModificationUuid */
    53985398static DECLCALLBACK(int) iscsiSetModificationUuid(void *pBackendData, PCRTUUID pUuid)
    53995399{
     
    54205420}
    54215421
    5422 /** @copydoc VBOXHDDBACKEND::pfnGetParentUuid */
     5422/** @copydoc VDIMAGEBACKEND::pfnGetParentUuid */
    54235423static DECLCALLBACK(int) iscsiGetParentUuid(void *pBackendData, PRTUUID pUuid)
    54245424{
     
    54395439}
    54405440
    5441 /** @copydoc VBOXHDDBACKEND::pfnSetParentUuid */
     5441/** @copydoc VDIMAGEBACKEND::pfnSetParentUuid */
    54425442static DECLCALLBACK(int) iscsiSetParentUuid(void *pBackendData, PCRTUUID pUuid)
    54435443{
     
    54645464}
    54655465
    5466 /** @copydoc VBOXHDDBACKEND::pfnGetParentModificationUuid */
     5466/** @copydoc VDIMAGEBACKEND::pfnGetParentModificationUuid */
    54675467static DECLCALLBACK(int) iscsiGetParentModificationUuid(void *pBackendData, PRTUUID pUuid)
    54685468{
     
    54835483}
    54845484
    5485 /** @copydoc VBOXHDDBACKEND::pfnSetParentModificationUuid */
     5485/** @copydoc VDIMAGEBACKEND::pfnSetParentModificationUuid */
    54865486static DECLCALLBACK(int) iscsiSetParentModificationUuid(void *pBackendData, PCRTUUID pUuid)
    54875487{
     
    55085508}
    55095509
    5510 /** @copydoc VBOXHDDBACKEND::pfnDump */
     5510/** @copydoc VDIMAGEBACKEND::pfnDump */
    55115511static DECLCALLBACK(void) iscsiDump(void *pBackendData)
    55125512{
     
    55215521}
    55225522
    5523 /** @copydoc VBOXHDDBACKEND::pfnComposeLocation */
     5523/** @copydoc VDIMAGEBACKEND::pfnComposeLocation */
    55245524static DECLCALLBACK(int) iscsiComposeLocation(PVDINTERFACE pConfig, char **pszLocation)
    55255525{
     
    55485548}
    55495549
    5550 /** @copydoc VBOXHDDBACKEND::pfnComposeName */
     5550/** @copydoc VDIMAGEBACKEND::pfnComposeName */
    55515551static DECLCALLBACK(int) iscsiComposeName(PVDINTERFACE pConfig, char **pszName)
    55525552{
  • trunk/src/VBox/Storage/QCOW.cpp

    r63781 r63785  
    15311531}
    15321532
    1533 /** @copydoc VBOXHDDBACKEND::pfnCheckIfValid */
     1533/** @copydoc VDIMAGEBACKEND::pfnCheckIfValid */
    15341534static DECLCALLBACK(int) qcowCheckIfValid(const char *pszFilename, PVDINTERFACE pVDIfsDisk,
    15351535                                          PVDINTERFACE pVDIfsImage, VDTYPE *penmType)
     
    15891589}
    15901590
    1591 /** @copydoc VBOXHDDBACKEND::pfnOpen */
     1591/** @copydoc VDIMAGEBACKEND::pfnOpen */
    15921592static DECLCALLBACK(int) qcowOpen(const char *pszFilename, unsigned uOpenFlags,
    15931593                                  PVDINTERFACE pVDIfsDisk, PVDINTERFACE pVDIfsImage,
     
    16381638}
    16391639
    1640 /** @copydoc VBOXHDDBACKEND::pfnCreate */
     1640/** @copydoc VDIMAGEBACKEND::pfnCreate */
    16411641static DECLCALLBACK(int) qcowCreate(const char *pszFilename, uint64_t cbSize,
    16421642                                    unsigned uImageFlags, const char *pszComment,
     
    17251725}
    17261726
    1727 /** @copydoc VBOXHDDBACKEND::pfnRename */
     1727/** @copydoc VDIMAGEBACKEND::pfnRename */
    17281728static DECLCALLBACK(int) qcowRename(void *pBackendData, const char *pszFilename)
    17291729{
     
    17711771}
    17721772
    1773 /** @copydoc VBOXHDDBACKEND::pfnClose */
     1773/** @copydoc VDIMAGEBACKEND::pfnClose */
    17741774static DECLCALLBACK(int) qcowClose(void *pBackendData, bool fDelete)
    17751775{
     
    20332033}
    20342034
    2035 /** @copydoc VBOXHDDBACKEND::pfnGetVersion */
     2035/** @copydoc VDIMAGEBACKEND::pfnGetVersion */
    20362036static DECLCALLBACK(unsigned) qcowGetVersion(void *pBackendData)
    20372037{
     
    20472047}
    20482048
    2049 /** @copydoc VBOXHDDBACKEND::pfnGetSectorSize */
     2049/** @copydoc VDIMAGEBACKEND::pfnGetSectorSize */
    20502050static DECLCALLBACK(uint32_t) qcowGetSectorSize(void *pBackendData)
    20512051{
     
    20632063}
    20642064
    2065 /** @copydoc VBOXHDDBACKEND::pfnGetSize */
     2065/** @copydoc VDIMAGEBACKEND::pfnGetSize */
    20662066static DECLCALLBACK(uint64_t) qcowGetSize(void *pBackendData)
    20672067{
     
    20792079}
    20802080
    2081 /** @copydoc VBOXHDDBACKEND::pfnGetFileSize */
     2081/** @copydoc VDIMAGEBACKEND::pfnGetFileSize */
    20822082static DECLCALLBACK(uint64_t) qcowGetFileSize(void *pBackendData)
    20832083{
     
    21032103}
    21042104
    2105 /** @copydoc VBOXHDDBACKEND::pfnGetPCHSGeometry */
     2105/** @copydoc VDIMAGEBACKEND::pfnGetPCHSGeometry */
    21062106static DECLCALLBACK(int) qcowGetPCHSGeometry(void *pBackendData,
    21072107                              PVDGEOMETRY pPCHSGeometry)
     
    21302130}
    21312131
    2132 /** @copydoc VBOXHDDBACKEND::pfnSetPCHSGeometry */
     2132/** @copydoc VDIMAGEBACKEND::pfnSetPCHSGeometry */
    21332133static DECLCALLBACK(int) qcowSetPCHSGeometry(void *pBackendData,
    21342134                              PCVDGEOMETRY pPCHSGeometry)
     
    21592159}
    21602160
    2161 /** @copydoc VBOXHDDBACKEND::pfnGetLCHSGeometry */
     2161/** @copydoc VDIMAGEBACKEND::pfnGetLCHSGeometry */
    21622162static DECLCALLBACK(int) qcowGetLCHSGeometry(void *pBackendData,
    21632163                              PVDGEOMETRY pLCHSGeometry)
     
    21862186}
    21872187
    2188 /** @copydoc VBOXHDDBACKEND::pfnSetLCHSGeometry */
     2188/** @copydoc VDIMAGEBACKEND::pfnSetLCHSGeometry */
    21892189static DECLCALLBACK(int) qcowSetLCHSGeometry(void *pBackendData,
    21902190                               PCVDGEOMETRY pLCHSGeometry)
     
    22152215}
    22162216
    2217 /** @copydoc VBOXHDDBACKEND::pfnGetImageFlags */
     2217/** @copydoc VDIMAGEBACKEND::pfnGetImageFlags */
    22182218static DECLCALLBACK(unsigned) qcowGetImageFlags(void *pBackendData)
    22192219{
     
    22332233}
    22342234
    2235 /** @copydoc VBOXHDDBACKEND::pfnGetOpenFlags */
     2235/** @copydoc VDIMAGEBACKEND::pfnGetOpenFlags */
    22362236static DECLCALLBACK(unsigned) qcowGetOpenFlags(void *pBackendData)
    22372237{
     
    22512251}
    22522252
    2253 /** @copydoc VBOXHDDBACKEND::pfnSetOpenFlags */
     2253/** @copydoc VDIMAGEBACKEND::pfnSetOpenFlags */
    22542254static DECLCALLBACK(int) qcowSetOpenFlags(void *pBackendData, unsigned uOpenFlags)
    22552255{
     
    22772277}
    22782278
    2279 /** @copydoc VBOXHDDBACKEND::pfnGetComment */
     2279/** @copydoc VDIMAGEBACKEND::pfnGetComment */
    22802280static DECLCALLBACK(int) qcowGetComment(void *pBackendData, char *pszComment, size_t cbComment)
    22812281{
     
    22962296}
    22972297
    2298 /** @copydoc VBOXHDDBACKEND::pfnSetComment */
     2298/** @copydoc VDIMAGEBACKEND::pfnSetComment */
    22992299static DECLCALLBACK(int) qcowSetComment(void *pBackendData, const char *pszComment)
    23002300{
     
    23202320}
    23212321
    2322 /** @copydoc VBOXHDDBACKEND::pfnGetUuid */
     2322/** @copydoc VDIMAGEBACKEND::pfnGetUuid */
    23232323static DECLCALLBACK(int) qcowGetUuid(void *pBackendData, PRTUUID pUuid)
    23242324{
     
    23392339}
    23402340
    2341 /** @copydoc VBOXHDDBACKEND::pfnSetUuid */
     2341/** @copydoc VDIMAGEBACKEND::pfnSetUuid */
    23422342static DECLCALLBACK(int) qcowSetUuid(void *pBackendData, PCRTUUID pUuid)
    23432343{
     
    23642364}
    23652365
    2366 /** @copydoc VBOXHDDBACKEND::pfnGetModificationUuid */
     2366/** @copydoc VDIMAGEBACKEND::pfnGetModificationUuid */
    23672367static DECLCALLBACK(int) qcowGetModificationUuid(void *pBackendData, PRTUUID pUuid)
    23682368{
     
    23832383}
    23842384
    2385 /** @copydoc VBOXHDDBACKEND::pfnSetModificationUuid */
     2385/** @copydoc VDIMAGEBACKEND::pfnSetModificationUuid */
    23862386static DECLCALLBACK(int) qcowSetModificationUuid(void *pBackendData, PCRTUUID pUuid)
    23872387{
     
    24072407}
    24082408
    2409 /** @copydoc VBOXHDDBACKEND::pfnGetParentUuid */
     2409/** @copydoc VDIMAGEBACKEND::pfnGetParentUuid */
    24102410static DECLCALLBACK(int) qcowGetParentUuid(void *pBackendData, PRTUUID pUuid)
    24112411{
     
    24262426}
    24272427
    2428 /** @copydoc VBOXHDDBACKEND::pfnSetParentUuid */
     2428/** @copydoc VDIMAGEBACKEND::pfnSetParentUuid */
    24292429static DECLCALLBACK(int) qcowSetParentUuid(void *pBackendData, PCRTUUID pUuid)
    24302430{
     
    24502450}
    24512451
    2452 /** @copydoc VBOXHDDBACKEND::pfnGetParentModificationUuid */
     2452/** @copydoc VDIMAGEBACKEND::pfnGetParentModificationUuid */
    24532453static DECLCALLBACK(int) qcowGetParentModificationUuid(void *pBackendData, PRTUUID pUuid)
    24542454{
     
    24692469}
    24702470
    2471 /** @copydoc VBOXHDDBACKEND::pfnSetParentModificationUuid */
     2471/** @copydoc VDIMAGEBACKEND::pfnSetParentModificationUuid */
    24722472static DECLCALLBACK(int) qcowSetParentModificationUuid(void *pBackendData, PCRTUUID pUuid)
    24732473{
     
    24932493}
    24942494
    2495 /** @copydoc VBOXHDDBACKEND::pfnDump */
     2495/** @copydoc VDIMAGEBACKEND::pfnDump */
    24962496static DECLCALLBACK(void) qcowDump(void *pBackendData)
    24972497{
     
    25082508}
    25092509
    2510 /** @copydoc VBOXHDDBACKEND::pfnGetParentFilename */
     2510/** @copydoc VDIMAGEBACKEND::pfnGetParentFilename */
    25112511static DECLCALLBACK(int) qcowGetParentFilename(void *pBackendData, char **ppszParentFilename)
    25122512{
     
    25272527}
    25282528
    2529 /** @copydoc VBOXHDDBACKEND::pfnSetParentFilename */
     2529/** @copydoc VDIMAGEBACKEND::pfnSetParentFilename */
    25302530static DECLCALLBACK(int) qcowSetParentFilename(void *pBackendData, const char *pszParentFilename)
    25312531{
  • trunk/src/VBox/Storage/QED.cpp

    r63781 r63785  
    15071507}
    15081508
    1509 /** @copydoc VBOXHDDBACKEND::pfnCheckIfValid */
     1509/** @copydoc VDIMAGEBACKEND::pfnCheckIfValid */
    15101510static DECLCALLBACK(int) qedCheckIfValid(const char *pszFilename, PVDINTERFACE pVDIfsDisk,
    15111511                                         PVDINTERFACE pVDIfsImage, VDTYPE *penmType)
     
    15651565}
    15661566
    1567 /** @copydoc VBOXHDDBACKEND::pfnOpen */
     1567/** @copydoc VDIMAGEBACKEND::pfnOpen */
    15681568static DECLCALLBACK(int) qedOpen(const char *pszFilename, unsigned uOpenFlags,
    15691569                                 PVDINTERFACE pVDIfsDisk, PVDINTERFACE pVDIfsImage,
     
    16141614}
    16151615
    1616 /** @copydoc VBOXHDDBACKEND::pfnCreate */
     1616/** @copydoc VDIMAGEBACKEND::pfnCreate */
    16171617static DECLCALLBACK(int) qedCreate(const char *pszFilename, uint64_t cbSize,
    16181618                                   unsigned uImageFlags, const char *pszComment,
     
    17011701}
    17021702
    1703 /** @copydoc VBOXHDDBACKEND::pfnRename */
     1703/** @copydoc VDIMAGEBACKEND::pfnRename */
    17041704static DECLCALLBACK(int) qedRename(void *pBackendData, const char *pszFilename)
    17051705{
     
    17471747}
    17481748
    1749 /** @copydoc VBOXHDDBACKEND::pfnClose */
     1749/** @copydoc VDIMAGEBACKEND::pfnClose */
    17501750static DECLCALLBACK(int) qedClose(void *pBackendData, bool fDelete)
    17511751{
     
    20102010}
    20112011
    2012 /** @copydoc VBOXHDDBACKEND::pfnGetVersion */
     2012/** @copydoc VDIMAGEBACKEND::pfnGetVersion */
    20132013static DECLCALLBACK(unsigned) qedGetVersion(void *pBackendData)
    20142014{
     
    20242024}
    20252025
    2026 /** @copydoc VBOXHDDBACKEND::pfnGetSectorSize */
     2026/** @copydoc VDIMAGEBACKEND::pfnGetSectorSize */
    20272027static DECLCALLBACK(uint32_t) qedGetSectorSize(void *pBackendData)
    20282028{
     
    20402040}
    20412041
    2042 /** @copydoc VBOXHDDBACKEND::pfnGetSize */
     2042/** @copydoc VDIMAGEBACKEND::pfnGetSize */
    20432043static DECLCALLBACK(uint64_t) qedGetSize(void *pBackendData)
    20442044{
     
    20562056}
    20572057
    2058 /** @copydoc VBOXHDDBACKEND::pfnGetFileSize */
     2058/** @copydoc VDIMAGEBACKEND::pfnGetFileSize */
    20592059static DECLCALLBACK(uint64_t) qedGetFileSize(void *pBackendData)
    20602060{
     
    20802080}
    20812081
    2082 /** @copydoc VBOXHDDBACKEND::pfnGetPCHSGeometry */
     2082/** @copydoc VDIMAGEBACKEND::pfnGetPCHSGeometry */
    20832083static DECLCALLBACK(int) qedGetPCHSGeometry(void *pBackendData,
    20842084                                            PVDGEOMETRY pPCHSGeometry)
     
    21072107}
    21082108
    2109 /** @copydoc VBOXHDDBACKEND::pfnSetPCHSGeometry */
     2109/** @copydoc VDIMAGEBACKEND::pfnSetPCHSGeometry */
    21102110static DECLCALLBACK(int) qedSetPCHSGeometry(void *pBackendData,
    21112111                                            PCVDGEOMETRY pPCHSGeometry)
     
    21362136}
    21372137
    2138 /** @copydoc VBOXHDDBACKEND::pfnGetLCHSGeometry */
     2138/** @copydoc VDIMAGEBACKEND::pfnGetLCHSGeometry */
    21392139static DECLCALLBACK(int) qedGetLCHSGeometry(void *pBackendData,
    21402140                                            PVDGEOMETRY pLCHSGeometry)
     
    21632163}
    21642164
    2165 /** @copydoc VBOXHDDBACKEND::pfnSetLCHSGeometry */
     2165/** @copydoc VDIMAGEBACKEND::pfnSetLCHSGeometry */
    21662166static DECLCALLBACK(int) qedSetLCHSGeometry(void *pBackendData,
    21672167                                            PCVDGEOMETRY pLCHSGeometry)
     
    21922192}
    21932193
    2194 /** @copydoc VBOXHDDBACKEND::pfnGetImageFlags */
     2194/** @copydoc VDIMAGEBACKEND::pfnGetImageFlags */
    21952195static DECLCALLBACK(unsigned) qedGetImageFlags(void *pBackendData)
    21962196{
     
    22102210}
    22112211
    2212 /** @copydoc VBOXHDDBACKEND::pfnGetOpenFlags */
     2212/** @copydoc VDIMAGEBACKEND::pfnGetOpenFlags */
    22132213static DECLCALLBACK(unsigned) qedGetOpenFlags(void *pBackendData)
    22142214{
     
    22282228}
    22292229
    2230 /** @copydoc VBOXHDDBACKEND::pfnSetOpenFlags */
     2230/** @copydoc VDIMAGEBACKEND::pfnSetOpenFlags */
    22312231static DECLCALLBACK(int) qedSetOpenFlags(void *pBackendData, unsigned uOpenFlags)
    22322232{
     
    22542254}
    22552255
    2256 /** @copydoc VBOXHDDBACKEND::pfnGetComment */
     2256/** @copydoc VDIMAGEBACKEND::pfnGetComment */
    22572257static DECLCALLBACK(int) qedGetComment(void *pBackendData, char *pszComment,
    22582258                                       size_t cbComment)
     
    22742274}
    22752275
    2276 /** @copydoc VBOXHDDBACKEND::pfnSetComment */
     2276/** @copydoc VDIMAGEBACKEND::pfnSetComment */
    22772277static DECLCALLBACK(int) qedSetComment(void *pBackendData, const char *pszComment)
    22782278{
     
    22982298}
    22992299
    2300 /** @copydoc VBOXHDDBACKEND::pfnGetUuid */
     2300/** @copydoc VDIMAGEBACKEND::pfnGetUuid */
    23012301static DECLCALLBACK(int) qedGetUuid(void *pBackendData, PRTUUID pUuid)
    23022302{
     
    23172317}
    23182318
    2319 /** @copydoc VBOXHDDBACKEND::pfnSetUuid */
     2319/** @copydoc VDIMAGEBACKEND::pfnSetUuid */
    23202320static DECLCALLBACK(int) qedSetUuid(void *pBackendData, PCRTUUID pUuid)
    23212321{
     
    23422342}
    23432343
    2344 /** @copydoc VBOXHDDBACKEND::pfnGetModificationUuid */
     2344/** @copydoc VDIMAGEBACKEND::pfnGetModificationUuid */
    23452345static DECLCALLBACK(int) qedGetModificationUuid(void *pBackendData, PRTUUID pUuid)
    23462346{
     
    23612361}
    23622362
    2363 /** @copydoc VBOXHDDBACKEND::pfnSetModificationUuid */
     2363/** @copydoc VDIMAGEBACKEND::pfnSetModificationUuid */
    23642364static DECLCALLBACK(int) qedSetModificationUuid(void *pBackendData, PCRTUUID pUuid)
    23652365{
     
    23852385}
    23862386
    2387 /** @copydoc VBOXHDDBACKEND::pfnGetParentUuid */
     2387/** @copydoc VDIMAGEBACKEND::pfnGetParentUuid */
    23882388static DECLCALLBACK(int) qedGetParentUuid(void *pBackendData, PRTUUID pUuid)
    23892389{
     
    24042404}
    24052405
    2406 /** @copydoc VBOXHDDBACKEND::pfnSetParentUuid */
     2406/** @copydoc VDIMAGEBACKEND::pfnSetParentUuid */
    24072407static DECLCALLBACK(int) qedSetParentUuid(void *pBackendData, PCRTUUID pUuid)
    24082408{
     
    24282428}
    24292429
    2430 /** @copydoc VBOXHDDBACKEND::pfnGetParentModificationUuid */
     2430/** @copydoc VDIMAGEBACKEND::pfnGetParentModificationUuid */
    24312431static DECLCALLBACK(int) qedGetParentModificationUuid(void *pBackendData, PRTUUID pUuid)
    24322432{
     
    24472447}
    24482448
    2449 /** @copydoc VBOXHDDBACKEND::pfnSetParentModificationUuid */
     2449/** @copydoc VDIMAGEBACKEND::pfnSetParentModificationUuid */
    24502450static DECLCALLBACK(int) qedSetParentModificationUuid(void *pBackendData, PCRTUUID pUuid)
    24512451{
     
    24712471}
    24722472
    2473 /** @copydoc VBOXHDDBACKEND::pfnDump */
     2473/** @copydoc VDIMAGEBACKEND::pfnDump */
    24742474static DECLCALLBACK(void) qedDump(void *pBackendData)
    24752475{
     
    24862486}
    24872487
    2488 /** @copydoc VBOXHDDBACKEND::pfnGetParentFilename */
     2488/** @copydoc VDIMAGEBACKEND::pfnGetParentFilename */
    24892489static DECLCALLBACK(int) qedGetParentFilename(void *pBackendData, char **ppszParentFilename)
    24902490{
     
    25052505}
    25062506
    2507 /** @copydoc VBOXHDDBACKEND::pfnSetParentFilename */
     2507/** @copydoc VDIMAGEBACKEND::pfnSetParentFilename */
    25082508static DECLCALLBACK(int) qedSetParentFilename(void *pBackendData, const char *pszParentFilename)
    25092509{
     
    25552555}
    25562556
    2557 /** @copydoc VBOXHDDBACKEND::pfnResize */
     2557/** @copydoc VDIMAGEBACKEND::pfnResize */
    25582558static DECLCALLBACK(int) qedResize(void *pBackendData, uint64_t cbSize,
    25592559                                   PCVDGEOMETRY pPCHSGeometry, PCVDGEOMETRY pLCHSGeometry,
  • trunk/src/VBox/Storage/VDI.cpp

    r63781 r63785  
    12661266}
    12671267
    1268 /** @copydoc VBOXHDDBACKEND::pfnCheckIfValid */
     1268/** @copydoc VDIMAGEBACKEND::pfnCheckIfValid */
    12691269static DECLCALLBACK(int) vdiCheckIfValid(const char *pszFilename, PVDINTERFACE pVDIfsDisk,
    12701270                                         PVDINTERFACE pVDIfsImage, VDTYPE *penmType)
     
    13051305}
    13061306
    1307 /** @copydoc VBOXHDDBACKEND::pfnOpen */
     1307/** @copydoc VDIMAGEBACKEND::pfnOpen */
    13081308static DECLCALLBACK(int) vdiOpen(const char *pszFilename, unsigned uOpenFlags,
    13091309                                 PVDINTERFACE pVDIfsDisk, PVDINTERFACE pVDIfsImage,
     
    13541354}
    13551355
    1356 /** @copydoc VBOXHDDBACKEND::pfnCreate */
     1356/** @copydoc VDIMAGEBACKEND::pfnCreate */
    13571357static DECLCALLBACK(int) vdiCreate(const char *pszFilename, uint64_t cbSize,
    13581358                                   unsigned uImageFlags, const char *pszComment,
     
    14611461}
    14621462
    1463 /** @copydoc VBOXHDDBACKEND::pfnRename */
     1463/** @copydoc VDIMAGEBACKEND::pfnRename */
    14641464static DECLCALLBACK(int) vdiRename(void *pBackendData, const char *pszFilename)
    14651465{
     
    15081508}
    15091509
    1510 /** @copydoc VBOXHDDBACKEND::pfnClose */
     1510/** @copydoc VDIMAGEBACKEND::pfnClose */
    15111511static DECLCALLBACK(int) vdiClose(void *pBackendData, bool fDelete)
    15121512{
     
    17261726}
    17271727
    1728 /** @copydoc VBOXHDDBACKEND::pfnGetVersion */
     1728/** @copydoc VDIMAGEBACKEND::pfnGetVersion */
    17291729static DECLCALLBACK(unsigned) vdiGetVersion(void *pBackendData)
    17301730{
     
    17441744}
    17451745
    1746 /** @copydoc VBOXHDDBACKEND::pfnGetSectorSize */
     1746/** @copydoc VDIMAGEBACKEND::pfnGetSectorSize */
    17471747static DECLCALLBACK(uint32_t) vdiGetSectorSize(void *pBackendData)
    17481748{
     
    17601760}
    17611761
    1762 /** @copydoc VBOXHDDBACKEND::pfnGetSize */
     1762/** @copydoc VDIMAGEBACKEND::pfnGetSize */
    17631763static DECLCALLBACK(uint64_t) vdiGetSize(void *pBackendData)
    17641764{
     
    17781778}
    17791779
    1780 /** @copydoc VBOXHDDBACKEND::pfnGetFileSize */
     1780/** @copydoc VDIMAGEBACKEND::pfnGetFileSize */
    17811781static DECLCALLBACK(uint64_t) vdiGetFileSize(void *pBackendData)
    17821782{
     
    18021802}
    18031803
    1804 /** @copydoc VBOXHDDBACKEND::pfnGetPCHSGeometry */
     1804/** @copydoc VDIMAGEBACKEND::pfnGetPCHSGeometry */
    18051805static DECLCALLBACK(int) vdiGetPCHSGeometry(void *pBackendData, PVDGEOMETRY pPCHSGeometry)
    18061806{
     
    18281828}
    18291829
    1830 /** @copydoc VBOXHDDBACKEND::pfnSetPCHSGeometry */
     1830/** @copydoc VDIMAGEBACKEND::pfnSetPCHSGeometry */
    18311831static DECLCALLBACK(int) vdiSetPCHSGeometry(void *pBackendData, PCVDGEOMETRY pPCHSGeometry)
    18321832{
     
    18561856}
    18571857
    1858 /** @copydoc VBOXHDDBACKEND::pfnGetLCHSGeometry */
     1858/** @copydoc VDIMAGEBACKEND::pfnGetLCHSGeometry */
    18591859static DECLCALLBACK(int) vdiGetLCHSGeometry(void *pBackendData, PVDGEOMETRY pLCHSGeometry)
    18601860{
     
    18911891}
    18921892
    1893 /** @copydoc VBOXHDDBACKEND::pfnSetLCHSGeometry */
     1893/** @copydoc VDIMAGEBACKEND::pfnSetLCHSGeometry */
    18941894static DECLCALLBACK(int) vdiSetLCHSGeometry(void *pBackendData, PCVDGEOMETRY pLCHSGeometry)
    18951895{
     
    19301930}
    19311931
    1932 /** @copydoc VBOXHDDBACKEND::pfnGetImageFlags */
     1932/** @copydoc VDIMAGEBACKEND::pfnGetImageFlags */
    19331933static DECLCALLBACK(unsigned) vdiGetImageFlags(void *pBackendData)
    19341934{
     
    19481948}
    19491949
    1950 /** @copydoc VBOXHDDBACKEND::pfnGetOpenFlags */
     1950/** @copydoc VDIMAGEBACKEND::pfnGetOpenFlags */
    19511951static DECLCALLBACK(unsigned) vdiGetOpenFlags(void *pBackendData)
    19521952{
     
    19661966}
    19671967
    1968 /** @copydoc VBOXHDDBACKEND::pfnSetOpenFlags */
     1968/** @copydoc VDIMAGEBACKEND::pfnSetOpenFlags */
    19691969static DECLCALLBACK(int) vdiSetOpenFlags(void *pBackendData, unsigned uOpenFlags)
    19701970{
     
    19961996}
    19971997
    1998 /** @copydoc VBOXHDDBACKEND::pfnGetComment */
     1998/** @copydoc VDIMAGEBACKEND::pfnGetComment */
    19991999static DECLCALLBACK(int) vdiGetComment(void *pBackendData, char *pszComment,
    20002000                                       size_t cbComment)
     
    20322032}
    20332033
    2034 /** @copydoc VBOXHDDBACKEND::pfnGetComment */
     2034/** @copydoc VDIMAGEBACKEND::pfnGetComment */
    20352035static DECLCALLBACK(int) vdiSetComment(void *pBackendData, const char *pszComment)
    20362036{
     
    20792079}
    20802080
    2081 /** @copydoc VBOXHDDBACKEND::pfnGetUuid */
     2081/** @copydoc VDIMAGEBACKEND::pfnGetUuid */
    20822082static DECLCALLBACK(int) vdiGetUuid(void *pBackendData, PRTUUID pUuid)
    20832083{
     
    21002100}
    21012101
    2102 /** @copydoc VBOXHDDBACKEND::pfnSetUuid */
     2102/** @copydoc VDIMAGEBACKEND::pfnSetUuid */
    21032103static DECLCALLBACK(int) vdiSetUuid(void *pBackendData, PCRTUUID pUuid)
    21042104{
     
    21342134}
    21352135
    2136 /** @copydoc VBOXHDDBACKEND::pfnGetModificationUuid */
     2136/** @copydoc VDIMAGEBACKEND::pfnGetModificationUuid */
    21372137static DECLCALLBACK(int) vdiGetModificationUuid(void *pBackendData, PRTUUID pUuid)
    21382138{
     
    21552155}
    21562156
    2157 /** @copydoc VBOXHDDBACKEND::pfnSetModificationUuid */
     2157/** @copydoc VDIMAGEBACKEND::pfnSetModificationUuid */
    21582158static DECLCALLBACK(int) vdiSetModificationUuid(void *pBackendData, PCRTUUID pUuid)
    21592159{
     
    21892189}
    21902190
    2191 /** @copydoc VBOXHDDBACKEND::pfnGetParentUuid */
     2191/** @copydoc VDIMAGEBACKEND::pfnGetParentUuid */
    21922192static DECLCALLBACK(int) vdiGetParentUuid(void *pBackendData, PRTUUID pUuid)
    21932193{
     
    22102210}
    22112211
    2212 /** @copydoc VBOXHDDBACKEND::pfnSetParentUuid */
     2212/** @copydoc VDIMAGEBACKEND::pfnSetParentUuid */
    22132213static DECLCALLBACK(int) vdiSetParentUuid(void *pBackendData, PCRTUUID pUuid)
    22142214{
     
    22442244}
    22452245
    2246 /** @copydoc VBOXHDDBACKEND::pfnGetParentModificationUuid */
     2246/** @copydoc VDIMAGEBACKEND::pfnGetParentModificationUuid */
    22472247static DECLCALLBACK(int) vdiGetParentModificationUuid(void *pBackendData, PRTUUID pUuid)
    22482248{
     
    22652265}
    22662266
    2267 /** @copydoc VBOXHDDBACKEND::pfnSetParentModificationUuid */
     2267/** @copydoc VDIMAGEBACKEND::pfnSetParentModificationUuid */
    22682268static DECLCALLBACK(int) vdiSetParentModificationUuid(void *pBackendData, PCRTUUID pUuid)
    22692269{
     
    22962296}
    22972297
    2298 /** @copydoc VBOXHDDBACKEND::pfnDump */
     2298/** @copydoc VDIMAGEBACKEND::pfnDump */
    22992299static DECLCALLBACK(void) vdiDump(void *pBackendData)
    23002300{
     
    23582358}
    23592359
    2360 /** @copydoc VBOXHDDBACKEND::pfnCompact */
     2360/** @copydoc VDIMAGEBACKEND::pfnCompact */
    23612361static DECLCALLBACK(int) vdiCompact(void *pBackendData, unsigned uPercentStart,
    23622362                                    unsigned uPercentSpan, PVDINTERFACE pVDIfsDisk,
     
    26052605
    26062606
    2607 /** @copydoc VBOXHDDBACKEND::pfnResize */
     2607/** @copydoc VDIMAGEBACKEND::pfnResize */
    26082608static DECLCALLBACK(int) vdiResize(void *pBackendData, uint64_t cbSize,
    26092609                                   PCVDGEOMETRY pPCHSGeometry, PCVDGEOMETRY pLCHSGeometry,
     
    28052805}
    28062806
    2807 /** @copydoc VBOXHDDBACKEND::pfnDiscard */
     2807/** @copydoc VDIMAGEBACKEND::pfnDiscard */
    28082808static DECLCALLBACK(int) vdiDiscard(void *pBackendData, PVDIOCTX pIoCtx,
    28092809                                         uint64_t uOffset, size_t cbDiscard,
     
    29482948}
    29492949
    2950 /** @copydoc VBOXHDDBACKEND::pfnRepair */
     2950/** @copydoc VDIMAGEBACKEND::pfnRepair */
    29512951static DECLCALLBACK(int) vdiRepair(const char *pszFilename, PVDINTERFACE pVDIfsDisk,
    29522952                                   PVDINTERFACE pVDIfsImage, uint32_t fFlags)
  • trunk/src/VBox/Storage/VHD.cpp

    r63781 r63785  
    12461246
    12471247
    1248 /** @interface_method_impl{VBOXHDDBACKEND,pfnCheckIfValid} */
     1248/** @interface_method_impl{VDIMAGEBACKEND,pfnCheckIfValid} */
    12491249static DECLCALLBACK(int) vhdCheckIfValid(const char *pszFilename, PVDINTERFACE pVDIfsDisk,
    12501250                                         PVDINTERFACE pVDIfsImage, VDTYPE *penmType)
     
    13041304}
    13051305
    1306 /** @interface_method_impl{VBOXHDDBACKEND,pfnOpen} */
     1306/** @interface_method_impl{VDIMAGEBACKEND,pfnOpen} */
    13071307static DECLCALLBACK(int) vhdOpen(const char *pszFilename, unsigned uOpenFlags,
    13081308                                 PVDINTERFACE pVDIfsDisk, PVDINTERFACE pVDIfsImage,
     
    13531353}
    13541354
    1355 /** @interface_method_impl{VBOXHDDBACKEND,pfnCreate} */
     1355/** @interface_method_impl{VDIMAGEBACKEND,pfnCreate} */
    13561356static DECLCALLBACK(int) vhdCreate(const char *pszFilename, uint64_t cbSize,
    13571357                                   unsigned uImageFlags, const char *pszComment,
     
    14401440}
    14411441
    1442 /** @interface_method_impl{VBOXHDDBACKEND,pfnRename} */
     1442/** @interface_method_impl{VDIMAGEBACKEND,pfnRename} */
    14431443static DECLCALLBACK(int) vhdRename(void *pBackendData, const char *pszFilename)
    14441444{
     
    14861486}
    14871487
    1488 /** @interface_method_impl{VBOXHDDBACKEND,pfnClose} */
     1488/** @interface_method_impl{VDIMAGEBACKEND,pfnClose} */
    14891489static DECLCALLBACK(int) vhdClose(void *pBackendData, bool fDelete)
    14901490{
     
    15001500}
    15011501
    1502 /** @interface_method_impl{VBOXHDDBACKEND,pfnRead} */
     1502/** @interface_method_impl{VDIMAGEBACKEND,pfnRead} */
    15031503static DECLCALLBACK(int) vhdRead(void *pBackendData, uint64_t uOffset, size_t cbRead,
    15041504                                 PVDIOCTX pIoCtx, size_t *pcbActuallyRead)
     
    16161616}
    16171617
    1618 /** @interface_method_impl{VBOXHDDBACKEND,pfnWrite} */
     1618/** @interface_method_impl{VDIMAGEBACKEND,pfnWrite} */
    16191619static DECLCALLBACK(int) vhdWrite(void *pBackendData, uint64_t uOffset, size_t cbWrite,
    16201620                         PVDIOCTX pIoCtx, size_t *pcbWriteProcess, size_t *pcbPreRead,
     
    18501850}
    18511851
    1852 /** @interface_method_impl{VBOXHDDBACKEND,pfnFlush} */
     1852/** @interface_method_impl{VDIMAGEBACKEND,pfnFlush} */
    18531853static DECLCALLBACK(int) vhdFlush(void *pBackendData, PVDIOCTX pIoCtx)
    18541854{
     
    18591859}
    18601860
    1861 /** @interface_method_impl{VBOXHDDBACKEND,pfnGetVersion} */
     1861/** @interface_method_impl{VDIMAGEBACKEND,pfnGetVersion} */
    18621862static DECLCALLBACK(unsigned) vhdGetVersion(void *pBackendData)
    18631863{
     
    18751875}
    18761876
    1877 /** @interface_method_impl{VBOXHDDBACKEND,pfnGetSectorSize} */
     1877/** @interface_method_impl{VDIMAGEBACKEND,pfnGetSectorSize} */
    18781878static DECLCALLBACK(uint32_t) vhdGetSectorSize(void *pBackendData)
    18791879{
     
    18911891}
    18921892
    1893 /** @interface_method_impl{VBOXHDDBACKEND,pfnGetSize} */
     1893/** @interface_method_impl{VDIMAGEBACKEND,pfnGetSize} */
    18941894static DECLCALLBACK(uint64_t) vhdGetSize(void *pBackendData)
    18951895{
     
    19071907}
    19081908
    1909 /** @interface_method_impl{VBOXHDDBACKEND,pfnGetFileSize} */
     1909/** @interface_method_impl{VDIMAGEBACKEND,pfnGetFileSize} */
    19101910static DECLCALLBACK(uint64_t) vhdGetFileSize(void *pBackendData)
    19111911{
     
    19231923}
    19241924
    1925 /** @interface_method_impl{VBOXHDDBACKEND,pfnGetPCHSGeometry} */
     1925/** @interface_method_impl{VDIMAGEBACKEND,pfnGetPCHSGeometry} */
    19261926static DECLCALLBACK(int) vhdGetPCHSGeometry(void *pBackendData, PVDGEOMETRY pPCHSGeometry)
    19271927{
     
    19491949}
    19501950
    1951 /** @interface_method_impl{VBOXHDDBACKEND,pfnSetPCHSGeometry} */
     1951/** @interface_method_impl{VDIMAGEBACKEND,pfnSetPCHSGeometry} */
    19521952static DECLCALLBACK(int) vhdSetPCHSGeometry(void *pBackendData, PCVDGEOMETRY pPCHSGeometry)
    19531953{
     
    19771977}
    19781978
    1979 /** @interface_method_impl{VBOXHDDBACKEND,pfnGetLCHSGeometry} */
     1979/** @interface_method_impl{VDIMAGEBACKEND,pfnGetLCHSGeometry} */
    19801980static DECLCALLBACK(int) vhdGetLCHSGeometry(void *pBackendData, PVDGEOMETRY pLCHSGeometry)
    19811981{
     
    20032003}
    20042004
    2005 /** @interface_method_impl{VBOXHDDBACKEND,pfnSetLCHSGeometry} */
     2005/** @interface_method_impl{VDIMAGEBACKEND,pfnSetLCHSGeometry} */
    20062006static DECLCALLBACK(int) vhdSetLCHSGeometry(void *pBackendData, PCVDGEOMETRY pLCHSGeometry)
    20072007{
     
    20302030}
    20312031
    2032 /** @interface_method_impl{VBOXHDDBACKEND,pfnGetImageFlags} */
     2032/** @interface_method_impl{VDIMAGEBACKEND,pfnGetImageFlags} */
    20332033static DECLCALLBACK(unsigned) vhdGetImageFlags(void *pBackendData)
    20342034{
     
    20482048}
    20492049
    2050 /** @interface_method_impl{VBOXHDDBACKEND,pfnGetOpenFlags} */
     2050/** @interface_method_impl{VDIMAGEBACKEND,pfnGetOpenFlags} */
    20512051static DECLCALLBACK(unsigned) vhdGetOpenFlags(void *pBackendData)
    20522052{
     
    20662066}
    20672067
    2068 /** @interface_method_impl{VBOXHDDBACKEND,pfnSetOpenFlags} */
     2068/** @interface_method_impl{VDIMAGEBACKEND,pfnSetOpenFlags} */
    20692069static DECLCALLBACK(int) vhdSetOpenFlags(void *pBackendData, unsigned uOpenFlags)
    20702070{
     
    20932093}
    20942094
    2095 /** @interface_method_impl{VBOXHDDBACKEND,pfnGetComment} */
     2095/** @interface_method_impl{VDIMAGEBACKEND,pfnGetComment} */
    20962096static DECLCALLBACK(int) vhdGetComment(void *pBackendData, char *pszComment,
    20972097                                       size_t cbComment)
     
    21132113}
    21142114
    2115 /** @interface_method_impl{VBOXHDDBACKEND,pfnSetComment} */
     2115/** @interface_method_impl{VDIMAGEBACKEND,pfnSetComment} */
    21162116static DECLCALLBACK(int) vhdSetComment(void *pBackendData, const char *pszComment)
    21172117{
     
    21372137}
    21382138
    2139 /** @interface_method_impl{VBOXHDDBACKEND,pfnGetUuid} */
     2139/** @interface_method_impl{VDIMAGEBACKEND,pfnGetUuid} */
    21402140static DECLCALLBACK(int) vhdGetUuid(void *pBackendData, PRTUUID pUuid)
    21412141{
     
    21582158}
    21592159
    2160 /** @interface_method_impl{VBOXHDDBACKEND,pfnSetUuid} */
     2160/** @interface_method_impl{VDIMAGEBACKEND,pfnSetUuid} */
    21612161static DECLCALLBACK(int) vhdSetUuid(void *pBackendData, PCRTUUID pUuid)
    21622162{
     
    21932193}
    21942194
    2195 /** @interface_method_impl{VBOXHDDBACKEND,pfnGetModificationUuid} */
     2195/** @interface_method_impl{VDIMAGEBACKEND,pfnGetModificationUuid} */
    21962196static DECLCALLBACK(int) vhdGetModificationUuid(void *pBackendData, PRTUUID pUuid)
    21972197{
     
    22122212}
    22132213
    2214 /** @interface_method_impl{VBOXHDDBACKEND,pfnSetModificationUuid} */
     2214/** @interface_method_impl{VDIMAGEBACKEND,pfnSetModificationUuid} */
    22152215static DECLCALLBACK(int) vhdSetModificationUuid(void *pBackendData, PCRTUUID pUuid)
    22162216{
     
    22362236}
    22372237
    2238 /** @interface_method_impl{VBOXHDDBACKEND,pfnGetParentUuid} */
     2238/** @interface_method_impl{VDIMAGEBACKEND,pfnGetParentUuid} */
    22392239static DECLCALLBACK(int) vhdGetParentUuid(void *pBackendData, PRTUUID pUuid)
    22402240{
     
    22572257}
    22582258
    2259 /** @interface_method_impl{VBOXHDDBACKEND,pfnSetParentUuid} */
     2259/** @interface_method_impl{VDIMAGEBACKEND,pfnSetParentUuid} */
    22602260static DECLCALLBACK(int) vhdSetParentUuid(void *pBackendData, PCRTUUID pUuid)
    22612261{
     
    22832283}
    22842284
    2285 /** @interface_method_impl{VBOXHDDBACKEND,pfnGetParentModificationUuid} */
     2285/** @interface_method_impl{VDIMAGEBACKEND,pfnGetParentModificationUuid} */
    22862286static DECLCALLBACK(int) vhdGetParentModificationUuid(void *pBackendData, PRTUUID pUuid)
    22872287{
     
    23022302}
    23032303
    2304 /** @interface_method_impl{VBOXHDDBACKEND,pfnSetParentModificationUuid} */
     2304/** @interface_method_impl{VDIMAGEBACKEND,pfnSetParentModificationUuid} */
    23052305static DECLCALLBACK(int) vhdSetParentModificationUuid(void *pBackendData, PCRTUUID pUuid)
    23062306{
     
    23262326}
    23272327
    2328 /** @interface_method_impl{VBOXHDDBACKEND,pfnDump} */
     2328/** @interface_method_impl{VDIMAGEBACKEND,pfnDump} */
    23292329static DECLCALLBACK(void) vhdDump(void *pBackendData)
    23302330{
     
    23432343}
    23442344
    2345 /** @interface_method_impl{VBOXHDDBACKEND,pfnGetTimestamp} */
     2345/** @interface_method_impl{VDIMAGEBACKEND,pfnGetTimestamp} */
    23462346static DECLCALLBACK(int) vhdGetTimestamp(void *pBackendData, PRTTIMESPEC pTimestamp)
    23472347{
     
    23602360}
    23612361
    2362 /** @interface_method_impl{VBOXHDDBACKEND,pfnGetParentTimestamp} */
     2362/** @interface_method_impl{VDIMAGEBACKEND,pfnGetParentTimestamp} */
    23632363static DECLCALLBACK(int) vhdGetParentTimestamp(void *pBackendData, PRTTIMESPEC pTimestamp)
    23642364{
     
    23772377}
    23782378
    2379 /** @interface_method_impl{VBOXHDDBACKEND,pfnSetParentTimestamp} */
     2379/** @interface_method_impl{VDIMAGEBACKEND,pfnSetParentTimestamp} */
    23802380static DECLCALLBACK(int) vhdSetParentTimestamp(void *pBackendData, PCRTTIMESPEC pTimestamp)
    23812381{
     
    24012401}
    24022402
    2403 /** @interface_method_impl{VBOXHDDBACKEND,pfnGetParentFilename} */
     2403/** @interface_method_impl{VDIMAGEBACKEND,pfnGetParentFilename} */
    24042404static DECLCALLBACK(int) vhdGetParentFilename(void *pBackendData, char **ppszParentFilename)
    24052405{
     
    24172417}
    24182418
    2419 /** @interface_method_impl{VBOXHDDBACKEND,pfnSetParentFilename} */
     2419/** @interface_method_impl{VDIMAGEBACKEND,pfnSetParentFilename} */
    24202420static DECLCALLBACK(int) vhdSetParentFilename(void *pBackendData, const char *pszParentFilename)
    24212421{
     
    24462446}
    24472447
    2448 /** @interface_method_impl{VBOXHDDBACKEND,pfnCompact} */
     2448/** @interface_method_impl{VDIMAGEBACKEND,pfnCompact} */
    24492449static DECLCALLBACK(int) vhdCompact(void *pBackendData, unsigned uPercentStart,
    24502450                                    unsigned uPercentSpan, PVDINTERFACE pVDIfsDisk,
     
    26862686}
    26872687
    2688 /** @interface_method_impl{VBOXHDDBACKEND,pfnResize} */
     2688/** @interface_method_impl{VDIMAGEBACKEND,pfnResize} */
    26892689static DECLCALLBACK(int) vhdResize(void *pBackendData, uint64_t cbSize,
    26902690                                   PCVDGEOMETRY pPCHSGeometry, PCVDGEOMETRY pLCHSGeometry,
     
    28712871}
    28722872
    2873 /** @interface_method_impl{VBOXHDDBACKEND,pfnRepair} */
     2873/** @interface_method_impl{VDIMAGEBACKEND,pfnRepair} */
    28742874static DECLCALLBACK(int) vhdRepair(const char *pszFilename, PVDINTERFACE pVDIfsDisk,
    28752875                                   PVDINTERFACE pVDIfsImage, uint32_t fFlags)
  • trunk/src/VBox/Storage/VHDX.cpp

    r63781 r63785  
    17511751
    17521752
    1753 /** @copydoc VBOXHDDBACKEND::pfnCheckIfValid */
     1753/** @copydoc VDIMAGEBACKEND::pfnCheckIfValid */
    17541754static DECLCALLBACK(int) vhdxCheckIfValid(const char *pszFilename, PVDINTERFACE pVDIfsDisk,
    17551755                                          PVDINTERFACE pVDIfsImage, VDTYPE *penmType)
     
    18091809}
    18101810
    1811 /** @copydoc VBOXHDDBACKEND::pfnOpen */
     1811/** @copydoc VDIMAGEBACKEND::pfnOpen */
    18121812static DECLCALLBACK(int) vhdxOpen(const char *pszFilename, unsigned uOpenFlags,
    18131813                                  PVDINTERFACE pVDIfsDisk, PVDINTERFACE pVDIfsImage,
     
    18491849}
    18501850
    1851 /** @interface_method_impl{VBOXHDDBACKEND,pfnCreate} */
     1851/** @interface_method_impl{VDIMAGEBACKEND,pfnCreate} */
    18521852static DECLCALLBACK(int) vhdxCreate(const char *pszFilename, uint64_t cbSize,
    18531853                                    unsigned uImageFlags, const char *pszComment,
     
    18691869}
    18701870
    1871 /** @copydoc VBOXHDDBACKEND::pfnRename */
     1871/** @copydoc VDIMAGEBACKEND::pfnRename */
    18721872static DECLCALLBACK(int) vhdxRename(void *pBackendData, const char *pszFilename)
    18731873{
     
    19111911}
    19121912
    1913 /** @copydoc VBOXHDDBACKEND::pfnClose */
     1913/** @copydoc VDIMAGEBACKEND::pfnClose */
    19141914static DECLCALLBACK(int) vhdxClose(void *pBackendData, bool fDelete)
    19151915{
     
    19251925}
    19261926
    1927 /** @copydoc VBOXHDDBACKEND::pfnRead */
     1927/** @copydoc VDIMAGEBACKEND::pfnRead */
    19281928static DECLCALLBACK(int) vhdxRead(void *pBackendData, uint64_t uOffset, size_t cbToRead,
    19291929                                  PVDIOCTX pIoCtx, size_t *pcbActuallyRead)
     
    19831983}
    19841984
    1985 /** @copydoc VBOXHDDBACKEND::pfnWrite */
     1985/** @copydoc VDIMAGEBACKEND::pfnWrite */
    19861986static DECLCALLBACK(int) vhdxWrite(void *pBackendData, uint64_t uOffset,  size_t cbToWrite,
    19871987                                   PVDIOCTX pIoCtx, size_t *pcbWriteProcess, size_t *pcbPreRead,
     
    20102010}
    20112011
    2012 /** @copydoc VBOXHDDBACKEND::pfnFlush */
     2012/** @copydoc VDIMAGEBACKEND::pfnFlush */
    20132013static DECLCALLBACK(int) vhdxFlush(void *pBackendData, PVDIOCTX pIoCtx)
    20142014{
     
    20272027}
    20282028
    2029 /** @copydoc VBOXHDDBACKEND::pfnGetVersion */
     2029/** @copydoc VDIMAGEBACKEND::pfnGetVersion */
    20302030static DECLCALLBACK(unsigned) vhdxGetVersion(void *pBackendData)
    20312031{
     
    20412041}
    20422042
    2043 /** @copydoc VBOXHDDBACKEND::pfnGetSectorSize */
     2043/** @copydoc VDIMAGEBACKEND::pfnGetSectorSize */
    20442044static DECLCALLBACK(uint32_t) vhdxGetSectorSize(void *pBackendData)
    20452045{
     
    20572057}
    20582058
    2059 /** @copydoc VBOXHDDBACKEND::pfnGetSize */
     2059/** @copydoc VDIMAGEBACKEND::pfnGetSize */
    20602060static DECLCALLBACK(uint64_t) vhdxGetSize(void *pBackendData)
    20612061{
     
    20732073}
    20742074
    2075 /** @copydoc VBOXHDDBACKEND::pfnGetFileSize */
     2075/** @copydoc VDIMAGEBACKEND::pfnGetFileSize */
    20762076static DECLCALLBACK(uint64_t) vhdxGetFileSize(void *pBackendData)
    20772077{
     
    20972097}
    20982098
    2099 /** @copydoc VBOXHDDBACKEND::pfnGetPCHSGeometry */
     2099/** @copydoc VDIMAGEBACKEND::pfnGetPCHSGeometry */
    21002100static DECLCALLBACK(int) vhdxGetPCHSGeometry(void *pBackendData,
    21012101                                             PVDGEOMETRY pPCHSGeometry)
     
    21242124}
    21252125
    2126 /** @copydoc VBOXHDDBACKEND::pfnSetPCHSGeometry */
     2126/** @copydoc VDIMAGEBACKEND::pfnSetPCHSGeometry */
    21272127static DECLCALLBACK(int) vhdxSetPCHSGeometry(void *pBackendData,
    21282128                                             PCVDGEOMETRY pPCHSGeometry)
     
    21482148}
    21492149
    2150 /** @copydoc VBOXHDDBACKEND::pfnGetLCHSGeometry */
     2150/** @copydoc VDIMAGEBACKEND::pfnGetLCHSGeometry */
    21512151static DECLCALLBACK(int) vhdxGetLCHSGeometry(void *pBackendData,
    21522152                                             PVDGEOMETRY pLCHSGeometry)
     
    21722172}
    21732173
    2174 /** @copydoc VBOXHDDBACKEND::pfnSetLCHSGeometry */
     2174/** @copydoc VDIMAGEBACKEND::pfnSetLCHSGeometry */
    21752175static DECLCALLBACK(int) vhdxSetLCHSGeometry(void *pBackendData,
    21762176                                             PCVDGEOMETRY pLCHSGeometry)
     
    21962196}
    21972197
    2198 /** @copydoc VBOXHDDBACKEND::pfnGetImageFlags */
     2198/** @copydoc VDIMAGEBACKEND::pfnGetImageFlags */
    21992199static DECLCALLBACK(unsigned) vhdxGetImageFlags(void *pBackendData)
    22002200{
     
    22142214}
    22152215
    2216 /** @copydoc VBOXHDDBACKEND::pfnGetOpenFlags */
     2216/** @copydoc VDIMAGEBACKEND::pfnGetOpenFlags */
    22172217static DECLCALLBACK(unsigned) vhdxGetOpenFlags(void *pBackendData)
    22182218{
     
    22322232}
    22332233
    2234 /** @copydoc VBOXHDDBACKEND::pfnSetOpenFlags */
     2234/** @copydoc VDIMAGEBACKEND::pfnSetOpenFlags */
    22352235static DECLCALLBACK(int) vhdxSetOpenFlags(void *pBackendData, unsigned uOpenFlags)
    22362236{
     
    22542254}
    22552255
    2256 /** @copydoc VBOXHDDBACKEND::pfnGetComment */
     2256/** @copydoc VDIMAGEBACKEND::pfnGetComment */
    22572257static DECLCALLBACK(int) vhdxGetComment(void *pBackendData, char *pszComment,
    22582258                                        size_t cbComment)
     
    22742274}
    22752275
    2276 /** @copydoc VBOXHDDBACKEND::pfnSetComment */
     2276/** @copydoc VDIMAGEBACKEND::pfnSetComment */
    22772277static DECLCALLBACK(int) vhdxSetComment(void *pBackendData, const char *pszComment)
    22782278{
     
    22982298}
    22992299
    2300 /** @copydoc VBOXHDDBACKEND::pfnGetUuid */
     2300/** @copydoc VDIMAGEBACKEND::pfnGetUuid */
    23012301static DECLCALLBACK(int) vhdxGetUuid(void *pBackendData, PRTUUID pUuid)
    23022302{
     
    23172317}
    23182318
    2319 /** @copydoc VBOXHDDBACKEND::pfnSetUuid */
     2319/** @copydoc VDIMAGEBACKEND::pfnSetUuid */
    23202320static DECLCALLBACK(int) vhdxSetUuid(void *pBackendData, PCRTUUID pUuid)
    23212321{
     
    23422342}
    23432343
    2344 /** @copydoc VBOXHDDBACKEND::pfnGetModificationUuid */
     2344/** @copydoc VDIMAGEBACKEND::pfnGetModificationUuid */
    23452345static DECLCALLBACK(int) vhdxGetModificationUuid(void *pBackendData, PRTUUID pUuid)
    23462346{
     
    23612361}
    23622362
    2363 /** @copydoc VBOXHDDBACKEND::pfnSetModificationUuid */
     2363/** @copydoc VDIMAGEBACKEND::pfnSetModificationUuid */
    23642364static DECLCALLBACK(int) vhdxSetModificationUuid(void *pBackendData, PCRTUUID pUuid)
    23652365{
     
    23852385}
    23862386
    2387 /** @copydoc VBOXHDDBACKEND::pfnGetParentUuid */
     2387/** @copydoc VDIMAGEBACKEND::pfnGetParentUuid */
    23882388static DECLCALLBACK(int) vhdxGetParentUuid(void *pBackendData, PRTUUID pUuid)
    23892389{
     
    24042404}
    24052405
    2406 /** @copydoc VBOXHDDBACKEND::pfnSetParentUuid */
     2406/** @copydoc VDIMAGEBACKEND::pfnSetParentUuid */
    24072407static DECLCALLBACK(int) vhdxSetParentUuid(void *pBackendData, PCRTUUID pUuid)
    24082408{
     
    24282428}
    24292429
    2430 /** @copydoc VBOXHDDBACKEND::pfnGetParentModificationUuid */
     2430/** @copydoc VDIMAGEBACKEND::pfnGetParentModificationUuid */
    24312431static DECLCALLBACK(int) vhdxGetParentModificationUuid(void *pBackendData, PRTUUID pUuid)
    24322432{
     
    24472447}
    24482448
    2449 /** @copydoc VBOXHDDBACKEND::pfnSetParentModificationUuid */
     2449/** @copydoc VDIMAGEBACKEND::pfnSetParentModificationUuid */
    24502450static DECLCALLBACK(int) vhdxSetParentModificationUuid(void *pBackendData, PCRTUUID pUuid)
    24512451{
     
    24712471}
    24722472
    2473 /** @copydoc VBOXHDDBACKEND::pfnDump */
     2473/** @copydoc VDIMAGEBACKEND::pfnDump */
    24742474static DECLCALLBACK(void) vhdxDump(void *pBackendData)
    24752475{
  • trunk/src/VBox/Storage/VMDK.cpp

    r63781 r63785  
    52185218
    52195219
    5220 /** @copydoc VBOXHDDBACKEND::pfnCheckIfValid */
     5220/** @copydoc VDIMAGEBACKEND::pfnCheckIfValid */
    52215221static DECLCALLBACK(int) vmdkCheckIfValid(const char *pszFilename, PVDINTERFACE pVDIfsDisk,
    52225222                                          PVDINTERFACE pVDIfsImage, VDTYPE *penmType)
     
    52635263}
    52645264
    5265 /** @copydoc VBOXHDDBACKEND::pfnOpen */
     5265/** @copydoc VDIMAGEBACKEND::pfnOpen */
    52665266static DECLCALLBACK(int) vmdkOpen(const char *pszFilename, unsigned uOpenFlags,
    52675267                                  PVDINTERFACE pVDIfsDisk, PVDINTERFACE pVDIfsImage,
     
    53165316}
    53175317
    5318 /** @copydoc VBOXHDDBACKEND::pfnCreate */
     5318/** @copydoc VDIMAGEBACKEND::pfnCreate */
    53195319static DECLCALLBACK(int) vmdkCreate(const char *pszFilename, uint64_t cbSize,
    53205320                                    unsigned uImageFlags, const char *pszComment,
     
    54425442}
    54435443
    5444 /** @copydoc VBOXHDDBACKEND::pfnRename */
     5444/** @copydoc VDIMAGEBACKEND::pfnRename */
    54455445static DECLCALLBACK(int) vmdkRename(void *pBackendData, const char *pszFilename)
    54465446{
     
    56975697}
    56985698
    5699 /** @copydoc VBOXHDDBACKEND::pfnClose */
     5699/** @copydoc VDIMAGEBACKEND::pfnClose */
    57005700static DECLCALLBACK(int) vmdkClose(void *pBackendData, bool fDelete)
    57015701{
     
    57115711}
    57125712
    5713 /** @copydoc VBOXHDDBACKEND::pfnRead */
     5713/** @copydoc VDIMAGEBACKEND::pfnRead */
    57145714static DECLCALLBACK(int) vmdkRead(void *pBackendData, uint64_t uOffset, size_t cbToRead,
    57155715                                  PVDIOCTX pIoCtx, size_t *pcbActuallyRead)
     
    58345834}
    58355835
    5836 /** @copydoc VBOXHDDBACKEND::pfnWrite */
     5836/** @copydoc VDIMAGEBACKEND::pfnWrite */
    58375837static DECLCALLBACK(int) vmdkWrite(void *pBackendData, uint64_t uOffset, size_t cbToWrite,
    58385838                                   PVDIOCTX pIoCtx, size_t *pcbWriteProcess, size_t *pcbPreRead,
     
    59805980}
    59815981
    5982 /** @copydoc VBOXHDDBACKEND::pfnFlush */
     5982/** @copydoc VDIMAGEBACKEND::pfnFlush */
    59835983static DECLCALLBACK(int) vmdkFlush(void *pBackendData, PVDIOCTX pIoCtx)
    59845984{
     
    59885988}
    59895989
    5990 /** @copydoc VBOXHDDBACKEND::pfnGetVersion */
     5990/** @copydoc VDIMAGEBACKEND::pfnGetVersion */
    59915991static DECLCALLBACK(unsigned) vmdkGetVersion(void *pBackendData)
    59925992{
     
    60026002}
    60036003
    6004 /** @copydoc VBOXHDDBACKEND::pfnGetSectorSize */
     6004/** @copydoc VDIMAGEBACKEND::pfnGetSectorSize */
    60056005static DECLCALLBACK(uint32_t) vmdkGetSectorSize(void *pBackendData)
    60066006{
     
    60166016}
    60176017
    6018 /** @copydoc VBOXHDDBACKEND::pfnGetSize */
     6018/** @copydoc VDIMAGEBACKEND::pfnGetSize */
    60196019static DECLCALLBACK(uint64_t) vmdkGetSize(void *pBackendData)
    60206020{
     
    60306030}
    60316031
    6032 /** @copydoc VBOXHDDBACKEND::pfnGetFileSize */
     6032/** @copydoc VDIMAGEBACKEND::pfnGetFileSize */
    60336033static DECLCALLBACK(uint64_t) vmdkGetFileSize(void *pBackendData)
    60346034{
     
    60636063}
    60646064
    6065 /** @copydoc VBOXHDDBACKEND::pfnGetPCHSGeometry */
     6065/** @copydoc VDIMAGEBACKEND::pfnGetPCHSGeometry */
    60666066static DECLCALLBACK(int) vmdkGetPCHSGeometry(void *pBackendData, PVDGEOMETRY pPCHSGeometry)
    60676067{
     
    60896089}
    60906090
    6091 /** @copydoc VBOXHDDBACKEND::pfnSetPCHSGeometry */
     6091/** @copydoc VDIMAGEBACKEND::pfnSetPCHSGeometry */
    60926092static DECLCALLBACK(int) vmdkSetPCHSGeometry(void *pBackendData, PCVDGEOMETRY pPCHSGeometry)
    60936093{
     
    61256125}
    61266126
    6127 /** @copydoc VBOXHDDBACKEND::pfnGetLCHSGeometry */
     6127/** @copydoc VDIMAGEBACKEND::pfnGetLCHSGeometry */
    61286128static DECLCALLBACK(int) vmdkGetLCHSGeometry(void *pBackendData, PVDGEOMETRY pLCHSGeometry)
    61296129{
     
    61516151}
    61526152
    6153 /** @copydoc VBOXHDDBACKEND::pfnSetLCHSGeometry */
     6153/** @copydoc VDIMAGEBACKEND::pfnSetLCHSGeometry */
    61546154static DECLCALLBACK(int) vmdkSetLCHSGeometry(void *pBackendData, PCVDGEOMETRY pLCHSGeometry)
    61556155{
     
    61876187}
    61886188
    6189 /** @copydoc VBOXHDDBACKEND::pfnGetImageFlags */
     6189/** @copydoc VDIMAGEBACKEND::pfnGetImageFlags */
    61906190static DECLCALLBACK(unsigned) vmdkGetImageFlags(void *pBackendData)
    61916191{
     
    62056205}
    62066206
    6207 /** @copydoc VBOXHDDBACKEND::pfnGetOpenFlags */
     6207/** @copydoc VDIMAGEBACKEND::pfnGetOpenFlags */
    62086208static DECLCALLBACK(unsigned) vmdkGetOpenFlags(void *pBackendData)
    62096209{
     
    62236223}
    62246224
    6225 /** @copydoc VBOXHDDBACKEND::pfnSetOpenFlags */
     6225/** @copydoc VDIMAGEBACKEND::pfnSetOpenFlags */
    62266226static DECLCALLBACK(int) vmdkSetOpenFlags(void *pBackendData, unsigned uOpenFlags)
    62276227{
     
    62596259}
    62606260
    6261 /** @copydoc VBOXHDDBACKEND::pfnGetComment */
     6261/** @copydoc VDIMAGEBACKEND::pfnGetComment */
    62626262static DECLCALLBACK(int) vmdkGetComment(void *pBackendData, char *pszComment,
    62636263                          size_t cbComment)
     
    62976297}
    62986298
    6299 /** @copydoc VBOXHDDBACKEND::pfnSetComment */
     6299/** @copydoc VDIMAGEBACKEND::pfnSetComment */
    63006300static DECLCALLBACK(int) vmdkSetComment(void *pBackendData, const char *pszComment)
    63016301{
     
    63296329}
    63306330
    6331 /** @copydoc VBOXHDDBACKEND::pfnGetUuid */
     6331/** @copydoc VDIMAGEBACKEND::pfnGetUuid */
    63326332static DECLCALLBACK(int) vmdkGetUuid(void *pBackendData, PRTUUID pUuid)
    63336333{
     
    63506350}
    63516351
    6352 /** @copydoc VBOXHDDBACKEND::pfnSetUuid */
     6352/** @copydoc VDIMAGEBACKEND::pfnSetUuid */
    63536353static DECLCALLBACK(int) vmdkSetUuid(void *pBackendData, PCRTUUID pUuid)
    63546354{
     
    63866386}
    63876387
    6388 /** @copydoc VBOXHDDBACKEND::pfnGetModificationUuid */
     6388/** @copydoc VDIMAGEBACKEND::pfnGetModificationUuid */
    63896389static DECLCALLBACK(int) vmdkGetModificationUuid(void *pBackendData, PRTUUID pUuid)
    63906390{
     
    64076407}
    64086408
    6409 /** @copydoc VBOXHDDBACKEND::pfnSetModificationUuid */
     6409/** @copydoc VDIMAGEBACKEND::pfnSetModificationUuid */
    64106410static DECLCALLBACK(int) vmdkSetModificationUuid(void *pBackendData, PCRTUUID pUuid)
    64116411{
     
    64466446}
    64476447
    6448 /** @copydoc VBOXHDDBACKEND::pfnGetParentUuid */
     6448/** @copydoc VDIMAGEBACKEND::pfnGetParentUuid */
    64496449static DECLCALLBACK(int) vmdkGetParentUuid(void *pBackendData, PRTUUID pUuid)
    64506450{
     
    64676467}
    64686468
    6469 /** @copydoc VBOXHDDBACKEND::pfnSetParentUuid */
     6469/** @copydoc VDIMAGEBACKEND::pfnSetParentUuid */
    64706470static DECLCALLBACK(int) vmdkSetParentUuid(void *pBackendData, PCRTUUID pUuid)
    64716471{
     
    65026502}
    65036503
    6504 /** @copydoc VBOXHDDBACKEND::pfnGetParentModificationUuid */
     6504/** @copydoc VDIMAGEBACKEND::pfnGetParentModificationUuid */
    65056505static DECLCALLBACK(int) vmdkGetParentModificationUuid(void *pBackendData, PRTUUID pUuid)
    65066506{
     
    65236523}
    65246524
    6525 /** @copydoc VBOXHDDBACKEND::pfnSetParentModificationUuid */
     6525/** @copydoc VDIMAGEBACKEND::pfnSetParentModificationUuid */
    65266526static DECLCALLBACK(int) vmdkSetParentModificationUuid(void *pBackendData, PCRTUUID pUuid)
    65276527{
     
    65586558}
    65596559
    6560 /** @copydoc VBOXHDDBACKEND::pfnDump */
     6560/** @copydoc VDIMAGEBACKEND::pfnDump */
    65616561static DECLCALLBACK(void) vmdkDump(void *pBackendData)
    65626562{
Note: See TracChangeset for help on using the changeset viewer.

© 2024 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette