Changeset 90837 in vbox
- Timestamp:
- Aug 24, 2021 11:33:12 AM (4 years ago)
- svn:sync-xref-src-repo-rev:
- 146472
- Location:
- trunk/include/VBox
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/VBox/dbg.h
r86328 r90837 1065 1065 * 1066 1066 * @returns VBox status. 1067 * @param p Cmd Pointer to the commanddescriptor (as registered).1067 * @param pFunc Pointer to the function descriptor (as registered). 1068 1068 * @param pCmdHlp Pointer to command helper functions. 1069 1069 * @param pUVM The user mode VM handle, can in theory be NULL. -
trunk/include/VBox/vmm/pdmblkcache.h
r85121 r90837 106 106 * Completion callback for devices. 107 107 * 108 * @param pD rvIns The device instance.108 * @param pDevIns The device instance. 109 109 * @param pvUser User argument given during request initiation. 110 110 * @param rc The status code of the completed request. … … 132 132 * Discard enqueue callback for devices. 133 133 * 134 * @param pD rvIns The driverinstance.134 * @param pDevIns The device instance. 135 135 * @param paRanges Ranges to discard. 136 136 * @param cRanges Number of range entries. … … 154 154 155 155 /** 156 * I/O enqueue callback for drivers.157 * 158 * @param p DrvIns The driver instance.156 * I/O enqueue callback for internal users. 157 * 158 * @param pvUser User data. 159 159 * @param enmXferDir Transfer direction. 160 160 * @param off Transfer offset. … … 171 171 * Discard enqueue callback for VMM internal users. 172 172 * 173 * @param p DrvIns The driver instance.173 * @param pvUser User data. 174 174 * @param paRanges Ranges to discard. 175 175 * @param cRanges Number of range entries. … … 182 182 183 183 /** 184 * Completion callback for USB .185 * 186 * @param p DrvIns The driverinstance.184 * Completion callback for USB devices. 185 * 186 * @param pUsbIns The USB device instance. 187 187 * @param pvUser User argument given during request initiation. 188 188 * @param rc The status code of the completed request. … … 193 193 194 194 /** 195 * I/O enqueue callback for drivers.196 * 197 * @param p DrvIns The driverinstance.195 * I/O enqueue callback for USB devices. 196 * 197 * @param pUsbIns The USB device instance. 198 198 * @param enmXferDir Transfer direction. 199 199 * @param off Transfer offset. -
trunk/include/VBox/vusb.h
r90351 r90837 931 931 * This is called by the reset thread when the reset has been completed. 932 932 * 933 * @param pDev 933 * @param pDevice Pointer to the virtual USB device core. 934 934 * @param rc The VBox status code of the reset operation. 935 * @param pvUser 935 * @param pvUser User specific argument. 936 936 * 937 937 * @thread The reset thread or EMT.
Note:
See TracChangeset
for help on using the changeset viewer.