VirtualBox

Changeset 63785 in vbox for trunk/src/VBox/Storage/DMG.cpp


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

Storage/VD: Doxygen after VBOXHDDBACKEND -> VDIMAGEBACKEND

File:
1 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{
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