VirtualBox

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


Ignore:
Timestamp:
Sep 9, 2016 9:48:46 PM (8 years ago)
Author:
vboxsync
svn:sync-xref-src-repo-rev:
110606
Message:

Storage/VD: Doxygen after VBOXHDDBACKEND -> VDIMAGEBACKEND

File:
1 edited

Legend:

Unmodified
Added
Removed
  • 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{
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