Changeset 67864 in vbox for trunk/src/VBox/Runtime/common/fs/isomakercmd.cpp
- Timestamp:
- Jul 7, 2017 5:49:07 PM (8 years ago)
- svn:sync-xref-src-repo-rev:
- 116820
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Runtime/common/fs/isomakercmd.cpp
r67862 r67864 737 737 } 738 738 739 static int rtFsIsoMakerCmdVerifyImageInRandomOrder(PRTFSISOMAKERCMDOPTS pOpts, RTVFSFILE hVfsSrcFile, RTVFSFILE hVfsDstFile, uint64_t cbImage) 739 740 /** 741 * Verifies the image content by reading blocks in random order. 742 * 743 * This is for exercise the virtual ISO code better and test that we get the 744 * same data when reading something twice. 745 * 746 * @returns IPRT status code. 747 * @param pOpts The ISO maker command instance. 748 * @param hVfsSrcFile The source file (virtual ISO). 749 * @param hVfsDstFile The destination file (image file on disk). 750 * @param cbImage The size of the ISO. 751 */ 752 static int rtFsIsoMakerCmdVerifyImageInRandomOrder(PRTFSISOMAKERCMDOPTS pOpts, RTVFSFILE hVfsSrcFile, 753 RTVFSFILE hVfsDstFile, uint64_t cbImage) 740 754 { 741 755 /* … … 882 896 * @param pOpts The ISO maker command instance. 883 897 * @param hVfsSrcFile The source file from the ISO maker. 898 * @param hVfsDstFile The destination file (image file on disk). 899 * @param cbImage The size of the ISO. 900 * @param ppvBuf Pointer to the buffer pointer. The buffer will 901 * be reallocated, but we want the luxary of the 902 * caller freeing it. 884 903 */ 885 904 static int rtFsIsoMakerCmdWriteImageRandomBufferSize(PRTFSISOMAKERCMDOPTS pOpts, RTVFSFILE hVfsSrcFile, RTVFSFILE hVfsDstFile, … … 931 950 * @param pOpts The ISO maker command instance. 932 951 * @param hVfsSrcFile The source file from the ISO maker. 952 * @param hVfsDstFile The destination file (image file on disk). 953 * @param cbImage The size of the ISO. 954 * @param pvBuf Pointer to read buffer. 955 * @param cbBuf The buffer size. 933 956 */ 934 957 static int rtFsIsoMakerCmdWriteImageSimple(PRTFSISOMAKERCMDOPTS pOpts, RTVFSFILE hVfsSrcFile, RTVFSFILE hVfsDstFile,
Note:
See TracChangeset
for help on using the changeset viewer.