VirtualBox

Changeset 48839 in vbox


Ignore:
Timestamp:
Oct 3, 2013 1:46:20 PM (11 years ago)
Author:
vboxsync
svn:sync-xref-src-repo-rev:
89508
Message:

doxygen

File:
1 edited

Legend:

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

    r48743 r48839  
    14891489
    14901490
    1491 /** @copydoc VBOXHDDBACKEND::pfnCheckIfValid */
     1491/** @interface_method_impl{VBOXHDDBACKEND,pfnCheckIfValid} */
    14921492static int dmgCheckIfValid(const char *pszFilename, PVDINTERFACE pVDIfsDisk,
    14931493                           PVDINTERFACE pVDIfsImage, VDTYPE *penmType)
     
    15521552}
    15531553
    1554 /** @copydoc VBOXHDDBACKEND::pfnOpen */
     1554/** @interface_method_impl{VBOXHDDBACKEND,pfnOpen} */
    15551555static int dmgOpen(const char *pszFilename, unsigned uOpenFlags,
    15561556                   PVDINTERFACE pVDIfsDisk, PVDINTERFACE pVDIfsImage,
     
    16171617}
    16181618
    1619 /** @copydoc VBOXHDDBACKEND::pfnCreate */
     1619/** @interface_method_impl{VBOXHDDBACKEND,pfnCreate} */
    16201620static int dmgCreate(const char *pszFilename, uint64_t cbSize,
    16211621                     unsigned uImageFlags, const char *pszComment,
     
    16331633}
    16341634
    1635 /** @copydoc VBOXHDDBACKEND::pfnRename */
     1635/** @interface_method_impl{VBOXHDDBACKEND,pfnRename} */
    16361636static int dmgRename(void *pBackendData, const char *pszFilename)
    16371637{
     
    16431643}
    16441644
    1645 /** @copydoc VBOXHDDBACKEND::pfnClose */
     1645/** @interface_method_impl{VBOXHDDBACKEND,pfnClose} */
    16461646static int dmgClose(void *pBackendData, bool fDelete)
    16471647{
     
    16571657}
    16581658
    1659 /** @copydoc VBOXHDDBACKEND::pfnRead */
     1659/** @interface_method_impl{VBOXHDDBACKEND,pfnRead} */
    16601660static int dmgRead(void *pBackendData, uint64_t uOffset,  size_t cbToRead,
    16611661                   PVDIOCTX pIoCtx, size_t *pcbActuallyRead)
     
    17481748}
    17491749
    1750 /** @copydoc VBOXHDDBACKEND::pfnWrite */
     1750/** @interface_method_impl{VBOXHDDBACKEND,pfnWrite} */
    17511751static int dmgWrite(void *pBackendData, uint64_t uOffset, size_t cbToWrite,
    17521752                    PVDIOCTX pIoCtx, size_t *pcbWriteProcess, size_t *pcbPreRead,
     
    17751775}
    17761776
    1777 /** @copydoc VBOXHDDBACKEND::pfnFlush */
     1777/** @interface_method_impl{VBOXHDDBACKEND,pfnFlush} */
    17781778static int dmgFlush(void *pBackendData, PVDIOCTX pIoCtx)
    17791779{
     
    17901790}
    17911791
    1792 /** @copydoc VBOXHDDBACKEND::pfnGetVersion */
     1792/** @interface_method_impl{VBOXHDDBACKEND,pfnGetVersion} */
    17931793static unsigned dmgGetVersion(void *pBackendData)
    17941794{
     
    18041804}
    18051805
    1806 /** @copydoc VBOXHDDBACKEND::pfnGetSectorSize */
     1806/** @interface_method_impl{VBOXHDDBACKEND,pfnGetSectorSize} */
    18071807static uint32_t dmgGetSectorSize(void *pBackendData)
    18081808{
     
    18201820}
    18211821
    1822 /** @copydoc VBOXHDDBACKEND::pfnGetSize */
     1822/** @interface_method_impl{VBOXHDDBACKEND,pfnGetSize} */
    18231823static uint64_t dmgGetSize(void *pBackendData)
    18241824{
     
    18361836}
    18371837
    1838 /** @copydoc VBOXHDDBACKEND::pfnGetFileSize */
     1838/** @interface_method_impl{VBOXHDDBACKEND,pfnGetFileSize} */
    18391839static uint64_t dmgGetFileSize(void *pBackendData)
    18401840{
     
    18601860}
    18611861
    1862 /** @copydoc VBOXHDDBACKEND::pfnGetPCHSGeometry */
     1862/** @interface_method_impl{VBOXHDDBACKEND,pfnGetPCHSGeometry} */
    18631863static int dmgGetPCHSGeometry(void *pBackendData, PVDGEOMETRY pPCHSGeometry)
    18641864{
     
    18861886}
    18871887
    1888 /** @copydoc VBOXHDDBACKEND::pfnSetPCHSGeometry */
     1888/** @interface_method_impl{VBOXHDDBACKEND,pfnSetPCHSGeometry} */
    18891889static int dmgSetPCHSGeometry(void *pBackendData, PCVDGEOMETRY pPCHSGeometry)
    18901890{
     
    19151915}
    19161916
    1917 /** @copydoc VBOXHDDBACKEND::pfnGetLCHSGeometry */
     1917/** @interface_method_impl{VBOXHDDBACKEND,pfnGetLCHSGeometry} */
    19181918static int dmgGetLCHSGeometry(void *pBackendData, PVDGEOMETRY pLCHSGeometry)
    19191919{
     
    19411941}
    19421942
    1943 /** @copydoc VBOXHDDBACKEND::pfnSetLCHSGeometry */
     1943/** @interface_method_impl{VBOXHDDBACKEND,pfnSetLCHSGeometry} */
    19441944static int dmgSetLCHSGeometry(void *pBackendData, PCVDGEOMETRY pLCHSGeometry)
    19451945{
     
    19701970}
    19711971
    1972 /** @copydoc VBOXHDDBACKEND::pfnGetImageFlags */
     1972/** @interface_method_impl{VBOXHDDBACKEND,pfnGetImageFlags} */
    19731973static unsigned dmgGetImageFlags(void *pBackendData)
    19741974{
     
    19881988}
    19891989
    1990 /** @copydoc VBOXHDDBACKEND::pfnGetOpenFlags */
     1990/** @interface_method_impl{VBOXHDDBACKEND,pfnGetOpenFlags} */
    19911991static unsigned dmgGetOpenFlags(void *pBackendData)
    19921992{
     
    20062006}
    20072007
    2008 /** @copydoc VBOXHDDBACKEND::pfnSetOpenFlags */
     2008/** @interface_method_impl{VBOXHDDBACKEND,pfnSetOpenFlags} */
    20092009static int dmgSetOpenFlags(void *pBackendData, unsigned uOpenFlags)
    20102010{
     
    20332033}
    20342034
    2035 /** @copydoc VBOXHDDBACKEND::pfnGetComment */
     2035/** @interface_method_impl{VBOXHDDBACKEND,pfnGetComment} */
    20362036static int dmgGetComment(void *pBackendData, char *pszComment,
    20372037                         size_t cbComment)
     
    20522052}
    20532053
    2054 /** @copydoc VBOXHDDBACKEND::pfnSetComment */
     2054/** @interface_method_impl{VBOXHDDBACKEND,pfnSetComment} */
    20552055static int dmgSetComment(void *pBackendData, const char *pszComment)
    20562056{
     
    20752075}
    20762076
    2077 /** @copydoc VBOXHDDBACKEND::pfnGetUuid */
     2077/** @interface_method_impl{VBOXHDDBACKEND,pfnGetUuid} */
    20782078static int dmgGetUuid(void *pBackendData, PRTUUID pUuid)
    20792079{
     
    20932093}
    20942094
    2095 /** @copydoc VBOXHDDBACKEND::pfnSetUuid */
     2095/** @interface_method_impl{VBOXHDDBACKEND,pfnSetUuid} */
    20962096static int dmgSetUuid(void *pBackendData, PCRTUUID pUuid)
    20972097{
     
    21172117}
    21182118
    2119 /** @copydoc VBOXHDDBACKEND::pfnGetModificationUuid */
     2119/** @interface_method_impl{VBOXHDDBACKEND,pfnGetModificationUuid} */
    21202120static int dmgGetModificationUuid(void *pBackendData, PRTUUID pUuid)
    21212121{
     
    21352135}
    21362136
    2137 /** @copydoc VBOXHDDBACKEND::pfnSetModificationUuid */
     2137/** @interface_method_impl{VBOXHDDBACKEND,pfnSetModificationUuid} */
    21382138static int dmgSetModificationUuid(void *pBackendData, PCRTUUID pUuid)
    21392139{
     
    21582158}
    21592159
    2160 /** @copydoc VBOXHDDBACKEND::pfnGetParentUuid */
     2160/** @interface_method_impl{VBOXHDDBACKEND,pfnGetParentUuid} */
    21612161static int dmgGetParentUuid(void *pBackendData, PRTUUID pUuid)
    21622162{
     
    21762176}
    21772177
    2178 /** @copydoc VBOXHDDBACKEND::pfnSetParentUuid */
     2178/** @interface_method_impl{VBOXHDDBACKEND,pfnSetParentUuid} */
    21792179static int dmgSetParentUuid(void *pBackendData, PCRTUUID pUuid)
    21802180{
     
    21992199}
    22002200
    2201 /** @copydoc VBOXHDDBACKEND::pfnGetParentModificationUuid */
     2201/** @interface_method_impl{VBOXHDDBACKEND,pfnGetParentModificationUuid} */
    22022202static int dmgGetParentModificationUuid(void *pBackendData, PRTUUID pUuid)
    22032203{
     
    22172217}
    22182218
    2219 /** @copydoc VBOXHDDBACKEND::pfnSetParentModificationUuid */
     2219/** @interface_method_impl{VBOXHDDBACKEND,pfnSetParentModificationUuid} */
    22202220static int dmgSetParentModificationUuid(void *pBackendData, PCRTUUID pUuid)
    22212221{
     
    22402240}
    22412241
    2242 /** @copydoc VBOXHDDBACKEND::pfnDump */
     2242/** @interface_method_impl{VBOXHDDBACKEND,pfnDump} */
    22432243static void dmgDump(void *pBackendData)
    22442244{
     
    23532353    NULL
    23542354};
     2355
Note: See TracChangeset for help on using the changeset viewer.

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