Changeset 13734 in vbox
- Timestamp:
- Nov 2, 2008 4:47:46 PM (16 years ago)
- svn:sync-xref-src-repo-rev:
- 38705
- Location:
- trunk/include/VBox
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/VBox/VBoxHDD-new.h
r11484 r13734 1162 1162 * @param pDisk Pointer to HDD container. 1163 1163 * @param uOffset Offset of first reading byte from start of disk. 1164 * Must be aligned to a sector boundary. 1164 1165 * @param pvBuf Pointer to buffer for reading data. 1165 1166 * @param cbRead Number of bytes to read. 1167 * Must be aligned to a sector boundary. 1166 1168 */ 1167 1169 VBOXDDU_DECL(int) VDRead(PVBOXHDD pDisk, uint64_t uOffset, void *pvBuf, size_t cbRead); … … 1174 1176 * @param pDisk Pointer to HDD container. 1175 1177 * @param uOffset Offset of first writing byte from start of disk. 1178 * Must be aligned to a sector boundary. 1176 1179 * @param pvBuf Pointer to buffer for writing data. 1177 1180 * @param cbWrite Number of bytes to write. 1181 * Must be aligned to a sector boundary. 1178 1182 */ 1179 1183 VBOXDDU_DECL(int) VDWrite(PVBOXHDD pDisk, uint64_t uOffset, const void *pvBuf, size_t cbWrite); -
trunk/include/VBox/pdmifs.h
r13079 r13734 601 601 * @returns VBox status code. 602 602 * @param pInterface Pointer to the interface structure containing the called function pointer. 603 * @param off Offset to start reading from. 603 * @param off Offset to start reading from. The offset must be aligned to a sector boundary. 604 604 * @param pvBuf Where to store the read bits. 605 * @param cbRead Number of bytes to read. 605 * @param cbRead Number of bytes to read. Must be aligned to a sector boundary. 606 606 * @thread Any thread. 607 607 */ … … 613 613 * @returns VBox status code. 614 614 * @param pInterface Pointer to the interface structure containing the called function pointer. 615 * @param off Offset to start writing at. 615 * @param off Offset to start writing at. The offset must be aligned to a sector boundary. 616 616 * @param pvBuf Where to store the write bits. 617 * @param cbWrite Number of bytes to write. 617 * @param cbWrite Number of bytes to write. Must be aligned to a sector boundary. 618 618 * @thread Any thread. 619 619 */ … … 816 816 * @returns VBox status code. 817 817 * @param pInterface Pointer to the interface structure containing the called function pointer. 818 * @param off Offset to start reading from. 818 * @param off Offset to start reading from. The offset must be aligned to a sector boundary. 819 819 * @param pvBuf Where to store the read bits. 820 * @param cbRead Number of bytes to read. 820 * @param cbRead Number of bytes to read. Must be aligned to a sector boundary. 821 821 * @thread Any thread. 822 822 */ … … 828 828 * @returns VBox status code. 829 829 * @param pInterface Pointer to the interface structure containing the called function pointer. 830 * @param off Offset to start writing at. 830 * @param off Offset to start writing at. The offset must be aligned to a sector boundary. 831 831 * @param pvBuf Where to store the write bits. 832 * @param cbWrite Number of bytes to write. 832 * @param cbWrite Number of bytes to write. Must be aligned to a sector boundary. 833 833 * @thread Any thread. 834 834 */ … … 1220 1220 * @returns VBox status code. 1221 1221 * @param pInterface Pointer to the interface structure containing the called function pointer. 1222 * @param off Offset to start reading from. 1222 * @param off Offset to start reading from.c 1223 1223 * @param pSeg Pointer to the first element in the scatter list. 1224 1224 * @param cSeg Number of entries in the list. 1225 * @param cbRead Number of bytes to read. 1225 * @param cbRead Number of bytes to read. Must be aligned to a sector boundary. 1226 1226 * @param pvUser User argument which is returned in completion callback. 1227 1227 * @thread Any thread. … … 1234 1234 * @returns VBox status code. 1235 1235 * @param pInterface Pointer to the interface structure containing the called function pointer. 1236 * @param off Offset to start writing at. 1236 * @param off Offset to start writing at. The offset must be aligned to a sector boundary. 1237 1237 * @param pSeg Pointer to the first element in the gather list. 1238 1238 * @param cSeg Number of entries in the list. 1239 * @param cbWrite Number of bytes to write. 1239 * @param cbWrite Number of bytes to write. Must be aligned to a sector boundary. 1240 1240 * @param pvUser User argument which is returned in completion callback. 1241 1241 * @thread Any thread. … … 1279 1279 * @returns VBox status code. 1280 1280 * @param pInterface Pointer to the interface structure containing the called function pointer. 1281 * @param off Offset to start reading from. 1281 * @param off Offset to start reading from. Must be aligned to a sector boundary. 1282 1282 * @param pSeg Pointer to the first element in the scatter list. 1283 1283 * @param cSeg Number of entries in the list. 1284 * @param cbRead Number of bytes to read. 1284 * @param cbRead Number of bytes to read. Must be aligned to a sector boundary. 1285 1285 * @param pvUser User data. 1286 1286 * @thread Any thread. … … 1293 1293 * @returns VBox status code. 1294 1294 * @param pInterface Pointer to the interface structure containing the called function pointer. 1295 * @param off Offset to start writing at. 1295 * @param off Offset to start writing at. Must be aligned to a sector boundary. 1296 1296 * @param pSeg Pointer to the first element in the gather list. 1297 1297 * @param cSeg Number of entries in the list. 1298 * @param cbWrite Number of bytes to write. 1298 * @param cbWrite Number of bytes to write. Must be aligned to a sector boundary. 1299 1299 * @param pvUser User data. 1300 1300 * @thread Any thread.
Note:
See TracChangeset
for help on using the changeset viewer.