VirtualBox

Changeset 65103 in vbox for trunk/src/VBox/Main


Ignore:
Timestamp:
Jan 4, 2017 12:08:18 PM (8 years ago)
Author:
vboxsync
Message:

Main: doxygen fixes

Location:
trunk/src/VBox/Main
Files:
23 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/VBox/Main/include/MediumAttachmentImpl.h

    r61713 r65103  
    3939                 LONG aDevice,
    4040                 DeviceType_T aType,
    41                  bool fImplicit,
    42                  bool fPassthrough,
    43                  bool fTempEject,
    44                  bool fNonRotational,
    45                  bool fDiscard,
    46                  bool fHotPluggable,
     41                 bool aImplicit,
     42                 bool aPassthrough,
     43                 bool aTempEject,
     44                 bool aNonRotational,
     45                 bool aDiscard,
     46                 bool aHotPluggable,
    4747                 const Utf8Str &strBandwidthGroup);
    4848    HRESULT initCopy(Machine *aParent, MediumAttachment *aThat);
  • trunk/src/VBox/Main/include/ProgressImpl.h

    r63147 r65103  
    7979     * @param aCancelable
    8080     * @param cOperations
    81      * @param bstrFirstOperationDescription
     81     * @param aFirstOperationDescription
    8282     * @return
    8383     */
  • trunk/src/VBox/Main/src-all/ProgressImpl.cpp

    r62485 r65103  
    139139 * @param ulTotalOperationsWeight Total weight of operations; must be the sum of ulFirstOperationWeight and
    140140 *                          what is later passed with each subsequent setNextOperation() call.
    141  * @param bstrFirstOperationDescription Description of the first operation.
     141 * @param aFirstOperationDescription Description of the first operation.
    142142 * @param ulFirstOperationWeight Weight of first sub-operation.
    143143 */
     
    407407 * @param aResultCode   Operation result (error) code, must not be S_OK.
    408408 * @param aIID          IID of the interface that defines the error.
    409  * @param aComponent    Name of the component that generates the error.
     409 * @param pcszComponent Name of the component that generates the error.
    410410 * @param aText         Error message (must not be null), an RTStrPrintf-like
    411411 *                      format string in UTF-8 encoding.
     
    781781 * the next operation. The operation percentage is reset to 0.
    782782 *
    783  * @param aOperationDescription     Description of the next operation.
     783 * @param aNextOperationDescription  Description of the next operation.
     784 * @param aNextOperationsWeight     Weight of the next operation.
    784785 *
    785786 * @note The current operation must not be the last one.
  • trunk/src/VBox/Main/src-client/ConsoleImpl.cpp

    r63239 r65103  
    48264826 * @returns COM status code.
    48274827 *
    4828  * @parma   pUVM                The VM handle (caller hold this safely).
     4828 * @param   pUVM                The VM handle (caller hold this safely).
    48294829 * @param   pszDevice           The PDM device name.
    48304830 * @param   uInstance           The PDM device instance.
  • trunk/src/VBox/Main/src-client/MachineDebuggerImpl.cpp

    r65088 r65103  
    143143 *
    144144 * @returns COM status code
    145  * @param   a_fEnable       The new state.
     145 * @param   aSingleStep     The new state.
    146146 */
    147147HRESULT MachineDebugger::setSingleStep(BOOL aSingleStep)
     
    224224 *
    225225 * @returns COM status code
    226  * @param   a_fEnabled address of result variable
     226 * @param   aRecompileUser address of result variable
    227227 */
    228228HRESULT MachineDebugger::getRecompileUser(BOOL *aRecompileUser)
     
    235235 *
    236236 * @returns COM status
    237  * @param   aEnable new user mode code recompile flag.
     237 * @param   aRecompileUser new user mode code recompile flag.
    238238 */
    239239HRESULT MachineDebugger::setRecompileUser(BOOL aRecompileUser)
     
    247247 *
    248248 * @returns COM status code
    249  * @param   aEnabled address of result variable
     249 * @param   aRecompileSupervisor    address of result variable
    250250 */
    251251HRESULT MachineDebugger::getRecompileSupervisor(BOOL *aRecompileSupervisor)
     
    258258 *
    259259 * @returns COM status code
    260  * @param   aEnable new recompile supervisor code flag
     260 * @param   aRecompileSupervisor    new recompile supervisor code flag
    261261 */
    262262HRESULT MachineDebugger::setRecompileSupervisor(BOOL aRecompileSupervisor)
     
    270270 *
    271271 * @returns COM status code
    272  * @param   aEnabled    Address of result variable.
     272 * @param   aExecuteAllInIEM    Address of result variable.
    273273 */
    274274HRESULT MachineDebugger::getExecuteAllInIEM(BOOL *aExecuteAllInIEM)
     
    281281 *
    282282 * @returns COM status code
    283  * @param   aEnable     New setting.
     283 * @param   aExecuteAllInIEM    New setting.
    284284 */
    285285HRESULT MachineDebugger::setExecuteAllInIEM(BOOL aExecuteAllInIEM)
     
    293293 *
    294294 * @returns COM status code
    295  * @param   aEnabled address of result variable
     295 * @param   aPATMEnabled    address of result variable
    296296 */
    297297HRESULT MachineDebugger::getPATMEnabled(BOOL *aPATMEnabled)
     
    314314 *
    315315 * @returns COM status code
    316  * @param   aEnable new patch manager enabled flag
     316 * @param   aPATMEnabled    new patch manager enabled flag
    317317 */
    318318HRESULT MachineDebugger::setPATMEnabled(BOOL aPATMEnabled)
     
    349349 *
    350350 * @returns COM status code
    351  * @param   aEnabled address of result variable
     351 * @param   aCSAMEnabled    address of result variable
    352352 */
    353353HRESULT MachineDebugger::getCSAMEnabled(BOOL *aCSAMEnabled)
     
    371371 *
    372372 * @returns COM status code
    373  * @param   aEnable new code scanner enabled flag
     373 * @param   aCSAMEnabled    new code scanner enabled flag
    374374 */
    375375HRESULT MachineDebugger::setCSAMEnabled(BOOL aCSAMEnabled)
     
    593593 *
    594594 * @returns COM status code
    595  * @param   aEnabled address of result variable
     595 * @param   aHWVirtExUXEnabled address of result variable
    596596 */
    597597HRESULT MachineDebugger::getHWVirtExUXEnabled(BOOL *aHWVirtExUXEnabled)
     
    675675 *
    676676 * @returns COM status code
    677  * @param   aEnabled address of result variable
     677 * @param   aPAEEnabled     address of result variable.
    678678 */
    679679HRESULT MachineDebugger::getPAEEnabled(BOOL *aPAEEnabled)
     
    699699 *
    700700 * @returns COM status code.
    701  * @param   a_puPct      Where to store the rate.
     701 * @param   aVirtualTimeRate    Where to store the rate.
    702702 */
    703703HRESULT MachineDebugger::getVirtualTimeRate(ULONG *aVirtualTimeRate)
     
    714714
    715715/**
    716  * Returns the current virtual time rate.
     716 * Set the virtual time rate.
    717717 *
    718718 * @returns COM status code.
    719  * @param   aPct     Where to store the rate.
     719 * @param   aVirtualTimeRate    The new rate.
    720720 */
    721721HRESULT MachineDebugger::setVirtualTimeRate(ULONG aVirtualTimeRate)
  • trunk/src/VBox/Main/src-client/MouseImpl.cpp

    r63244 r65103  
    367367 *
    368368 * @returns COM status code
    369  * @param absoluteSupported address of result variable
     369 * @param aAbsoluteSupported address of result variable
    370370 */
    371371HRESULT Mouse::getAbsoluteSupported(BOOL *aAbsoluteSupported)
     
    380380 *
    381381 * @returns COM status code
    382  * @param relativeSupported address of result variable
     382 * @param aRelativeSupported address of result variable
    383383 */
    384384HRESULT Mouse::getRelativeSupported(BOOL *aRelativeSupported)
     
    393393 *
    394394 * @returns COM status code
    395  * @param multiTouchSupported address of result variable
     395 * @param aMultiTouchSupported address of result variable
    396396 */
    397397HRESULT Mouse::getMultiTouchSupported(BOOL *aMultiTouchSupported)
     
    406406 *
    407407 * @returns COM status code
    408  * @param pfNeedsHostCursor address of result variable
     408 * @param aNeedsHostCursor address of result variable
    409409 */
    410410HRESULT Mouse::getNeedsHostCursor(BOOL *aNeedsHostCursor)
     
    736736 *
    737737 * @returns COM status code
    738  * @param dx          X movement
    739  * @param dy          Y movement
    740  * @param dz          Z movement
    741  * @param fButtons    The mouse button state
     738 * @param dx            X movement.
     739 * @param dy            Y movement.
     740 * @param dz            Z movement.
     741 * @param dw            Mouse wheel movement.
     742 * @param aButtonState  The mouse button state.
    742743 */
    743744HRESULT Mouse::putMouseEvent(LONG dx, LONG dy, LONG dz, LONG dw,
     
    837838 *
    838839 * @returns COM status code
    839  * @param x          X position (pixel), starting from 1
    840  * @param y          Y position (pixel), starting from 1
    841  * @param dz         Z movement
    842  * @param fButtons   The mouse button state
     840 * @param x         X position (pixel), starting from 1
     841 * @param y         Y position (pixel), starting from 1
     842 * @param dz        Z movement
     843 * @param dw        mouse wheel movement
     844 * @param aButtonState The mouse button state
    843845 */
    844846HRESULT Mouse::putMouseEventAbsolute(LONG x, LONG y, LONG dz, LONG dw,
     
    10481050
    10491051/** Check what sort of reporting can be done using the devices currently
    1050  * enabled.  Does not consider the VMM device. */
     1052 * enabled.  Does not consider the VMM device.
     1053 *
     1054 * @param   pfAbs   supports absolute mouse coordinates.
     1055 * @param   pfRel   supports relative mouse coordinates.
     1056 * @param   pfMT    supports multitouch.
     1057 */
    10511058void Mouse::i_getDeviceCaps(bool *pfAbs, bool *pfRel, bool *pfMT)
    10521059{
     
    11491156 * A virtual device is notifying us about its current state and capabilities
    11501157 */
    1151 DECLCALLBACK(void) Mouse::i_mouseReportModes(PPDMIMOUSECONNECTOR pInterface, bool fRel, bool fAbs, bool fMT)
     1158DECLCALLBACK(void) Mouse::i_mouseReportModes(PPDMIMOUSECONNECTOR pInterface, bool fRelative,
     1159                                             bool fAbsolute, bool fMultiTouch)
    11521160{
    11531161    PDRVMAINMOUSE pDrv = RT_FROM_MEMBER(pInterface, DRVMAINMOUSE, IConnector);
    1154     if (fRel)
     1162    if (fRelative)
    11551163        pDrv->u32DevCaps |= MOUSE_DEVCAP_RELATIVE;
    11561164    else
    11571165        pDrv->u32DevCaps &= ~MOUSE_DEVCAP_RELATIVE;
    1158     if (fAbs)
     1166    if (fAbsolute)
    11591167        pDrv->u32DevCaps |= MOUSE_DEVCAP_ABSOLUTE;
    11601168    else
    11611169        pDrv->u32DevCaps &= ~MOUSE_DEVCAP_ABSOLUTE;
    1162     if (fMT)
     1170    if (fMultiTouch)
    11631171        pDrv->u32DevCaps |= MOUSE_DEVCAP_MULTI_TOUCH;
    11641172    else
  • trunk/src/VBox/Main/src-client/PCIRawDevImpl.cpp

    r63239 r65103  
    6767
    6868/**
    69  * @interface_method_impl{PDMIPCIRAWUP,pfnPciDeviceConstructComplete}
     69 * @interface_method_impl{PDMIPCIRAWCONNECTOR,pfnDeviceConstructComplete}
    7070 */
    7171DECLCALLBACK(int) PCIRawDev::drvDeviceConstructComplete(PPDMIPCIRAWCONNECTOR pInterface, const char *pcszName,
  • trunk/src/VBox/Main/src-client/SessionImpl.cpp

    r63258 r65103  
    10901090 *  @param aFinalRelease    called as a result of FinalRelease()
    10911091 *  @param aFromServer      called as a result of Uninitialize()
    1092  *  @param pLockW           The write lock this object is protected with.
     1092 *  @param aLockW           The write lock this object is protected with.
    10931093 *                          Must be acquired already and will be released
    10941094 *                          and later reacquired during the unlocking.
  • trunk/src/VBox/Main/src-server/ApplianceImpl.cpp

    r65088 r65103  
    373373 * Implementation for IVirtualBox::createAppliance.
    374374 *
    375  * @param anAppliance IAppliance object created if S_OK is returned.
     375 * @param aAppliance IAppliance object created if S_OK is returned.
    376376 * @return S_OK or error.
    377377 */
     
    392392/**
    393393 * Appliance COM initializer.
    394  * @param
     394 * @param   aVirtualBox     The VirtualBox object.
    395395 * @return
    396396 */
     
    13941394/**
    13951395 * Public method implementation.
    1396  * @param
     1396 * @param   aCount
    13971397 * @return
    13981398 */
  • trunk/src/VBox/Main/src-server/MediumAttachmentImpl.cpp

    r61713 r65103  
    9292 * @param aParent           Machine object.
    9393 * @param aMedium           Medium object.
    94  * @param aController       Controller the hard disk is attached to.
     94 * @param aControllerName   Controller the hard disk is attached to.
    9595 * @param aPort             Port number.
    9696 * @param aDevice           Device number on the port.
     97 * @param aType             Device type.
     98 * @param aImplicit
    9799 * @param aPassthrough      Whether accesses are directly passed to the host drive.
    98  * @param aBandwidthLimit   Bandwidth limit in Mbps
     100 * @param aTempEject
     101 * @param aNonRotational    Whether this medium is non-rotational (aka SSD).
     102 * @param aDiscard
     103 * @param aHotPluggable     Whether this medium is hot-pluggable.
     104 * @param aBandwidthLimit   Bandwidth limit in Mbps.
    99105 */
    100106HRESULT MediumAttachment::init(Machine *aParent,
  • trunk/src/VBox/Main/src-server/MediumImpl.cpp

    r65066 r65103  
    10741074 * @param uuidMachineRegistry The registry to which this medium should be added
    10751075 *                            (global registry UUID or machine UUID or empty if none).
    1076  * @param deviceType    Device Type.
     1076 * @param aDeviceType   Device Type.
    10771077 */
    10781078HRESULT Medium::init(VirtualBox *aVirtualBox,
     
    43674367 * of this media and updates it if necessary to reflect the new location.
    43684368 *
    4369  * @param aOldPath  Old path (full).
    4370  * @param aNewPath  New path (full).
     4369 * @param strOldPath  Old path (full).
     4370 * @param strNewPath  New path (full).
    43714371 *
    43724372 * @note Locks this object for writing.
     
    60726072 * Used by IAppliance to export disk images.
    60736073 *
    6074  * @param aFilename             Filename to create (UTF8).
    6075  * @param aFormat               Medium format for creating @a aFilename.
    6076  * @param aVariant              Which exact image format variant to use
    6077  *                              for the destination image.
    6078  * @param pKeyStore             The optional key store for decrypting the data
    6079  *                              for encrypted media during the export.
    6080  * @param aVDImageIOCallbacks   Pointer to the callback table for a
    6081  *                              VDINTERFACEIO interface. May be NULL.
    6082  * @param aVDImageIOUser        Opaque data for the callbacks.
    6083  * @param aProgress             Progress object to use.
     6074 * @param aFilename         Filename to create (UTF8).
     6075 * @param aFormat           Medium format for creating @a aFilename.
     6076 * @param aVariant          Which exact image format variant to use for the
     6077 *                          destination image.
     6078 * @param pKeyStore         The optional key store for decrypting the data for
     6079 *                          encrypted media during the export.
     6080 * @param aVDImageIOIf      Pointer to the callback table for a VDINTERFACEIO
     6081 *                          interface. May be NULL.
     6082 * @param aVDImageIOUser    Opaque data for the callbacks.
     6083 * @param aProgress         Progress object to use.
    60846084 * @return
    60856085 * @note The source format is defined by the Medium instance.
     
    65116511 * @note Locks m->pParent for reading. Locks this object for writing.
    65126512 *
    6513  * @param fSetImageId Whether to reset the UUID contained in the image file to the UUID in the medium instance data (see SetIDs())
    6514  * @param fSetParentId Whether to reset the parent UUID contained in the image file to the parent
    6515  *                     UUID in the medium instance data (see SetIDs())
     6513 * @param fSetImageId   Whether to reset the UUID contained in the image file
     6514 *                      to the UUID in the medium instance data (see SetIDs())
     6515 * @param fSetParentId  Whether to reset the parent UUID contained in the image
     6516 *                      file to the parent UUID in the medium instance data (see
     6517 *                      SetIDs())
     6518 * @param autoCaller
    65166519 * @return
    65176520 */
  • trunk/src/VBox/Main/src-server/NetworkAdapterImpl.cpp

    r65063 r65103  
    6565 *
    6666 *  @param aParent  Handle of the parent object.
     67 *  @param uSlot    Slot number this network adapter is plugged into.
    6768 */
    6869HRESULT NetworkAdapter::init(Machine *aParent, ULONG uSlot)
     
    102103 *  the object passed as an argument.
    103104 *
     105 *  @param  aParent     Parent object.
     106 *  @param  aThat
    104107 *  @param  aReshare
    105108 *      When false, the original object will remain a data owner.
  • trunk/src/VBox/Main/src-server/ParallelPortImpl.cpp

    r65063 r65103  
    7272 *
    7373 *  @param aParent  Handle of the parent object.
     74 *  @param aSlot    Slotnumber this parallel port is plugged into.
    7475 */
    7576HRESULT ParallelPort::init(Machine *aParent, ULONG aSlot)
  • trunk/src/VBox/Main/src-server/SerialPortImpl.cpp

    r65063 r65103  
    7474 *
    7575 *  @param aParent  Handle of the parent object.
     76 *  @param aSlot    Slot number the serial port is plugged into.
    7677 */
    7778HRESULT SerialPort::init(Machine *aParent, ULONG aSlot)
  • trunk/src/VBox/Main/src-server/SnapshotImpl.cpp

    r65088 r65103  
    9999 *  Initializes the instance
    100100 *
     101 *  @param  aVirtualBox    VirtualBox object
    101102 *  @param  aId            id of the snapshot
    102103 *  @param  aName          name of the snapshot
     
    11131114 *  @param hardware         hardware settings
    11141115 *  @param pDbg             debuging settings
    1115  *  @param pAutoStart       autostart settings
     1116 *  @param pAutostart       autostart settings
    11161117 *  @param aSnapshotId      snapshot ID of this snapshot machine
    11171118 *  @param aStateFilePath   file where the execution state is saved
     
    20512052 * @note Locks mParent + this object for writing.
    20522053 *
    2053  * @param pTask Task data.
     2054 * @param task Task data.
    20542055 */
    20552056void SessionMachine::i_restoreSnapshotHandler(RestoreSnapshotTask &task)
     
    36293630 * @param aSource       Source hard disk for merge.
    36303631 * @param aTarget       Target hard disk for merge.
    3631  * @param aMergeForward Merge direction.
     3632 * @param fMergeForward Merge direction.
    36323633 * @param aParentForTarget New parent if target needs to be reparented.
    36333634 * @param aChildrenToReparent Medium lock list with children which have to be
  • trunk/src/VBox/Main/src-server/StorageControllerImpl.cpp

    r63975 r65103  
    8383 * @param aParent       Pointer to our parent object.
    8484 * @param aName         Name of the storage controller.
     85 * @param aStorageBus   Type of the storage bus.
    8586 * @param aInstance     Instance number of the storage controller.
     87 * @param fBootable     Bootable flag.
    8688 */
    8789HRESULT StorageController::init(Machine *aParent,
     
    176178 *  the object passed as an argument.
    177179 *
     180 *  @param  aParent     Pointer to our parent object.
     181 *  @param  aThat
    178182 *  @param  aReshare
    179183 *      When false, the original object will remain a data owner.
  • trunk/src/VBox/Main/src-server/SystemPropertiesImpl.cpp

    r64273 r65103  
    11751175 * the "default default" machine folder has changed, and we now require
    11761176 * a full path always.
    1177  * @param aPath
     1177 * @param   strPath
    11781178 * @return
    11791179 */
  • trunk/src/VBox/Main/src-server/USBControllerImpl.cpp

    r61380 r65103  
    121121 * @param aParent       Pointer to our parent object.
    122122 * @param aPeer         The object to share.
    123  *  @param  aReshare
     123 * @param fReshare
    124124 *      When false, the original object will remain a data owner.
    125125 *      Otherwise, data ownership will be transferred from the original
  • trunk/src/VBox/Main/src-server/USBDeviceFilterImpl.cpp

    r65088 r65103  
    8383 *  @param  aFilter     The filter.
    8484 *  @param  aIdx        The field index.
    85  *  @param  aStr        The input string.
    86  *  @param  aName       The field name for use in the error string.
     85 *  @param  aValue      The input string.
    8786 *  @param  aErrStr     Where to return the error string on failure.
    8887 *
     
    278277 *
    279278 *  @param aParent  Handle of the parent object.
     279 *  @param aName    Name of the filter.
    280280 */
    281281HRESULT USBDeviceFilter::init(USBDeviceFilters *aParent, IN_BSTR aName)
     
    317317 *  the object passed as an argument.
    318318 *
     319 *  @param  aParent  Handle of the parent object.
     320 *  @param  aThat
    319321 *  @param  aReshare
    320322 *      When false, the original object will remain a data owner.
     
    778780 *
    779781 *  @param  aIdx    The field index.
    780  *  @param  aStr    The new value.
     782 *  @param  strNew  The new value.
    781783 *
    782784 *  @return COM status.
  • trunk/src/VBox/Main/src-server/USBProxyService.cpp

    r65088 r65103  
    543543 *
    544544 * @param   aDevice     The device in question.
    545  * @param   aUSBDevice  The USB device structure.
     545 * @param   pDev        The USB device structure.
    546546 */
    547547void USBProxyService::i_deviceAdded(ComObjPtr<HostUSBDevice> &aDevice,
     
    711711 * @returns COM status code (only parameter & state checks will fail).
    712712 * @param   aDevice         The USB device to apply filters to.
     713 * @param   llOpenedMachines The list of opened machines.
    713714 * @param   aIgnoreMachine  The machine to ignore filters from (we've just
    714715 *                          detached the device from this machine).
  • trunk/src/VBox/Main/src-server/VFSExplorerImpl.cpp

    r63378 r65103  
    7575/**
    7676 * VFSExplorer COM initializer.
    77  * @param
     77 * @param   aType       VFS type.
     78 * @param   aFilePath   File path.
     79 * @param   aHostname   Host name.
     80 * @param   aUsername   User name.
     81 * @param   aPassword   Password.
     82 * @param   aVirtualBox VirtualBox object.
    7883 * @return
    7984 */
     
    125130/**
    126131 * Public method implementation.
    127  * @param
     132 * @param   aPath   Where to store the path.
    128133 * @return
    129134 */
  • trunk/src/VBox/Main/src-server/VirtualBoxImpl.cpp

    r65088 r65103  
    666666 * continue to work as before.
    667667 *
    668  * @param uuidMachineRegistry The UUID of the media registry. This is either the
     668 * @param uuidRegistry The UUID of the media registry. This is either the
    669669 *       transient UUID created at VirtualBox startup for the global registry or
    670670 *       a machine ID.
    671671 * @param mediaRegistry The XML settings structure to load, either from VirtualBox.xml
    672672 *       or a machine XML.
     673 * @param strMachineFolder The folder of the machine.
    673674 * @return
    674675 */
     
    36233624 * @param uuid UUID to search for; must refer to a host drive or an image file or be null.
    36243625 * @param fRefresh Whether to refresh the list of host drives in IHost (see Host::getDrives())
     3626 * @param aSetError
    36253627 * @param pMedium out: IMedium object found.
    36263628 * @return
  • trunk/src/VBox/Main/webservice/vboxweb.cpp

    r65088 r65103  
    21902190 * Preconditions: Caller must have locked g_pWebsessionsLockHandle.
    21912191 *
    2192  * @param strId
    2193  * @param iter
     2192 * @param   id
     2193 * @param   pRef
     2194 * @param   fNullAllowed
    21942195 * @return
    21952196 */
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