VirtualBox

Changeset 65158 in vbox


Ignore:
Timestamp:
Jan 5, 2017 4:52:22 PM (8 years ago)
Author:
vboxsync
Message:

Main: doxygen fixes

Location:
trunk
Files:
7 edited

Legend:

Unmodified
Added
Removed
  • trunk/Doxyfile.Core

    r65122 r65158  
    561561    GMMR0DECL(type)=type \
    562562    GMMR3DECL(type)=type \
    563     VBOX_DND_FN_DECL_LOG(x)=x
     563    VBOX_DND_FN_DECL_LOG(x)=x \
     564    DECLSPEC_HIDDEN= \
     565    VMSVGA3DCOCOA_DECL(type)=type \
     566    VBOX_LISTENER_DECLARE(a)=
    564567
    565568# BS3Kit
  • trunk/src/VBox/Main/include/Global.h

    r65120 r65158  
    9999     * recommended way to detect if the VM is online (being executed in a
    100100     * dedicated process) or not. Note that some online states are also
    101      * transitional states (see #IsTransitional()).
     101     * transitional states (see #IsTransient()).
    102102     */
    103103    static bool IsOnline(MachineState_T aState)
  • trunk/src/VBox/Main/include/MachineImpl.h

    r65049 r65158  
    668668        /* flags for #saveSettings() */
    669669        SaveS_ResetCurStateModified = 0x01,
    670         SaveS_InformCallbacksAnyway = 0x02,
    671670        SaveS_Force = 0x04,
    672671        /* flags for #saveStateSettings() */
  • trunk/src/VBox/Main/include/Matching.h

    r62485 r65158  
    4444    ParsedFilter_base() : mValid (false), mNull (true), mErrorPosition (0) {};
    4545
     46    /**
     47     * Returns @c true if the filter is valid, @c false otherwise.
     48     */
    4649    bool isValid() const { return mNull || mValid; }
    4750    bool isNull() const { return mNull; }
     
    5659
    5760    /**
    58      *  Returns true if current isNull() and isValid() values make further
    59      *  detailed matching meaningful, otherwise returns false.
     61     *  Returns @c true if current isNull() and isValid() values make further
     62     *  detailed matching meaningful, otherwise returns @c false.
    6063     *  Must be called as a first method of every isMatch() implementation,
    61      *  so that isMatch() will immediately return false if isPreMatch() returns
     64     *  so that isMatch() will immediately return @c false if isPreMatch() returns
    6265     *  false.
    6366     */
  • trunk/src/VBox/Main/src-server/MachineImpl.cpp

    r65125 r65158  
    933933        if (mData->pMachineConfigFile)
    934934        {
    935             // reset the XML file to force loadSettings() (called from registeredInit())
     935            // reset the XML file to force loadSettings() (called from i_registeredInit())
    936936            // to parse it again; the file might have changed
    937937            delete mData->pMachineConfigFile;
     
    81188118 * Increases the number of objects dependent on the machine state or on the
    81198119 * registered state. Guarantees that these two states will not change at least
    8120  * until #releaseStateDependency() is called.
     8120 * until #i_releaseStateDependency() is called.
    81218121 *
    81228122 * Depending on the @a aDepType value, additional state checks may be made.
    81238123 * These checks will set extended error info on failure. See
    8124  * #checkStateDependency() for more info.
     8124 * #i_checkStateDependency() for more info.
    81258125 *
    81268126 * If this method returns a failure, the dependency is not added and the caller
     
    81758175/**
    81768176 * Decreases the number of objects dependent on the machine state.
    8177  * Must always complete the #addStateDependency() call after the state
     8177 * Must always complete the #i_addStateDependency() call after the state
    81788178 * dependency is no more necessary.
    81798179 */
     
    82518251 *  @param aDepType     Dependency type to check.
    82528252 *
    8253  *  @note Non Machine based classes should use #addStateDependency() and
    8254  *  #releaseStateDependency() methods or the smart AutoStateDependency
     8253 *  @note Non Machine based classes should use #i_addStateDependency() and
     8254 *  #i_releaseStateDependency() methods or the smart AutoStateDependency
    82558255 *  template.
    82568256 *
     
    83428342 * (usually done in the #init() method).
    83438343 *
    8344  * @note Must be called only from #init() or from #registeredInit().
     8344 * @note Must be called only from #init() or from #i_registeredInit().
    83458345 */
    83468346HRESULT Machine::initDataAndChildObjects()
     
    84228422 * procedure (usually done in the #uninit() method).
    84238423 *
    8424  * @note Must be called only from #uninit() or from #registeredInit().
     8424 * @note Must be called only from #uninit() or from #i_registeredInit().
    84258425 */
    84268426void Machine::uninitDataAndChildObjects()
     
    86928692 *
    86938693 * -- When machine XML exists on disk already and needs to be loaded into memory,
    8694  *    for example, from registeredInit() to load all registered machines on
     8694 *    for example, from #i_registeredInit() to load all registered machines on
    86958695 *    VirtualBox startup. In this case, puuidRegistry is NULL because the media
    86968696 *    attached to the machine should be part of some media registry already.
     
    99589958 *    Used when saving settings after an operation that makes them 100%
    99599959 *    correspond to the settings from the current snapshot.
    9960  *  - SaveS_InformCallbacksAnyway: Callbacks will be informed even if
    9961  *    #isReallyModified() returns false. This is necessary for cases when we
    9962  *    change machine data directly, not through the backup()/commit() mechanism.
    99639960 *  - SaveS_Force: settings will be saved without doing a deep compare of the
    99649961 *    settings structures. This is used when this is called because snapshots
     
    1006910066    }
    1007010067
    10071     if (fNeedsWrite || (aFlags & SaveS_InformCallbacksAnyway))
     10068    if (fNeedsWrite)
    1007210069    {
    1007310070        /* Fire the data change event, even on failure (since we've already
  • trunk/src/VBox/Main/src-server/VirtualBoxImpl.cpp

    r65103 r65158  
    50495049 *
    50505050 * When @a aSaveSettings is @c true, this operation may fail because of the
    5051  * failed #saveSettings() method it calls. In this case, the dhcp server object
     5051 * failed #i_saveSettings() method it calls. In this case, the dhcp server object
    50525052 * will not be remembered. It is therefore the responsibility of the caller to
    50535053 * call this method as the last step of some action that requires registration
     
    51145114 * @param aDHCPServer   DHCP server object to remove.
    51155115 *
    5116  * This operation may fail because of the failed #saveSettings() method it
     5116 * This operation may fail because of the failed #i_saveSettings() method it
    51175117 * calls. In this case, the DHCP server will NOT be removed from the settings
    51185118 * when this method returns.
     
    52955295 *
    52965296 * When @a aSaveSettings is @c true, this operation may fail because of the
    5297  * failed #saveSettings() method it calls. In this case, the DHCP server
     5297 * failed #i_saveSettings() method it calls. In this case, the DHCP server
    52985298 * will NOT be removed from the settingsi when this method returns.
    52995299 *
  • trunk/src/VBox/Main/webservice/vboxweb.h

    r63979 r65158  
    193193         * Returns the contained COM pointer and the UUID of the COM interface
    194194         * which it supports.
    195          * @param
     195         * @param   ppobjInterface
     196         * @param   ppobjUnknown
    196197         * @return
    197198         */
     
    317318 * @param idParent managed object reference of calling object; used to extract
    318319 *              websession ID
     320 * @param pcszInterface
    319321 * @param pc COM object for which to create a reference
    320322 * @return existing or new managed object reference
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