VirtualBox

Changeset 59120 in vbox


Ignore:
Timestamp:
Dec 14, 2015 2:34:53 PM (9 years ago)
Author:
vboxsync
svn:sync-xref-src-repo-rev:
104691
Message:

Main: build fixes

Location:
trunk/src/VBox/Main/src-server
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/VBox/Main/src-server/darwin/USBProxyBackendDarwin.cpp

    r59119 r59120  
    224224    AssertReturn(!aDevice->isWriteLockOnCurrentThread(), false);
    225225    /* Nothing special here so far, so fall back on parent. */
    226     return USBProxyService::updateDeviceState(aDevice, aUSBDevice, aRunFilters, aIgnoreMachine);
     226    return USBProxyBackend::updateDeviceState(aDevice, aUSBDevice, aRunFilters, aIgnoreMachine);
    227227}
    228228
     
    279279void DarwinFreeUSBDeviceFromIOKit(PUSBDEVICE pCur)
    280280{
    281     USBProxyService::freeDevice(pCur);
    282 }
    283 
     281    USBProxyBackend::freeDevice(pCur);
     282}
     283
  • trunk/src/VBox/Main/src-server/freebsd/USBProxyBackendFreeBSD.cpp

    r59119 r59120  
    163163                                         PUSBDEVICE aUSBDevice)
    164164{
    165     USBProxyService::deviceAdded(aDevice, llOpenedMachines, aUSBDevice);
     165    USBProxyBackend::deviceAdded(aDevice, llOpenedMachines, aUSBDevice);
    166166}
    167167
  • trunk/src/VBox/Main/src-server/solaris/USBProxyBackendSolaris.cpp

    r59119 r59120  
    443443    AssertReturn(aDevice, false);
    444444    AssertReturn(!aDevice->isWriteLockOnCurrentThread(), false);
    445     return USBProxyService::updateDeviceState(aDevice, aUSBDevice, aRunFilters, aIgnoreMachine);
     445    return USBProxyBackend::updateDeviceState(aDevice, aUSBDevice, aRunFilters, aIgnoreMachine);
    446446}
    447447
     
    453453void solarisFreeUSBDevice(PUSBDEVICE pDevice)
    454454{
    455     USBProxyService::freeDevice(pDevice);
    456 }
     455    USBProxyBackend::freeDevice(pDevice);
     456}
  • trunk/src/VBox/Main/src-server/win/USBProxyBackendWindows.cpp

    r59119 r59120  
    3939 */
    4040USBProxyBackendWindows::USBProxyBackendWindows(USBProxyService *aUsbProxyService)
    41     : USBProxyBackend(aHost), mhEventInterrupt(INVALID_HANDLE_VALUE)
     41    : USBProxyBackend(aUsbProxyService), mhEventInterrupt(INVALID_HANDLE_VALUE)
    4242{
    4343    LogFlowThisFunc(("aUsbProxyService=%p\n", aUsbProxyService));
     
    114114    AssertReturn(aFilter, NULL);
    115115
    116     LogFlow(("USBProxyServiceWindows::insertFilter()\n"));
     116    LogFlow(("USBProxyBackendWindows::insertFilter()\n"));
    117117
    118118    void *pvId = USBLibAddFilter(aFilter);
    119119
    120     LogFlow(("USBProxyServiceWindows::insertFilter(): returning pvId=%p\n", pvId));
     120    LogFlow(("USBProxyBackendWindows::insertFilter(): returning pvId=%p\n", pvId));
    121121
    122122    return pvId;
     
    126126void USBProxyBackendWindows::removeFilter(void *aID)
    127127{
    128     LogFlow(("USBProxyServiceWindows::removeFilter(): id=%p\n", aID));
     128    LogFlow(("USBProxyBackendWindows::removeFilter(): id=%p\n", aID));
    129129
    130130    AssertReturnVoid(aID);
     
    225225    AssertReturn(!aDevice->isWriteLockOnCurrentThread(), false);
    226226    /* Nothing special here so far, so fall back on parent */
    227     return USBProxyService::updateDeviceState(aDevice, aUSBDevice, aRunFilters, aIgnoreMachine);
     227    return USBProxyBackend::updateDeviceState(aDevice, aUSBDevice, aRunFilters, aIgnoreMachine);
    228228}
    229229
     
    248248    uint32_t cDevices = 0;
    249249
    250     Log(("USBProxyServiceWindows::getDevices\n"));
     250    Log(("USBProxyBackendWindows::getDevices\n"));
    251251    USBLibGetDevices(&pDevices, &cDevices);
    252252    return pDevices;
Note: See TracChangeset for help on using the changeset viewer.

© 2025 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette