VirtualBox

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


Ignore:
Timestamp:
May 27, 2020 2:10:26 PM (5 years ago)
Author:
vboxsync
svn:sync-xref-src-repo-rev:
138294
Message:

Main: Comments / logging renaming (guest additions -> Guest Additions).

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

Legend:

Unmodified
Added
Removed
  • trunk/src/VBox/Main/idl/VirtualBox.xidl

    r84554 r84564  
    44014401    <attribute name="installGuestAdditions" type="boolean">
    44024402      <desc>
    4403         Indicates whether the guest additions should be installed or not.
     4403        Indicates whether the Guest Additions should be installed or not.
    44044404
    44054405        Setting this to false does not affect additions shipped with the linux
     
    1163411634      <desc>Guest graphics mode. If not enabled, seamless rendering will not work, resize hints
    1163511635        are not immediately acted on and guest display resizes are probably not initiated by
    11636         the guest additions.
     11636        the Guest Additions.
    1163711637      </desc>
    1163811638    </const>
     
    1230712307    <desc>
    1230812308      Guest process execution flags.
    12309       <note>The values are passed to the guest additions, so its not possible
     12309      <note>The values are passed to the Guest Additions, so its not possible
    1231012310            to change (move) or reuse values.here. See EXECUTEPROCESSFLAG_XXX
    1231112311            in GuestControlSvc.h.</note>
     
    1249212492    <const name="Unknown" value="8">
    1249312493      <desc>
    12494         The path style is not known, most likely because the guest additions
     12494        The path style is not known, most likely because the Guest Additions
    1249512495        aren't active yet.
    1249612496      </desc>
     
    1307113071      for why we record changes to a base environment instead of working
    1307213072      directly on an environment block is that we need to be compatible
    13073       with older guest additions.  Another reason is that this way it is always
     13073      with older Guest Additions.  Another reason is that this way it is always
    1307413074      possible to undo all the changes you've scheduled.)
    1307513075    </desc>
     
    1312313123        one array entry per variable.
    1312413124        <!-- @todo/TODO/FIXME: This doesn't end up in the PDF.
    13125         <result name="VBOX_E_NOT_SUPPORTED">If the guest additions does not
     13125        <result name="VBOX_E_NOT_SUPPORTED">If the Guest Additions does not
    1312613126          support the session base environment feature.  Support for this was
    1312713127          introduced with protocol version XXX.</result>
    13128         <result name="VBOX_E_INVALID_OBJECT_STATE">If the guest additions has
     13128        <result name="VBOX_E_INVALID_OBJECT_STATE">If the Guest Additions has
    1312913129          yet to report the session base environment.</result> -->
    1313013130
    13131         Access fails with VBOX_E_NOT_SUPPORTED if the guest additions does not
     13131        Access fails with VBOX_E_NOT_SUPPORTED if the Guest Additions does not
    1313213132        support the session base environment feature.  Support for this was
    1313313133        introduced with protocol version XXXX.
    1313413134
    13135         Access fails with VBOX_E_INVALID_OBJECT_STATE if the guest additions
     13135        Access fails with VBOX_E_INVALID_OBJECT_STATE if the Guest Additions
    1313613136        has yet to report the session base environment.
    1313713137      </desc>
     
    1359113591        (<link to="IGuestSession::environmentBase"/>).
    1359213592
    13593         <result name="VBOX_E_NOT_SUPPORTED">If the guest additions does not
     13593        <result name="VBOX_E_NOT_SUPPORTED">If the Guest Additions does not
    1359413594          support the session base environment feature.  Support for this was
    1359513595          introduced with protocol version XXXX.</result>
    13596         <result name="VBOX_E_INVALID_OBJECT_STATE">If the guest additions has
     13596        <result name="VBOX_E_INVALID_OBJECT_STATE">If the Guest Additions has
    1359713597          yet to report the session base environment.</result>
    1359813598      </desc>
     
    1361513615        environment (<link to="IGuestSession::environmentBase"/>).
    1361613616
    13617         <result name="VBOX_E_NOT_SUPPORTED">If the guest additions does not
     13617        <result name="VBOX_E_NOT_SUPPORTED">If the Guest Additions does not
    1361813618          support the session base environment feature.  Support for this was
    1361913619          introduced with protocol version XXXX.</result>
    13620         <result name="VBOX_E_INVALID_OBJECT_STATE">If the guest additions has
     13620        <result name="VBOX_E_INVALID_OBJECT_STATE">If the Guest Additions has
    1362113621          yet to report the session base environment.</result>
    1362213622      </desc>
     
    1419214192          guest user (<link to="IGuestSession::environmentBase"/>) when
    1419314193          creating the process.  (This is done on the guest side of things in
    14194           order to be compatible with older guest additions.  That is one of
     14194          order to be compatible with older Guest Additions.  That is one of
    1419514195          the motivations for not passing in the whole environment here.)
    1419614196        </desc>
     
    1425114251          guest user (<link to="IGuestSession::environmentBase"/>) when
    1425214252          creating the process.  (This is done on the guest side of things in
    14253           order to be compatible with older guest additions.  That is one of
     14253          order to be compatible with older Guest Additions.  That is one of
    1425414254          the motivations for not passing in the whole environment here.)
    1425514255        </desc>
     
    1427314273          Process priority to use for execution, see <link to="ProcessPriority"/>
    1427414274          for available priority levels.
    14275           <note>This is silently ignored if not supported by guest additions.</note>
     14275          <note>This is silently ignored if not supported by Guest Additions.</note>
    1427614276        </desc>
    1427714277      </param>
     
    1428214282          <note>
    1428314283            This is silently ignored if the guest does not support setting the
    14284             affinity of processes, or if the guest additions does not implemet
     14284            affinity of processes, or if the Guest Additions does not implemet
    1428514285            this feature.
    1428614286          </note>
     
    1472214722        transfering any file data like read and write does.
    1472314723
    14724         <note> This will not always be correct with older guest additions
     14724        <note> This will not always be correct with older Guest Additions
    1472514725        (version 5.2.30 and earlier, as well as versions 6.0.0 thru 6.0.8)
    1472614726        after a calling <link to="IFile::readAt"/> or <link to="IFile::writeAt"/>,
  • trunk/src/VBox/Main/include/AdditionsFacilityImpl.h

    r82968 r84564  
    2828
    2929/**
    30  * A guest additions facility.
     30 * A Guest Additions facility.
    3131 */
    3232class ATL_NO_VTABLE AdditionsFacility :
  • trunk/src/VBox/Main/include/DisplayImpl.h

    r84342 r84564  
    9898/* The legacy VBVA (VideoAccel) data.
    9999 *
    100  * Backward compatibility with the guest additions 3.x or older.
     100 * Backward compatibility with the Guest Additions 3.x or older.
    101101 */
    102102typedef struct VIDEOACCEL
     
    108108    uint32_t    cbVbvaPartial;
    109109
    110     /* Old guest additions (3.x and older) use both VMMDev and DevVGA refresh timer
     110    /* Old Guest Additions (3.x and older) use both VMMDev and DevVGA refresh timer
    111111     * to process the VBVABUFFER memory. Therefore the legacy VBVA (VideoAccel) host
    112112     * code can be executed concurrently by VGA refresh timer and the guest VMMDev
  • trunk/src/VBox/Main/include/UnattendedInstaller.h

    r82968 r84564  
    120120#if 0 /* These are now in the AUX VISO. */
    121121    /**
    122      * Whether the VBox guest additions ISO is needed or not.
     122     * Whether the VBox Guest Additions ISO is needed or not.
    123123     *
    124124     * The default implementation always returns false when a VISO is used, see
  • trunk/src/VBox/Main/include/UnattendedScript.h

    r82968 r84564  
    7575     *                              template parts.  Intended for voiding triggering
    7676     *                              sanity checks regarding which replacements
    77      *                              should be used and not (e.g. no guest additions
     77     *                              should be used and not (e.g. no Guest Additions
    7878     *                              path when installing GAs aren't enabled).
    7979     * @param   rValue              Where to return the value.
  • trunk/src/VBox/Main/src-client/DisplayImplLegacy.cpp

    r82968 r84564  
    33 * VirtualBox IDisplay implementation, helpers for legacy GAs.
    44 *
    5  * Methods and helpers to support old guest additions 3.x or older.
    6  * This is not used by the current guest additions.
     5 * Methods and helpers to support old Guest Additions 3.x or older.
     6 * This is not used by the current Guest Additions.
    77 */
    88
  • trunk/src/VBox/Main/src-client/GuestFileImpl.cpp

    r84508 r84564  
    303303     *
    304304     * Note! This will not be accurate with older (< 5.2.32, 6.0.0 - 6.0.9)
    305      *       guest additions when using writeAt, readAt or writing to a file
     305     *       Guest Additions when using writeAt, readAt or writing to a file
    306306     *       opened in append mode.
    307307     */
  • trunk/src/VBox/Main/src-client/GuestImpl.cpp

    r82968 r84564  
    415415    {
    416416        /*
    417          * If we're running older guest additions (< 3.2.0) try get it from
     417         * If we're running older Guest Additions (< 3.2.0) try get it from
    418418         * the guest properties.  Detected switched around Version and
    419419         * Revision in early 3.1.x releases (see r57115).
     
    462462    {
    463463        /*
    464          * If we're running older guest additions (< 3.2.0) try get it from
     464         * If we're running older Guest Additions (< 3.2.0) try get it from
    465465         * the guest properties. Detected switched around Version and
    466466         * Revision in early 3.1.x releases (see r57115).
  • trunk/src/VBox/Main/src-client/GuestSessionImpl.cpp

    r84554 r84564  
    481481    }
    482482    else if (mData.mProtocolVersion < 99999)
    483         hrc = setError(VBOX_E_NOT_SUPPORTED, tr("The base environment feature is not supported by the guest additions"));
     483        hrc = setError(VBOX_E_NOT_SUPPORTED, tr("The base environment feature is not supported by the Guest Additions"));
    484484    else
    485485        hrc = setError(VBOX_E_INVALID_OBJECT_STATE, tr("The base environment has not yet been reported by the guest"));
     
    27782778{
    27792779    /*
    2780      * We currently do this based on the reported guest additions version,
     2780     * We currently do this based on the reported Guest Additions version,
    27812781     * ASSUMING that VBoxService and VBoxDrv are at the same version.
    27822782     */
     
    27972797
    27982798    /*
    2799      * Inform the user about outdated guest additions (VM release log).
     2799     * Inform the user about outdated Guest Additions (VM release log).
    28002800     */
    28012801    if (mData.mProtocolVersion < 2)
     
    37453745    }
    37463746    else if (mData.mProtocolVersion < 99999)
    3747         hrc = setError(VBOX_E_NOT_SUPPORTED, tr("The base environment feature is not supported by the guest additions"));
     3747        hrc = setError(VBOX_E_NOT_SUPPORTED, tr("The base environment feature is not supported by the Guest Additions"));
    37483748    else
    37493749        hrc = setError(VBOX_E_INVALID_OBJECT_STATE, tr("The base environment has not yet been reported by the guest"));
     
    37663766    }
    37673767    else if (mData.mProtocolVersion < 99999)
    3768         hrc = setError(VBOX_E_NOT_SUPPORTED, tr("The base environment feature is not supported by the guest additions"));
     3768        hrc = setError(VBOX_E_NOT_SUPPORTED, tr("The base environment feature is not supported by the Guest Additions"));
    37693769    else
    37703770        hrc = setError(VBOX_E_INVALID_OBJECT_STATE, tr("The base environment has not yet been reported by the guest"));
  • trunk/src/VBox/Main/src-client/VMMDevInterface.cpp

    r83142 r84564  
    231231    {
    232232        /*
    233          * The guest additions was disabled because of a reset
     233         * The Guest Additions was disabled because of a reset
    234234         * or driver unload.
    235235         */
     
    270270
    271271/**
    272  * Update the guest additions capabilities.
    273  * This is called when the guest additions capabilities change. The new capabilities
     272 * Update the Guest Additions capabilities.
     273 * This is called when the Guest Additions capabilities change. The new capabilities
    274274 * are given and the connector should update its internal state.
    275275 *
  • trunk/src/VBox/Main/src-server/UnattendedImpl.cpp

    r82968 r84564  
    12401240                            mStrIsoPath.c_str());
    12411241    if (mfInstallGuestAdditions && !RTFileExists(mStrAdditionsIsoPath.c_str()))
    1242         return setErrorBoth(E_FAIL, VERR_FILE_NOT_FOUND, tr("Could not locate the guest additions ISO file '%s'"),
     1242        return setErrorBoth(E_FAIL, VERR_FILE_NOT_FOUND, tr("Could not locate the Guest Additions ISO file '%s'"),
    12431243                            mStrAdditionsIsoPath.c_str());
    12441244    if (mfInstallTestExecService && !RTFileExists(mStrValidationKitIsoPath.c_str()))
  • trunk/src/VBox/Main/src-server/UnattendedScript.cpp

    r82968 r84564  
    434434         && memcmp(pachPlaceholder, "@@VBOX_COND_" a_szMatch "@@", sizeof("@@VBOX_COND_" a_szMatch "@@") - 1U) == 0)
    435435
    436     /* Install guest additions: */
     436    /* Install Guest Additions: */
    437437    if (IS_PLACEHOLDER_MATCH("IS_INSTALLING_ADDITIONS"))
    438438        *pfOutputting = mpUnattended->i_getInstallGuestAdditions();
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