VirtualBox

Changeset 38887 in vbox


Ignore:
Timestamp:
Sep 27, 2011 12:08:50 PM (13 years ago)
Author:
vboxsync
Message:

Change DiscardDevice to SetAutoDiscardForDevice

Location:
trunk/src/VBox
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/VBox/Frontends/VBoxManage/VBoxManageStorageController.cpp

    r38874 r38887  
    818818                if (!RTStrICmp(pszDiscard, "on"))
    819819                {
    820                     CHECK_ERROR(machine, DiscardDevice(Bstr(pszCtl).raw(),
    821                                                        port, device, TRUE));
     820                    CHECK_ERROR(machine, SetAutoDiscardForDevice(Bstr(pszCtl).raw(),
     821                                                                 port, device, TRUE));
    822822                }
    823823                else if (!RTStrICmp(pszDiscard, "off"))
    824824                {
    825                     CHECK_ERROR(machine, DiscardDevice(Bstr(pszCtl).raw(),
    826                                                        port, device, FALSE));
     825                    CHECK_ERROR(machine, SetAutoDiscardForDevice(Bstr(pszCtl).raw(),
     826                                                                 port, device, FALSE));
    827827                }
    828828                else
  • trunk/src/VBox/Main/idl/VirtualBox.xidl

    r38873 r38887  
    47634763    </method>
    47644764
    4765     <method name="discardDevice">
     4765    <method name="setAutoDiscardForDevice">
    47664766      <desc>
    47674767        Sets a flag in the device information which indicates that the medium
  • trunk/src/VBox/Main/include/MachineImpl.h

    r38873 r38887  
    479479    STDMETHOD(TemporaryEjectDevice)(IN_BSTR aControllerName, LONG aControllerPort, LONG aDevice, BOOL aTempEject);
    480480    STDMETHOD(NonRotationalDevice)(IN_BSTR aControllerName, LONG aControllerPort, LONG aDevice, BOOL aNonRotational);
    481     STDMETHOD(DiscardDevice)(IN_BSTR aControllerName, LONG aControllerPort, LONG aDevice, BOOL aDiscard);
     481    STDMETHOD(SetAutoDiscardForDevice)(IN_BSTR aControllerName, LONG aControllerPort, LONG aDevice, BOOL aDiscard);
    482482    STDMETHOD(SetBandwidthGroupForDevice)(IN_BSTR aControllerName, LONG aControllerPort,
    483483                                          LONG aDevice, IBandwidthGroup *aBandwidthGroup);
  • trunk/src/VBox/Main/src-server/MachineImpl.cpp

    r38873 r38887  
    40504050}
    40514051
    4052 STDMETHODIMP Machine::DiscardDevice(IN_BSTR aControllerName, LONG aControllerPort,
    4053                                     LONG aDevice, BOOL aDiscard)
     4052STDMETHODIMP Machine::SetAutoDiscardForDevice(IN_BSTR aControllerName, LONG aControllerPort,
     4053                                              LONG aDevice, BOOL aDiscard)
    40544054{
    40554055    CheckComArgStrNotEmptyOrNull(aControllerName);
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