Changeset 99739 in vbox for trunk/src/VBox/Devices/USB
- Timestamp:
- May 11, 2023 1:01:08 AM (19 months ago)
- Location:
- trunk/src/VBox/Devices/USB
- Files:
-
- 13 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Devices/USB/DevEHCI.cpp
r98103 r99739 1523 1523 * is allowed to write to. 1524 1524 * 1525 * @returns nothing.1526 1525 * @param pDevIns The device instance. 1527 1526 * @param GCPhys Physical guest address of the QHD. … … 4794 4793 * Reset notification. 4795 4794 * 4796 * @returns VBox status code.4797 4795 * @param pDevIns The device instance data. 4798 4796 */ -
trunk/src/VBox/Devices/USB/DevOHCI.cpp
r99367 r99739 948 948 * Sets the HC in the unrecoverable error state and raises the appropriate interrupt. 949 949 * 950 * @returns nothing.951 950 * @param pDevIns The device instance. 952 951 * @param pThis The OHCI instance. … … 1481 1480 * in the cache. 1482 1481 * 1483 * @returns nothing.1484 1482 * @param pPageCache The page cache to update. 1485 1483 * @param GCPhys The guest physical address needing the update. … … 1501 1499 * Update any cached ED data with the given endpoint descriptor at the given address. 1502 1500 * 1503 * @returns nothing.1504 1501 * @param pThisCC The OHCI instance data for the current context. 1505 1502 * @param EdAddr Endpoint descriptor address. … … 1515 1512 * Update any cached TD data with the given transfer descriptor at the given address. 1516 1513 * 1517 * @returns nothing.1518 1514 * @param pThisCC The OHCI instance data, current context. 1519 1515 * @param TdAddr Transfer descriptor address. … … 2556 2552 * Lock the given OHCI controller instance. 2557 2553 * 2558 * @returns nothing.2559 2554 * @param pThisCC The OHCI controller instance to lock, ring-3 edition. 2560 2555 */ … … 2574 2569 * Unlocks the given OHCI controller instance. 2575 2570 * 2576 * @returns nothing.2577 2571 * @param pThisCC The OHCI controller instance to unlock, ring-3 edition. 2578 2572 */ … … 5695 5689 * Reset notification. 5696 5690 * 5697 * @returns VBox status code.5698 5691 * @param pDevIns The device instance data. 5699 5692 */ … … 5719 5712 * Resume notification. 5720 5713 * 5721 * @returns VBox status code.5722 5714 * @param pDevIns The device instance data. 5723 5715 */ -
trunk/src/VBox/Devices/USB/DevXHCI.cpp
r98103 r99739 5520 5520 * Port reset done callback. 5521 5521 * 5522 * @returns nothing.5523 5522 * @param pDevIns The device instance data. 5524 5523 * @param iPort The XHCI port index of the port being resetted. -
trunk/src/VBox/Devices/USB/DrvVUSBRootHub.cpp
r98103 r99739 646 646 * cycles. 647 647 * 648 * @returns nothing.649 648 * @param pThis The roothub instance data. 650 649 * @param fIdle Flag whether the last frame didn't produce any activity. -
trunk/src/VBox/Devices/USB/VUSBDevice.cpp
r98103 r99739 1165 1165 * before detaching a device. 1166 1166 * 1167 * @returns nothing.1168 1167 * @param pDev The VUSB device instance. 1169 1168 * @param fDetaching If set, we will unconditionally unlink (and leak) -
trunk/src/VBox/Devices/USB/VUSBInternal.h
r98103 r99739 523 523 * Destroy a given URB pool freeing all ressources. 524 524 * 525 * @returns nothing.526 525 * @param pUrbPool The URB pool to destroy. 527 526 */ … … 547 546 * Frees a given URB. 548 547 * 549 * @returns nothing.550 548 * @param pUrbPool The URB pool the URB was allocated from. 551 549 * @param pUrb The URB to free. … … 554 552 555 553 #ifdef LOG_ENABLED 554 556 555 /** 557 556 * Logs an URB in the debug log. 558 557 * 559 * @returns nothing.560 558 * @param pUrb The URB to log. 561 559 * @param pszMsg Additional message to log. … … 578 576 */ 579 577 DECLHIDDEN(const char *) vusbUrbStatusName(VUSBSTATUS enmStatus); 580 #endif 578 579 #endif /* LOG_ENABLED*/ 581 580 582 581 DECLINLINE(void) vusbUrbUnlink(PVUSBURB pUrb) -
trunk/src/VBox/Devices/USB/VUSBSniffer.cpp
r98103 r99739 202 202 * Destroys the given VUSB sniffer instance. 203 203 * 204 * @returns nothing.205 204 * @param hSniffer The sniffer instance to destroy. 206 205 */ -
trunk/src/VBox/Devices/USB/VUSBSniffer.h
r98103 r99739 91 91 * Destroys the given VUSB sniffer instance. 92 92 * 93 * @returns nothing.94 93 * @param hSniffer The sniffer instance to destroy. 95 94 */ -
trunk/src/VBox/Devices/USB/VUSBSnifferInternal.h
r98103 r99739 88 88 * Destroys the format instance. 89 89 * 90 * @returns nothing.91 90 * @param pThis Pointer to the format specific state. 92 91 */ -
trunk/src/VBox/Devices/USB/VUSBUrb.cpp
r98103 r99739 472 472 /** 473 473 * Send a control message *synchronously*. 474 * @return475 474 */ 476 475 static void vusbMsgSubmitSynchronously(PVUSBURB pUrb, bool fSafeRequest) … … 1305 1304 * Reap URBs on a per device level. 1306 1305 * 1307 * @returns nothing.1308 1306 * @param pDev The device instance to reap URBs for. 1309 1307 * @param cMillies Number of milliseconds to block in each reap operation. -
trunk/src/VBox/Devices/USB/darwin/USBProxyDevice-darwin.cpp
r98103 r99739 310 310 * or to pick up completed URBs. 311 311 * 312 * @returns nothing.313 312 * @param pDevOsX The darwin device instance data. 314 313 */ -
trunk/src/VBox/Devices/USB/linux/USBProxyDevice-linux.cpp
r98103 r99739 260 260 * Links the given URB into the in flight list. 261 261 * 262 * @returns nothing.263 262 * @param pDevLnx The proxy device instance - Linux specific data. 264 263 * @param pUrbLnx The URB to link into the in flight list. … … 276 275 * Unlinks the given URB from the in flight list. 277 276 * 278 * @returns nothing.279 277 * @param pDevLnx The proxy device instance - Linux specific data. 280 278 * @param pUrbLnx The URB to link into the in flight list. -
trunk/src/VBox/Devices/USB/usbip/USBProxyDevice-usbip.cpp
r98103 r99739 457 457 * Converts a request/reply header from network to host endianness. 458 458 * 459 * @returns nothing.460 459 * @param pHdr The header to convert. 461 460 */ … … 472 471 * Converts a request/reply header from host to network endianness. 473 472 * 474 * @returns nothing.475 473 * @param pHdr The header to convert. 476 474 */ … … 487 485 * Converts a submit request from host to network endianness. 488 486 * 489 * @returns nothing.490 487 * @param pReqSubmit The submit request to convert. 491 488 */ … … 503 500 * Converts a submit reply from network to host endianness. 504 501 * 505 * @returns nothing.506 502 * @param pReqSubmit The submit reply to convert. 507 503 */ … … 519 515 * Converts a isochronous packet descriptor from host to network endianness. 520 516 * 521 * @returns nothing.522 517 * @param pIsocPktDesc The packet descriptor to convert. 523 518 */ … … 533 528 * Converts a isochronous packet descriptor from network to host endianness. 534 529 * 535 * @returns nothing.536 530 * @param pIsocPktDesc The packet descriptor to convert. 537 531 */ … … 547 541 * Converts a unlink request from host to network endianness. 548 542 * 549 * @returns nothing.550 543 * @param pReqUnlink The unlink request to convert. 551 544 */ … … 559 552 * Converts a unlink reply from network to host endianness. 560 553 * 561 * @returns nothing.562 554 * @param pRetUnlink The unlink reply to convert. 563 555 */ … … 571 563 * Convert the given exported device structure from host to network byte order. 572 564 * 573 * @returns nothing.574 565 * @param pDevice The device structure to convert. 575 566 */ … … 624 615 * Links a given URB into the given list. 625 616 * 626 * @returns nothing.627 617 * @param pProxyDevUsbIp The USB/IP proxy device data. 628 618 * @param pList The list to link the URB into. … … 640 630 * Unlinks a given URB from the current assigned list. 641 631 * 642 * @returns nothing.643 632 * @param pProxyDevUsbIp The USB/IP proxy device data. 644 633 * @param pUrbUsbIp The URB to unlink. … … 667 656 * Frees the given USB/IP URB state. 668 657 * 669 * @returns nothing.670 658 * @param pProxyDevUsbIp The USB/IP proxy device data. 671 659 * @param pUrbUsbIp The USB/IP speciic URB data. … … 897 885 * Resets the receive state for a new reply. 898 886 * 899 * @returns nothing.900 887 * @param pProxyDevUsbIp The USB/IP proxy device data. 901 888 */
Note:
See TracChangeset
for help on using the changeset viewer.