Changeset 48839 in vbox
- Timestamp:
- Oct 3, 2013 1:46:20 PM (11 years ago)
- svn:sync-xref-src-repo-rev:
- 89508
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Storage/DMG.cpp
r48743 r48839 1489 1489 1490 1490 1491 /** @ copydoc VBOXHDDBACKEND::pfnCheckIfValid*/1491 /** @interface_method_impl{VBOXHDDBACKEND,pfnCheckIfValid} */ 1492 1492 static int dmgCheckIfValid(const char *pszFilename, PVDINTERFACE pVDIfsDisk, 1493 1493 PVDINTERFACE pVDIfsImage, VDTYPE *penmType) … … 1552 1552 } 1553 1553 1554 /** @ copydoc VBOXHDDBACKEND::pfnOpen*/1554 /** @interface_method_impl{VBOXHDDBACKEND,pfnOpen} */ 1555 1555 static int dmgOpen(const char *pszFilename, unsigned uOpenFlags, 1556 1556 PVDINTERFACE pVDIfsDisk, PVDINTERFACE pVDIfsImage, … … 1617 1617 } 1618 1618 1619 /** @ copydoc VBOXHDDBACKEND::pfnCreate*/1619 /** @interface_method_impl{VBOXHDDBACKEND,pfnCreate} */ 1620 1620 static int dmgCreate(const char *pszFilename, uint64_t cbSize, 1621 1621 unsigned uImageFlags, const char *pszComment, … … 1633 1633 } 1634 1634 1635 /** @ copydoc VBOXHDDBACKEND::pfnRename*/1635 /** @interface_method_impl{VBOXHDDBACKEND,pfnRename} */ 1636 1636 static int dmgRename(void *pBackendData, const char *pszFilename) 1637 1637 { … … 1643 1643 } 1644 1644 1645 /** @ copydoc VBOXHDDBACKEND::pfnClose*/1645 /** @interface_method_impl{VBOXHDDBACKEND,pfnClose} */ 1646 1646 static int dmgClose(void *pBackendData, bool fDelete) 1647 1647 { … … 1657 1657 } 1658 1658 1659 /** @ copydoc VBOXHDDBACKEND::pfnRead*/1659 /** @interface_method_impl{VBOXHDDBACKEND,pfnRead} */ 1660 1660 static int dmgRead(void *pBackendData, uint64_t uOffset, size_t cbToRead, 1661 1661 PVDIOCTX pIoCtx, size_t *pcbActuallyRead) … … 1748 1748 } 1749 1749 1750 /** @ copydoc VBOXHDDBACKEND::pfnWrite*/1750 /** @interface_method_impl{VBOXHDDBACKEND,pfnWrite} */ 1751 1751 static int dmgWrite(void *pBackendData, uint64_t uOffset, size_t cbToWrite, 1752 1752 PVDIOCTX pIoCtx, size_t *pcbWriteProcess, size_t *pcbPreRead, … … 1775 1775 } 1776 1776 1777 /** @ copydoc VBOXHDDBACKEND::pfnFlush*/1777 /** @interface_method_impl{VBOXHDDBACKEND,pfnFlush} */ 1778 1778 static int dmgFlush(void *pBackendData, PVDIOCTX pIoCtx) 1779 1779 { … … 1790 1790 } 1791 1791 1792 /** @ copydoc VBOXHDDBACKEND::pfnGetVersion*/1792 /** @interface_method_impl{VBOXHDDBACKEND,pfnGetVersion} */ 1793 1793 static unsigned dmgGetVersion(void *pBackendData) 1794 1794 { … … 1804 1804 } 1805 1805 1806 /** @ copydoc VBOXHDDBACKEND::pfnGetSectorSize*/1806 /** @interface_method_impl{VBOXHDDBACKEND,pfnGetSectorSize} */ 1807 1807 static uint32_t dmgGetSectorSize(void *pBackendData) 1808 1808 { … … 1820 1820 } 1821 1821 1822 /** @ copydoc VBOXHDDBACKEND::pfnGetSize*/1822 /** @interface_method_impl{VBOXHDDBACKEND,pfnGetSize} */ 1823 1823 static uint64_t dmgGetSize(void *pBackendData) 1824 1824 { … … 1836 1836 } 1837 1837 1838 /** @ copydoc VBOXHDDBACKEND::pfnGetFileSize*/1838 /** @interface_method_impl{VBOXHDDBACKEND,pfnGetFileSize} */ 1839 1839 static uint64_t dmgGetFileSize(void *pBackendData) 1840 1840 { … … 1860 1860 } 1861 1861 1862 /** @ copydoc VBOXHDDBACKEND::pfnGetPCHSGeometry*/1862 /** @interface_method_impl{VBOXHDDBACKEND,pfnGetPCHSGeometry} */ 1863 1863 static int dmgGetPCHSGeometry(void *pBackendData, PVDGEOMETRY pPCHSGeometry) 1864 1864 { … … 1886 1886 } 1887 1887 1888 /** @ copydoc VBOXHDDBACKEND::pfnSetPCHSGeometry*/1888 /** @interface_method_impl{VBOXHDDBACKEND,pfnSetPCHSGeometry} */ 1889 1889 static int dmgSetPCHSGeometry(void *pBackendData, PCVDGEOMETRY pPCHSGeometry) 1890 1890 { … … 1915 1915 } 1916 1916 1917 /** @ copydoc VBOXHDDBACKEND::pfnGetLCHSGeometry*/1917 /** @interface_method_impl{VBOXHDDBACKEND,pfnGetLCHSGeometry} */ 1918 1918 static int dmgGetLCHSGeometry(void *pBackendData, PVDGEOMETRY pLCHSGeometry) 1919 1919 { … … 1941 1941 } 1942 1942 1943 /** @ copydoc VBOXHDDBACKEND::pfnSetLCHSGeometry*/1943 /** @interface_method_impl{VBOXHDDBACKEND,pfnSetLCHSGeometry} */ 1944 1944 static int dmgSetLCHSGeometry(void *pBackendData, PCVDGEOMETRY pLCHSGeometry) 1945 1945 { … … 1970 1970 } 1971 1971 1972 /** @ copydoc VBOXHDDBACKEND::pfnGetImageFlags*/1972 /** @interface_method_impl{VBOXHDDBACKEND,pfnGetImageFlags} */ 1973 1973 static unsigned dmgGetImageFlags(void *pBackendData) 1974 1974 { … … 1988 1988 } 1989 1989 1990 /** @ copydoc VBOXHDDBACKEND::pfnGetOpenFlags*/1990 /** @interface_method_impl{VBOXHDDBACKEND,pfnGetOpenFlags} */ 1991 1991 static unsigned dmgGetOpenFlags(void *pBackendData) 1992 1992 { … … 2006 2006 } 2007 2007 2008 /** @ copydoc VBOXHDDBACKEND::pfnSetOpenFlags*/2008 /** @interface_method_impl{VBOXHDDBACKEND,pfnSetOpenFlags} */ 2009 2009 static int dmgSetOpenFlags(void *pBackendData, unsigned uOpenFlags) 2010 2010 { … … 2033 2033 } 2034 2034 2035 /** @ copydoc VBOXHDDBACKEND::pfnGetComment*/2035 /** @interface_method_impl{VBOXHDDBACKEND,pfnGetComment} */ 2036 2036 static int dmgGetComment(void *pBackendData, char *pszComment, 2037 2037 size_t cbComment) … … 2052 2052 } 2053 2053 2054 /** @ copydoc VBOXHDDBACKEND::pfnSetComment*/2054 /** @interface_method_impl{VBOXHDDBACKEND,pfnSetComment} */ 2055 2055 static int dmgSetComment(void *pBackendData, const char *pszComment) 2056 2056 { … … 2075 2075 } 2076 2076 2077 /** @ copydoc VBOXHDDBACKEND::pfnGetUuid*/2077 /** @interface_method_impl{VBOXHDDBACKEND,pfnGetUuid} */ 2078 2078 static int dmgGetUuid(void *pBackendData, PRTUUID pUuid) 2079 2079 { … … 2093 2093 } 2094 2094 2095 /** @ copydoc VBOXHDDBACKEND::pfnSetUuid*/2095 /** @interface_method_impl{VBOXHDDBACKEND,pfnSetUuid} */ 2096 2096 static int dmgSetUuid(void *pBackendData, PCRTUUID pUuid) 2097 2097 { … … 2117 2117 } 2118 2118 2119 /** @ copydoc VBOXHDDBACKEND::pfnGetModificationUuid*/2119 /** @interface_method_impl{VBOXHDDBACKEND,pfnGetModificationUuid} */ 2120 2120 static int dmgGetModificationUuid(void *pBackendData, PRTUUID pUuid) 2121 2121 { … … 2135 2135 } 2136 2136 2137 /** @ copydoc VBOXHDDBACKEND::pfnSetModificationUuid*/2137 /** @interface_method_impl{VBOXHDDBACKEND,pfnSetModificationUuid} */ 2138 2138 static int dmgSetModificationUuid(void *pBackendData, PCRTUUID pUuid) 2139 2139 { … … 2158 2158 } 2159 2159 2160 /** @ copydoc VBOXHDDBACKEND::pfnGetParentUuid*/2160 /** @interface_method_impl{VBOXHDDBACKEND,pfnGetParentUuid} */ 2161 2161 static int dmgGetParentUuid(void *pBackendData, PRTUUID pUuid) 2162 2162 { … … 2176 2176 } 2177 2177 2178 /** @ copydoc VBOXHDDBACKEND::pfnSetParentUuid*/2178 /** @interface_method_impl{VBOXHDDBACKEND,pfnSetParentUuid} */ 2179 2179 static int dmgSetParentUuid(void *pBackendData, PCRTUUID pUuid) 2180 2180 { … … 2199 2199 } 2200 2200 2201 /** @ copydoc VBOXHDDBACKEND::pfnGetParentModificationUuid*/2201 /** @interface_method_impl{VBOXHDDBACKEND,pfnGetParentModificationUuid} */ 2202 2202 static int dmgGetParentModificationUuid(void *pBackendData, PRTUUID pUuid) 2203 2203 { … … 2217 2217 } 2218 2218 2219 /** @ copydoc VBOXHDDBACKEND::pfnSetParentModificationUuid*/2219 /** @interface_method_impl{VBOXHDDBACKEND,pfnSetParentModificationUuid} */ 2220 2220 static int dmgSetParentModificationUuid(void *pBackendData, PCRTUUID pUuid) 2221 2221 { … … 2240 2240 } 2241 2241 2242 /** @ copydoc VBOXHDDBACKEND::pfnDump*/2242 /** @interface_method_impl{VBOXHDDBACKEND,pfnDump} */ 2243 2243 static void dmgDump(void *pBackendData) 2244 2244 { … … 2353 2353 NULL 2354 2354 }; 2355
Note:
See TracChangeset
for help on using the changeset viewer.