VirtualBox

Ignore:
Timestamp:
Nov 26, 2009 11:31:46 AM (15 years ago)
Author:
vboxsync
Message:

Main: enable -Wshadow gcc option to warn about shadowed variables and fix all resulting warnings; in particular, rename some stack and member variables and rename getter methods like id() to getId()

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/VBox/Main/USBControllerImpl.cpp

    r23271 r24989  
    459459
    460460    /* notify the proxy (only when it makes sense) */
    461     if (filter->data().mActive && Global::IsOnline (adep.machineState()))
    462     {
    463         USBProxyService *service = mParent->virtualBox()->host()->usbProxyService();
     461    if (filter->getData().mActive && Global::IsOnline(adep.machineState()))
     462    {
     463        USBProxyService *service = mParent->getVirtualBox()->host()->usbProxyService();
    464464        ComAssertRet (service, E_FAIL);
    465465
    466         ComAssertRet (filter->id() == NULL, E_FAIL);
    467         filter->id() = service->insertFilter (&filter->data().mUSBFilter);
     466        ComAssertRet(filter->getId() == NULL, E_FAIL);
     467        filter->getId() = service->insertFilter (&filter->getData().mUSBFilter);
    468468    }
    469469
     
    525525
    526526    /* notify the proxy (only when it makes sense) */
    527     if (filter->data().mActive && Global::IsOnline (adep.machineState()))
    528     {
    529         USBProxyService *service = mParent->virtualBox()->host()->usbProxyService();
     527    if (filter->getData().mActive && Global::IsOnline(adep.machineState()))
     528    {
     529        USBProxyService *service = mParent->getVirtualBox()->host()->usbProxyService();
    530530        ComAssertRet (service, E_FAIL);
    531531
    532         ComAssertRet (filter->id() != NULL, E_FAIL);
    533         service->removeFilter (filter->id());
    534         filter->id() = NULL;
     532        ComAssertRet(filter->getId() != NULL, E_FAIL);
     533        service->removeFilter(filter->getId());
     534        filter->getId() = NULL;
    535535    }
    536536
     
    623623    {
    624624        AutoWriteLock filterLock (*it);
    625         const USBDeviceFilter::Data &filterData = (*it)->data();
     625        const USBDeviceFilter::Data &filterData = (*it)->getData();
    626626
    627627        Bstr str;
     
    728728        while (thatIt != backDevices.end())
    729729        {
    730             if ((*it)->data() == (*thatIt)->data())
     730            if ((*it)->getData() == (*thatIt)->getData())
    731731            {
    732732                backDevices.erase (thatIt);
     
    775775    if (mDeviceFilters.isBackedUp())
    776776    {
    777         USBProxyService *service = mParent->virtualBox()->host()->usbProxyService();
     777        USBProxyService *service = mParent->getVirtualBox()->host()->usbProxyService();
    778778        ComAssertRet (service, false);
    779779
     
    787787            {
    788788                /* notify the proxy (only when it makes sense) */
    789                 if ((*it)->data().mActive &&
     789                if ((*it)->getData().mActive &&
    790790                    Global::IsOnline (adep.machineState()))
    791791                {
    792792                    USBDeviceFilter *filter = *it;
    793                     ComAssertRet (filter->id() != NULL, false);
    794                     service->removeFilter (filter->id());
    795                     filter->id() = NULL;
     793                    ComAssertRet(filter->getId() != NULL, false);
     794                    service->removeFilter(filter->getId());
     795                    filter->getId() = NULL;
    796796                }
    797797
     
    812812                {
    813813                    /* notify the proxy (only when necessary) */
    814                     if ((*it)->data().mActive)
     814                    if ((*it)->getData().mActive)
    815815                    {
    816816                        USBDeviceFilter *flt = *it; /* resolve ambiguity */
    817                         ComAssertRet (flt->id() == NULL, false);
    818                         flt->id() = service->insertFilter (&flt->data().mUSBFilter);
     817                        ComAssertRet(flt->getId() == NULL, false);
     818                        flt->getId() = service->insertFilter(&flt->getData().mUSBFilter);
    819819                    }
    820820                }
     
    10291029    if (aFilter->mInList && mParent->isRegistered())
    10301030    {
    1031         USBProxyService *service = mParent->virtualBox()->host()->usbProxyService();
     1031        USBProxyService *service = mParent->getVirtualBox()->host()->usbProxyService();
    10321032        ComAssertRet (service, E_FAIL);
    10331033
     
    10351035        {
    10361036            /* insert/remove the filter from the proxy */
    1037             if (aFilter->data().mActive)
     1037            if (aFilter->getData().mActive)
    10381038            {
    1039                 ComAssertRet (aFilter->id() == NULL, E_FAIL);
    1040                 aFilter->id() = service->insertFilter (&aFilter->data().mUSBFilter);
     1039                ComAssertRet(aFilter->getId() == NULL, E_FAIL);
     1040                aFilter->getId() = service->insertFilter(&aFilter->getData().mUSBFilter);
    10411041            }
    10421042            else
    10431043            {
    1044                 ComAssertRet (aFilter->id() != NULL, E_FAIL);
    1045                 service->removeFilter (aFilter->id());
    1046                 aFilter->id() = NULL;
     1044                ComAssertRet(aFilter->getId() != NULL, E_FAIL);
     1045                service->removeFilter(aFilter->getId());
     1046                aFilter->getId() = NULL;
    10471047            }
    10481048        }
    10491049        else
    10501050        {
    1051             if (aFilter->data().mActive)
     1051            if (aFilter->getData().mActive)
    10521052            {
    10531053                /* update the filter in the proxy */
    1054                 ComAssertRet (aFilter->id() != NULL, E_FAIL);
    1055                 service->removeFilter (aFilter->id());
    1056                 aFilter->id() = service->insertFilter (&aFilter->data().mUSBFilter);
     1054                ComAssertRet(aFilter->getId() != NULL, E_FAIL);
     1055                service->removeFilter(aFilter->getId());
     1056                aFilter->getId() = service->insertFilter(&aFilter->getData().mUSBFilter);
    10571057            }
    10581058        }
     
    10871087    {
    10881088        AutoWriteLock filterLock (*it);
    1089         if (aDevice->isMatch ((*it)->data()))
     1089        if (aDevice->isMatch((*it)->getData()))
    10901090        {
    1091             *aMaskedIfs = (*it)->data().mMaskedIfs;
     1091            *aMaskedIfs = (*it)->getData().mMaskedIfs;
    10921092            return true;
    10931093        }
     
    11841184    {
    11851185        AutoWriteLock filterLock (*it);
    1186         const USBDeviceFilter::Data &aData = (*it)->data();
     1186        const USBDeviceFilter::Data &aData = (*it)->getData();
    11871187
    11881188        if (!aData.mActive)
     
    12211221    AutoReadLock alock(this);
    12221222
    1223     USBProxyService *service = mParent->virtualBox()->host()->usbProxyService();
     1223    USBProxyService *service = mParent->getVirtualBox()->host()->usbProxyService();
    12241224    AssertReturn(service, E_FAIL);
    12251225
     
    12301230
    12311231        /* notify the proxy (only if the filter is active) */
    1232         if (flt->data().mActive)
     1232        if (flt->getData().mActive)
    12331233        {
    12341234            if (aInsertFilters)
    12351235            {
    1236                 AssertReturn(flt->id() == NULL, E_FAIL);
    1237                 flt->id() = service->insertFilter (&flt->data().mUSBFilter);
     1236                AssertReturn(flt->getId() == NULL, E_FAIL);
     1237                flt->getId() = service->insertFilter(&flt->getData().mUSBFilter);
    12381238            }
    12391239            else
     
    12421242                 * when this method gets called (as a result of an early VM
    12431243                 * process crash for example. So, don't assert that ID != NULL. */
    1244                 if (flt->id() != NULL)
     1244                if (flt->getId() != NULL)
    12451245                {
    1246                     service->removeFilter (flt->id());
    1247                     flt->id() = NULL;
     1246                    service->removeFilter(flt->getId());
     1247                    flt->getId() = NULL;
    12481248                }
    12491249            }
Note: See TracChangeset for help on using the changeset viewer.

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