Changeset 58132 in vbox for trunk/src/VBox/HostDrivers/VBoxPci
- Timestamp:
- Oct 9, 2015 12:09:37 AM (10 years ago)
- svn:sync-xref-src-repo-rev:
- 103230
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/HostDrivers/VBoxPci/VBoxPci.c
r56293 r58132 1 /* $Id 1 /* $Id$ */ 2 2 /** @file 3 3 * VBoxPci - PCI card passthrough support (Host), Common Code. … … 174 174 175 175 /** 176 * @ copydoc RAWPCIDEVPORT:: pfnInit176 * @interface_method_impl{RAWPCIDEVPORT,pfnInit} 177 177 */ 178 178 static DECLCALLBACK(int) vboxPciDevInit(PRAWPCIDEVPORT pPort, uint32_t fFlags) … … 191 191 192 192 /** 193 * @ copydoc RAWPCIDEVPORT:: pfnDeinit193 * @interface_method_impl{RAWPCIDEVPORT,pfnDeinit} 194 194 */ 195 195 static DECLCALLBACK(int) vboxPciDevDeinit(PRAWPCIDEVPORT pPort, uint32_t fFlags) … … 216 216 217 217 /** 218 * @ copydoc RAWPCIDEVPORT:: pfnDestroy218 * @interface_method_impl{RAWPCIDEVPORT,pfnDestroy} 219 219 */ 220 220 static DECLCALLBACK(int) vboxPciDevDestroy(PRAWPCIDEVPORT pPort) … … 248 248 } 249 249 /** 250 * @ copydoc RAWPCIDEVPORT:: pfnGetRegionInfo250 * @interface_method_impl{RAWPCIDEVPORT,pfnGetRegionInfo} 251 251 */ 252 252 static DECLCALLBACK(int) vboxPciDevGetRegionInfo(PRAWPCIDEVPORT pPort, … … 271 271 272 272 /** 273 * @ copydoc RAWPCIDEVPORT:: pfnMapRegion273 * @interface_method_impl{RAWPCIDEVPORT,pfnMapRegion} 274 274 */ 275 275 static DECLCALLBACK(int) vboxPciDevMapRegion(PRAWPCIDEVPORT pPort, … … 293 293 294 294 /** 295 * @ copydoc RAWPCIDEVPORT:: pfnUnapRegion295 * @interface_method_impl{RAWPCIDEVPORT,pfnUnapRegion} 296 296 */ 297 297 static DECLCALLBACK(int) vboxPciDevUnmapRegion(PRAWPCIDEVPORT pPort, … … 314 314 315 315 /** 316 * @ copydoc RAWPCIDEVPORT:: pfnPciCfgRead316 * @interface_method_impl{RAWPCIDEVPORT,pfnPciCfgRead} 317 317 */ 318 318 static DECLCALLBACK(int) vboxPciDevPciCfgRead(PRAWPCIDEVPORT pPort, … … 333 333 334 334 /** 335 * @ copydoc RAWPCIDEVPORT:: pfnPciCfgWrite335 * @interface_method_impl{RAWPCIDEVPORT,pfnPciCfgWrite} 336 336 */ 337 337 static DECLCALLBACK(int) vboxPciDevPciCfgWrite(PRAWPCIDEVPORT pPort, … … 510 510 511 511 /** 512 * @ copydoc RAWPCIFACTORY::pfnCreateAndConnect512 * @interface_method_impl{RAWPCIFACTORY,pfnCreateAndConnect} 513 513 */ 514 514 static DECLCALLBACK(int) vboxPciFactoryCreateAndConnect(PRAWPCIFACTORY pFactory, … … 545 545 546 546 /** 547 * @ copydoc RAWPCIFACTORY::pfnRelease547 * @interface_method_impl{RAWPCIFACTORY,pfnRelease} 548 548 */ 549 549 static DECLCALLBACK(void) vboxPciFactoryRelease(PRAWPCIFACTORY pFactory) … … 557 557 558 558 /** 559 * @ copydoc RAWPCIFACTORY::pfnInitVm559 * @interface_method_impl{RAWPCIFACTORY,pfnInitVm} 560 560 */ 561 561 static DECLCALLBACK(int) vboxPciFactoryInitVm(PRAWPCIFACTORY pFactory, … … 596 596 597 597 /** 598 * @ copydoc RAWPCIFACTORY::pfnDeinitVm598 * @interface_method_impl{RAWPCIFACTORY,pfnDeinitVm} 599 599 */ 600 600 static DECLCALLBACK(void) vboxPciFactoryDeinitVm(PRAWPCIFACTORY pFactory, … … 775 775 vboxPciDeleteGlobals(pGlobals); 776 776 } 777
Note:
See TracChangeset
for help on using the changeset viewer.