VirtualBox

Changeset 62471 in vbox for trunk/src


Ignore:
Timestamp:
Jul 22, 2016 6:04:30 PM (9 years ago)
Author:
vboxsync
Message:

Misc: scm

Location:
trunk/src/VBox
Files:
82 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/VBox/Frontends/VBoxBalloonCtrl/VBoxModBallooning.cpp

    r60648 r62471  
    3131#define VBOX_MOD_BALLOONING_NAME "balloon"
    3232
     33
    3334/*********************************************************************************************************************************
    3435*   Local Structures                                                                                                             *
     
    7172} VBOXWATCHDOG_BALLOONCTRL_PAYLOAD, *PVBOXWATCHDOG_BALLOONCTRL_PAYLOAD;
    7273
     74
    7375/*********************************************************************************************************************************
    7476*   Globals                                                                                                                      *
     
    8385static unsigned long g_ulMemoryBalloonLowerLimitMB = 128;
    8486static unsigned long g_ulMemoryBalloonSafetyMB     = 1024;
     87
    8588
    8689/*********************************************************************************************************************************
  • trunk/src/VBox/Frontends/VBoxBugReport/VBoxBugReportWin.cpp

    r59812 r62471  
    6161    {
    6262        { NCF_VIRTUAL, "virtual" },
    63         { NCF_SOFTWARE_ENUMERATED, "software_enumerated" },
    64         { NCF_PHYSICAL, "physical" },
     63        { NCF_SOFTWARE_ENUMERATED, "software_enumerated" },
     64        { NCF_PHYSICAL, "physical" },
    6565        { NCF_HIDDEN, "hidden" },
    66         { NCF_NO_SERVICE, "no_service" },
    67         { NCF_NOT_USER_REMOVABLE, "not_user_removable" },
    68         { NCF_MULTIPORT_INSTANCED_ADAPTER, "multiport_instanced_adapter" },
    69         { NCF_HAS_UI, "has_ui" },
    70         { NCF_SINGLE_INSTANCE, "single_instance" },
    71         { NCF_FILTER, "filter" },
    72         { NCF_DONTEXPOSELOWER, "dontexposelower" },
    73         { NCF_HIDE_BINDING, "hide_binding" },
    74         { NCF_NDIS_PROTOCOL, "ndis_protocol" },
    75         { NCF_FIXED_BINDING, "fixed_binding" },
    76         { NCF_LW_FILTER, "lw_filter" }
     66        { NCF_NO_SERVICE, "no_service" },
     67        { NCF_NOT_USER_REMOVABLE, "not_user_removable" },
     68        { NCF_MULTIPORT_INSTANCED_ADAPTER, "multiport_instanced_adapter" },
     69        { NCF_HAS_UI, "has_ui" },
     70        { NCF_SINGLE_INSTANCE, "single_instance" },
     71        { NCF_FILTER, "filter" },
     72        { NCF_DONTEXPOSELOWER, "dontexposelower" },
     73        { NCF_HIDE_BINDING, "hide_binding" },
     74        { NCF_NDIS_PROTOCOL, "ndis_protocol" },
     75        { NCF_FIXED_BINDING, "fixed_binding" },
     76        { NCF_LW_FILTER, "lw_filter" }
    7777    };
    7878    bool fPrintDelim = false;
     
    217217        throw;
    218218    }
    219            
     219
    220220}
    221221
     
    319319    if (uExpectedType != REG_NONE && uActualType != uExpectedType)
    320320        throw RTCError(RTCStringFmt("SetupDiGetDeviceRegistryProperty(0x%x) returned type %d instead of %d",
    321                                     uActualType, uExpectedType).c_str());   
     321                                    uActualType, uExpectedType).c_str());
    322322    PBYTE pBuffer = (PBYTE)RTMemAlloc(cbNeeded);
    323323    if (!pBuffer)
     
    408408    return strName;
    409409}
    410    
     410
    411411
    412412RTCString BugReportUsbTreeWin::getExternalHubName(HANDLE hHub, int iPort)
  • trunk/src/VBox/Frontends/VirtualBox/src/UIVMLogViewer.cpp

    r61962 r62471  
    11081108    QWidget *pCurrentLogPage = currentLogPage();
    11091109    if (pCurrentLogPage)
    1110         pCurrentLogPage->setFocus(); 
     1110        pCurrentLogPage->setFocus();
    11111111}
    11121112
  • trunk/src/VBox/Frontends/VirtualBox/src/globals/UIDesktopWidgetWatchdog.cpp

    r60702 r62471  
    102102}
    103103
    104 const QRect     UIDesktopWidgetWatchdog::screenGeometry(int iHostScreenIndex /* = -1 */) const
     104const QRect     UIDesktopWidgetWatchdog::screenGeometry(int iHostScreenIndex /* = -1 */) const
    105105{
    106106    /* Make sure index is valid: */
  • trunk/src/VBox/Frontends/VirtualBox/src/globals/UIDesktopWidgetWatchdog.h

    r57510 r62471  
    4343    /** Returns the geometry of the host-screen with @a iHostScreenIndex.
    4444      * @note The default screen is used if @a iHostScreenIndex is -1. */
    45     const QRect screenGeometry(int iHostScreenIndex = -1) const;
     45    const QRect screenGeometry(int iHostScreenIndex = -1) const;
    4646    /** Returns the available-geometry of the host-screen with @a iHostScreenIndex.
    4747      * @note The default screen is used if @a iHostScreenIndex is -1. */
  • trunk/src/VBox/Frontends/VirtualBox/src/main.cpp

    r61047 r62471  
    479479        QApplication::setStyle(new QPlastiqueStyle);
    480480#  else /* QT_VERSION >= 0x050000 */
    481         a.setStyle("fusion");
     481        a.setStyle("fusion");
    482482#  endif /* QT_VERSION >= 0x050000 */
    483483# endif /* Q_OS_SOLARIS */
     
    609609        QApplication::setStyle(new QPlastiqueStyle);
    610610#else /* QT_VERSION >= 0x050000 */
    611         a.setStyle("fusion");
     611        a.setStyle("fusion");
    612612# endif /* QT_VERSION >= 0x050000 */
    613613#endif /* Q_OS_SOLARIS */
     
    784784#endif /* VBOX_WITH_HARDENING */
    785785
    786 
  • trunk/src/VBox/Frontends/VirtualBox/src/net/UINetworkReply.cpp

    r60036 r62471  
    916916#ifndef VBOX_GUI_IN_TST_SSL_CERT_DOWNLOADS
    917917
     918
    918919/*********************************************************************************************************************************
    919920*   Class UINetworkReplyPrivate implementation.                                                                                  *
  • trunk/src/VBox/Frontends/VirtualBox/src/platform/darwin/UIWindowMenuManager.cpp

    r57897 r62471  
    188188};
    189189
     190
    190191/*********************************************************************************************************************************
    191192*   Class UIWindowMenuManager implementation.                                                                                    *
  • trunk/src/VBox/Frontends/VirtualBox/src/runtime/UIKeyboardHandler.cpp

    r62396 r62471  
    5555#   include "iprt/cpp/utils.h"
    5656#  endif /* QT_VERSION >= 0x050000 */
    57 # endif /* VBOX_WS_MAC */ 
     57# endif /* VBOX_WS_MAC */
    5858
    5959#endif /* !VBOX_WITH_PRECOMPILED_HEADERS */
  • trunk/src/VBox/Frontends/VirtualBox/src/runtime/information/UIVMInformationDialog.cpp

    r62369 r62471  
    8787    , m_pTabWidget(0)
    8888    , m_pMachineWindow(pMachineWindow)
    89 {   
     89{
    9090    /* Initialize instance: */
    9191    m_spInstance = this;
  • trunk/src/VBox/GuestHost/SharedClipboard/x11-clipboard.cpp

    r61725 r62471  
    6565    UTF8,
    6666    BMP,
    67         HTML
     67        HTML
    6868};
    6969
     
    9696    { "image/x-bmp", BMP, VBOX_SHARED_CLIPBOARD_FMT_BITMAP },
    9797    { "image/x-MS-bmp", BMP, VBOX_SHARED_CLIPBOARD_FMT_BITMAP }
    98    
    99        
     98
     99
    100100    /* TODO: Inkscape exports image/png but not bmp... */
    101101};
     
    339339    u32VBoxFormats |= clipVBoxFormatForX11Format(pCtx->X11HTMLFormat);
    340340    LogRelFlowFunc(("clipReportFormatsToVBox format: %d\n", u32VBoxFormats));
    341     LogRelFlowFunc(("clipReportFormatsToVBox txt: %d, bitm: %d, html:%d, u32VBoxFormats: %d\n", 
    342                     pCtx->X11TextFormat, pCtx->X11BitmapFormat, pCtx->X11HTMLFormat, 
     341    LogRelFlowFunc(("clipReportFormatsToVBox txt: %d, bitm: %d, html:%d, u32VBoxFormats: %d\n",
     342                    pCtx->X11TextFormat, pCtx->X11BitmapFormat, pCtx->X11HTMLFormat,
    343343                    u32VBoxFormats ));
    344344    ClipReportX11Formats(pCtx->pFrontend, u32VBoxFormats);
     
    450450/**
    451451 * Go through an array of X11 clipboard targets to see if they contain a HTML
    452  * format we can support, and if so choose the ones we prefer 
     452 * format we can support, and if so choose the ones we prefer
    453453 * @param  pCtx      the clipboard backend context structure
    454454 * @param  pTargets  the list of targets
     
    12061206    if(pszDest == NULL)
    12071207        return VERR_NO_MEMORY;
    1208        
     1208
    12091209    memcpy(pszDest, pszSrc, cbSrc);
    12101210
     
    12131213    *pcLenReturn = cbSrc;
    12141214    *piFormatReturn = 8;
    1215    
     1215
    12161216    return VINF_SUCCESS;
    12171217}
     
    13001300        RTMemFree(pv);
    13011301    }
    1302     else if ( (format == HTML) 
     1302    else if ( (format == HTML)
    13031303            && (pCtx->vboxFormats & VBOX_SHARED_CLIPBOARD_FMT_HTML))
    13041304    {
     
    13121312        if (RT_SUCCESS(rc))
    13131313        {
    1314             /* 
    1315             * The common VBox HTML encoding will be - Utf8 
     1314            /*
     1315            * The common VBox HTML encoding will be - Utf8
    13161316            * becuase it more general for HTML formats then UTF16
    1317             * X11 clipboard returns UTF16, so before sending it we should 
     1317            * X11 clipboard returns UTF16, so before sending it we should
    13181318            * convert it to UTF8
    13191319            * It's very strange but here we get utf16 from x11 clipboard
     
    17771777            case HTML:
    17781778            {
    1779                 /* The common VBox HTML encoding will be - Utf8 
     1779                /* The common VBox HTML encoding will be - Utf8
    17801780                * becuase it more general for HTML formats then UTF16
    1781                 * X11 clipboard returns UTF16, so before sending it we should 
    1782                 * convert it to UTF8 
     1781                * X11 clipboard returns UTF16, so before sending it we should
     1782                * convert it to UTF8
    17831783                */
    17841784                pvDest = NULL;
    17851785                cbDest = 0;
    1786                 /* Some applications sends data in utf16, some in itf8, 
     1786                /* Some applications sends data in utf16, some in itf8,
    17871787                 * without indication it in MIME.
    1788                  * But in case of utf16, at least an OpenOffice adds Byte Order Mark - 0xfeff 
     1788                 * But in case of utf16, at least an OpenOffice adds Byte Order Mark - 0xfeff
    17891789                 * at start of clipboard data
    17901790                 */
     
    18091809                   }
    18101810                }
    1811                                      
    1812                 LogRelFlowFunc(("Source unicode %ls, cbSrc = %d\n, Byte Order Mark = %hx", 
     1811
     1812                LogRelFlowFunc(("Source unicode %ls, cbSrc = %d\n, Byte Order Mark = %hx",
    18131813                                pvSrc, cbSrc, ((PRTUTF16)pvSrc)[0]));
    18141814                LogRelFlowFunc(("converted to win unicode %s, cbDest = %d, rc = %Rrc\n", pvDest, cbDest, rc));
     
    19241924            getSelectionValue(pCtx, pCtx->X11HTMLFormat, pReq);
    19251925    }
    1926     else   
     1926    else
    19271927        rc = VERR_NOT_IMPLEMENTED;
    19281928    if (RT_FAILURE(rc))
     
    28172817#endif /* SMOKETEST defined */
    28182818
    2819                    
  • trunk/src/VBox/Installer/linux/vboxdrv.sh

    r62414 r62471  
    343343
    344344# enter the following variables in /etc/default/virtualbox:
    345 #   SHUTDOWN_USERS="foo bar" 
     345#   SHUTDOWN_USERS="foo bar"
    346346#     check for running VMs of user foo and user bar
    347347#   SHUTDOWN=poweroff
  • trunk/src/VBox/Installer/solaris/Makefile.kmk

    r61998 r62471  
    357357          plugins/platforms/libqxcb.so \
    358358          $(if $(VBOX_GUI_USE_QGL),libQt5OpenGLVBox.so.5,)
    359   endif 
     359  endif
    360360 else # VBOX_WITH_QTGUI_V5
    361361  ifdef VBOX_WITH_ORACLE_QT
     
    447447 SOLARIS_QTLIBS =
    448448 ifdef VBOX_WITH_QTGUI
    449   ifdef VBOX_WITH_ORACLE_QT 
     449  ifdef VBOX_WITH_ORACLE_QT
    450450    SOLARIS_QTLIBS += \
    451451          libQtXmlVBox.so.4 \
  • trunk/src/VBox/Installer/solaris/vboxconfig.sh

    r61918 r62471  
    11961196        if test "$HOST_OS_MAJORVERSION" -eq 10; then
    11971197            for lib in `ls -1 /opt/VirtualBox/legacy/`; do
    1198                /usr/sbin/installf -c none $PKGINST /opt/VirtualBox/$lib=legacy/$lib s 
    1199             done       
     1198               /usr/sbin/installf -c none $PKGINST /opt/VirtualBox/$lib=legacy/$lib s
     1199            done
    12001200            for lib in `ls -1 /opt/VirtualBox/amd64/legacy/`; do
    1201                 /usr/sbin/installf -c none $PKGINST /opt/VirtualBox/amd64/$lib=legacy/$lib s 
     1201                /usr/sbin/installf -c none $PKGINST /opt/VirtualBox/amd64/$lib=legacy/$lib s
    12021202            done
    12031203        fi
  • trunk/src/VBox/Storage/ISCSI.cpp

    r62004 r62471  
    35103510                            iscsiReattach(pImage);
    35113511                        }
    3512    
     3512
    35133513                        /* If there is no connection complete the command with an error. */
    35143514                        if (RT_LIKELY(iscsiIsClientConnected(pImage)))
  • trunk/src/VBox/Storage/VD.cpp

    r62214 r62471  
    46694669
    46704670                        rc = pVDIo->pInterfaceIo->pfnWriteSync(pVDIo->pInterfaceIo->Core.pvUser,
    4671                                                                pIoStorage->pStorage, cbSizeCur + uOff, 
     4671                                                               pIoStorage->pStorage, cbSizeCur + uOff,
    46724672                                                               pvBuf, cbChunk, NULL);
    46734673                        if (RT_SUCCESS(rc))
  • trunk/src/VBox/Storage/testcase/tstVDFill.cpp

    r61731 r62471  
    2828#include <iprt/getopt.h>
    2929#include <iprt/rand.h>
     30
    3031
    3132/*********************************************************************************************************************************
  • trunk/src/VBox/ValidationKit/bootsectors/bs3-fpustate-1.c

    r61385 r62471  
    8383}
    8484
    85 
    86 
  • trunk/src/VBox/ValidationKit/bootsectors/bs3kit/VBoxBs3ObjConverter.cpp

    r62450 r62471  
    50645064}
    50655065
    5066 
  • trunk/src/VBox/ValidationKit/bootsectors/bs3kit/bs3-c16-TrapRmV86Data.c

    r60585 r62471  
    2525 */
    2626
     27
    2728/*********************************************************************************************************************************
    2829*   Header Files                                                                                                                 *
  • trunk/src/VBox/ValidationKit/bootsectors/bs3kit/bs3-cmn-MemAlloc.c

    r60676 r62471  
    2424 * terms and conditions of either the GPL or the CDDL or both.
    2525 */
     26
    2627
    2728/*********************************************************************************************************************************
  • trunk/src/VBox/ValidationKit/bootsectors/bs3kit/bs3-cmn-MemAllocZ.c

    r60527 r62471  
    2525 */
    2626
     27
    2728/*********************************************************************************************************************************
    2829*   Header Files                                                                                                                 *
  • trunk/src/VBox/ValidationKit/bootsectors/bs3kit/bs3-cmn-MemFree.c

    r60527 r62471  
    2424 * terms and conditions of either the GPL or the CDDL or both.
    2525 */
     26
    2627
    2728/*********************************************************************************************************************************
  • trunk/src/VBox/ValidationKit/bootsectors/bs3kit/bs3-cmn-MemGuardedTestPage.c

    r60676 r62471  
    2424 * terms and conditions of either the GPL or the CDDL or both.
    2525 */
     26
    2627
    2728/*********************************************************************************************************************************
  • trunk/src/VBox/ValidationKit/bootsectors/bs3kit/bs3-cmn-MemMove.c

    r60527 r62471  
    7777}
    7878
    79 
    80 
    81 
  • trunk/src/VBox/ValidationKit/bootsectors/bs3kit/bs3-cmn-PagingAlias.c

    r60686 r62471  
    2424 * terms and conditions of either the GPL or the CDDL or both.
    2525 */
     26
    2627
    2728/*********************************************************************************************************************************
  • trunk/src/VBox/ValidationKit/bootsectors/bs3kit/bs3-cmn-PagingInitRootForLM.c

    r60527 r62471  
    2424 * terms and conditions of either the GPL or the CDDL or both.
    2525 */
     26
    2627
    2728/*********************************************************************************************************************************
  • trunk/src/VBox/ValidationKit/bootsectors/bs3kit/bs3-cmn-PagingInitRootForPAE.c

    r61393 r62471  
    2424 * terms and conditions of either the GPL or the CDDL or both.
    2525 */
     26
    2627
    2728/*********************************************************************************************************************************
  • trunk/src/VBox/ValidationKit/bootsectors/bs3kit/bs3-cmn-PagingInitRootForPP.c

    r61393 r62471  
    2424 * terms and conditions of either the GPL or the CDDL or both.
    2525 */
     26
    2627
    2728/*********************************************************************************************************************************
  • trunk/src/VBox/ValidationKit/bootsectors/bs3kit/bs3-cmn-PagingProtect.c

    r60778 r62471  
    2525 */
    2626
     27
    2728/*********************************************************************************************************************************
    2829*   Header Files                                                                                                                 *
  • trunk/src/VBox/ValidationKit/bootsectors/bs3kit/bs3-cmn-PagingSetupCanonicalTraps.c

    r60682 r62471  
    2424 * terms and conditions of either the GPL or the CDDL or both.
    2525 */
     26
    2627
    2728/*********************************************************************************************************************************
  • trunk/src/VBox/ValidationKit/bootsectors/bs3kit/bs3-cmn-PicSetup.c

    r61389 r62471  
    2424 * terms and conditions of either the GPL or the CDDL or both.
    2525 */
     26
    2627
    2728/*********************************************************************************************************************************
  • trunk/src/VBox/ValidationKit/bootsectors/bs3kit/bs3-cmn-PicUpdateMask.c

    r61389 r62471  
    2525 */
    2626
     27
    2728/*********************************************************************************************************************************
    2829*   Header Files                                                                                                                 *
  • trunk/src/VBox/ValidationKit/bootsectors/bs3kit/bs3-cmn-PitIrqHandler.c

    r61389 r62471  
    2424 * terms and conditions of either the GPL or the CDDL or both.
    2525 */
     26
    2627
    2728/*********************************************************************************************************************************
  • trunk/src/VBox/ValidationKit/bootsectors/bs3kit/bs3-cmn-RegCtxConvertToRingX.c

    r60527 r62471  
    2424 * terms and conditions of either the GPL or the CDDL or both.
    2525 */
     26
    2627
    2728/*********************************************************************************************************************************
  • trunk/src/VBox/ValidationKit/bootsectors/bs3kit/bs3-cmn-RegCtxPrint.c

    r60527 r62471  
    2424 * terms and conditions of either the GPL or the CDDL or both.
    2525 */
     26
    2627
    2728/*********************************************************************************************************************************
  • trunk/src/VBox/ValidationKit/bootsectors/bs3kit/bs3-cmn-RegCtxSetGrpSegFromCurPtr.c

    r60676 r62471  
    2525 */
    2626
     27
    2728/*********************************************************************************************************************************
    2829*   Header Files                                                                                                                 *
  • trunk/src/VBox/ValidationKit/bootsectors/bs3kit/bs3-cmn-RegCtxSetGrpSegFromFlat.c

    r60678 r62471  
    2424 * terms and conditions of either the GPL or the CDDL or both.
    2525 */
     26
    2627
    2728/*********************************************************************************************************************************
  • trunk/src/VBox/ValidationKit/bootsectors/bs3kit/bs3-cmn-RegCtxSetRipCsFromCurPtr.c

    r60774 r62471  
    2525 */
    2626
     27
    2728/*********************************************************************************************************************************
    2829*   Header Files                                                                                                                 *
  • trunk/src/VBox/ValidationKit/bootsectors/bs3kit/bs3-cmn-RegCtxSetRipCsFromFlat.c

    r60774 r62471  
    2424 * terms and conditions of either the GPL or the CDDL or both.
    2525 */
     26
    2627
    2728/*********************************************************************************************************************************
  • trunk/src/VBox/ValidationKit/bootsectors/bs3kit/bs3-cmn-RegCtxSetRipCsFromLnkPtr.c

    r60676 r62471  
    2424 * terms and conditions of either the GPL or the CDDL or both.
    2525 */
     26
    2627
    2728/*********************************************************************************************************************************
  • trunk/src/VBox/ValidationKit/bootsectors/bs3kit/bs3-cmn-SlabAlloc.c

    r60527 r62471  
    2424 * terms and conditions of either the GPL or the CDDL or both.
    2525 */
     26
    2627
    2728/*********************************************************************************************************************************
  • trunk/src/VBox/ValidationKit/bootsectors/bs3kit/bs3-cmn-SlabAllocEx.c

    r60527 r62471  
    2424 * terms and conditions of either the GPL or the CDDL or both.
    2525 */
     26
    2627
    2728/*********************************************************************************************************************************
  • trunk/src/VBox/ValidationKit/bootsectors/bs3kit/bs3-cmn-SlabFree.c

    r60527 r62471  
    2424 * terms and conditions of either the GPL or the CDDL or both.
    2525 */
     26
    2627
    2728/*********************************************************************************************************************************
  • trunk/src/VBox/ValidationKit/bootsectors/bs3kit/bs3-cmn-SlabInit.c

    r60527 r62471  
    2424 * terms and conditions of either the GPL or the CDDL or both.
    2525 */
     26
    2627
    2728/*********************************************************************************************************************************
  • trunk/src/VBox/ValidationKit/bootsectors/bs3kit/bs3-cmn-SlabListAlloc.c

    r60527 r62471  
    2424 * terms and conditions of either the GPL or the CDDL or both.
    2525 */
     26
    2627
    2728/*********************************************************************************************************************************
  • trunk/src/VBox/ValidationKit/bootsectors/bs3kit/bs3-cmn-SlabListAllocEx.c

    r60527 r62471  
    2424 * terms and conditions of either the GPL or the CDDL or both.
    2525 */
     26
    2627
    2728/*********************************************************************************************************************************
  • trunk/src/VBox/ValidationKit/bootsectors/bs3kit/bs3-cmn-StrNLen.c

    r60527 r62471  
    3636}
    3737
    38 
  • trunk/src/VBox/ValidationKit/bootsectors/bs3kit/bs3-cmn-Trap16Init.c

    r60527 r62471  
    2424 * terms and conditions of either the GPL or the CDDL or both.
    2525 */
     26
    2627
    2728/*********************************************************************************************************************************
  • trunk/src/VBox/ValidationKit/bootsectors/bs3kit/bs3-cmn-Trap16SetGate.c

    r60527 r62471  
    2525 */
    2626
     27
    2728/*********************************************************************************************************************************
    2829*   Header Files                                                                                                                 *
  • trunk/src/VBox/ValidationKit/bootsectors/bs3kit/bs3-cmn-Trap32Init.c

    r60527 r62471  
    2424 * terms and conditions of either the GPL or the CDDL or both.
    2525 */
     26
    2627
    2728/*********************************************************************************************************************************
  • trunk/src/VBox/ValidationKit/bootsectors/bs3kit/bs3-cmn-Trap32SetGate.c

    r60527 r62471  
    2525 */
    2626
     27
    2728/*********************************************************************************************************************************
    2829*   Header Files                                                                                                                 *
  • trunk/src/VBox/ValidationKit/bootsectors/bs3kit/bs3-cmn-Trap64Init.c

    r60527 r62471  
    2424 * terms and conditions of either the GPL or the CDDL or both.
    2525 */
     26
    2627
    2728/*********************************************************************************************************************************
  • trunk/src/VBox/ValidationKit/bootsectors/bs3kit/bs3-cmn-Trap64SetGate.c

    r60527 r62471  
    2424 * terms and conditions of either the GPL or the CDDL or both.
    2525 */
     26
    2627
    2728/*********************************************************************************************************************************
  • trunk/src/VBox/ValidationKit/bootsectors/bs3kit/bs3-cmn-TrapDefaultHandler.c

    r60657 r62471  
    2424 * terms and conditions of either the GPL or the CDDL or both.
    2525 */
     26
    2627
    2728/*********************************************************************************************************************************
  • trunk/src/VBox/ValidationKit/bootsectors/bs3kit/bs3-cmn-TrapPrintFrame.c

    r60657 r62471  
    2424 * terms and conditions of either the GPL or the CDDL or both.
    2525 */
     26
    2627
    2728/*********************************************************************************************************************************
  • trunk/src/VBox/ValidationKit/bootsectors/bs3kit/bs3-cmn-TrapRmV86Init.c

    r60660 r62471  
    2424 * terms and conditions of either the GPL or the CDDL or both.
    2525 */
     26
    2627
    2728/*********************************************************************************************************************************
  • trunk/src/VBox/ValidationKit/bootsectors/bs3kit/bs3-cmn-TrapRmV86SetGate.c

    r60527 r62471  
    2525 */
    2626
     27
    2728/*********************************************************************************************************************************
    2829*   Header Files                                                                                                                 *
  • trunk/src/VBox/ValidationKit/bootsectors/bs3kit/bs3-cmn-TrapSetHandler.c

    r60527 r62471  
    2525 */
    2626
     27
    2728/*********************************************************************************************************************************
    2829*   Header Files                                                                                                                 *
  • trunk/src/VBox/ValidationKit/bootsectors/bs3kit/bs3-cmn-TrapSetHandlerEx.c

    r61389 r62471  
    2424 * terms and conditions of either the GPL or the CDDL or both.
    2525 */
     26
    2627
    2728/*********************************************************************************************************************************
  • trunk/src/VBox/ValidationKit/bootsectors/bs3kit/bs3-cmn-TrapSetJmpAndRestore.c

    r60527 r62471  
    2525 */
    2626
     27
    2728/*********************************************************************************************************************************
    2829*   Header Files                                                                                                                 *
  • trunk/src/VBox/ValidationKit/bootsectors/bs3kit/bs3-cmn-TrapUnsetJmp.c

    r60527 r62471  
    2525 */
    2626
     27
    2728/*********************************************************************************************************************************
    2829*   Header Files                                                                                                                 *
  • trunk/src/VBox/ValidationKit/bootsectors/bs3kit/bs3-cmn-pic-data.c

    r61389 r62471  
    2525 */
    2626
     27
    2728/*********************************************************************************************************************************
    2829*   Header Files                                                                                                                 *
  • trunk/src/VBox/ValidationKit/bootsectors/bs3kit/bs3-cmn-pit.c

    r61389 r62471  
    2424 * terms and conditions of either the GPL or the CDDL or both.
    2525 */
     26
    2627
    2728/*********************************************************************************************************************************
  • trunk/src/VBox/ValidationKit/bootsectors/bs3kit/bs3-mode-TestDoModesByOne.c

    r60749 r62471  
    6262# define CONV_TO_RM_FAR16(a_fpfn)       Bs3SelFlatCodeToRealMode( (uint32_t)(uintptr_t)(a_fpfn))
    6363#endif
     64
    6465
    6566/*********************************************************************************************************************************
  • trunk/src/VBox/ValidationKit/bootsectors/bs3kit/bs3-rm-InitGdt.c

    r60578 r62471  
    2424 * terms and conditions of either the GPL or the CDDL or both.
    2525 */
     26
    2627
    2728/*********************************************************************************************************************************
  • trunk/src/VBox/ValidationKit/bootsectors/bs3kit/bs3-rm-InitMemory.c

    r61385 r62471  
    2424 * terms and conditions of either the GPL or the CDDL or both.
    2525 */
     26
    2627
    2728/*********************************************************************************************************************************
  • trunk/src/VBox/ValidationKit/testboxscript/testboxscript_real.py

    r62072 r62471  
    10341034    sys.exit(TestBoxScript.main());
    10351035
    1036 
  • trunk/src/VBox/ValidationKit/testmanager/core/failurecategory.py

    r61286 r62471  
    373373        return True;
    374374
    375 
  • trunk/src/VBox/ValidationKit/testmanager/core/failurereason.py

    r61424 r62471  
    561561        return True;
    562562
    563 
  • trunk/src/VBox/ValidationKit/testmanager/db/partial-db-dump.py

    r61406 r62471  
    342342    sys.exit(PartialDbDump().main());
    343343
    344 
  • trunk/src/VBox/ValidationKit/testmanager/webui/wuitestresultfailure.py

    r61278 r62471  
    9999        return aoActions;
    100100
    101 
    102 
  • trunk/src/VBox/ValidationKit/utils/usb/UsbTest.cpp

    r60896 r62471  
    5858*   Defined Constants And Macros                                                                                                 *
    5959*********************************************************************************************************************************/
     60
    6061
    6162/*********************************************************************************************************************************
     
    152153    USBTESTSPEED_SUPER
    153154} USBTESTSPEED;
     155
    154156
    155157/*********************************************************************************************************************************
  • trunk/src/VBox/ValidationKit/utils/usb/UsbTestService.cpp

    r61882 r62471  
    106106/** Pointer to a UTS client instance. */
    107107typedef UTSCLIENT *PUTSCLIENT;
     108
    108109
    109110/*********************************************************************************************************************************
     
    609610                     || RTStrICmp(pszVal, "false"))
    610611                pCfgItem->Val.u.f = false;
    611             else 
     612            else
    612613                rc = VERR_INVALID_PARAMETER;
    613614            break;
     
    11921193    while (!g_fTerminate)
    11931194    {
    1194         /* 
     1195        /*
    11951196         * Wait for new connection and spin off a new thread
    11961197         * for every new client.
  • trunk/src/VBox/ValidationKit/utils/usb/UsbTestServiceGadget.cpp

    r61024 r62471  
    3838
    3939#include "UsbTestServiceGadgetInternal.h"
     40
    4041
    4142/*********************************************************************************************************************************
  • trunk/src/VBox/ValidationKit/utils/usb/UsbTestServiceGadget.h

    r60517 r62471  
    3636typedef struct UTSGADGETHOSTINT *UTSGADGETHOST;
    3737/** Pointer to a gadget host handle. */
    38 typedef UTSGADGETHOST *PUTSGADGETHOST; 
     38typedef UTSGADGETHOST *PUTSGADGETHOST;
    3939
    4040/** NIL gadget host handle. */
  • trunk/src/VBox/ValidationKit/utils/usb/UsbTestServiceGadgetClassTest.cpp

    r61024 r62471  
    4848#include "UsbTestServiceGadgetInternal.h"
    4949#include "UsbTestServicePlatform.h"
     50
    5051
    5152/*********************************************************************************************************************************
  • trunk/src/VBox/ValidationKit/utils/usb/UsbTestServiceGadgetHost.cpp

    r61024 r62471  
    4040#include "UsbTestServiceGadgetHostInternal.h"
    4141
     42
    4243/*********************************************************************************************************************************
    4344*   Constants And Macros, Structures and Typedefs                                                                                *
     
    6970    &g_UtsGadgetHostIfUsbIp,
    7071};
     72
    7173
    7274/*********************************************************************************************************************************
  • trunk/src/VBox/ValidationKit/utils/usb/UsbTestServiceGadgetHostUsbIp.cpp

    r61024 r62471  
    4545#include "UsbTestServicePlatform.h"
    4646
     47
    4748/*********************************************************************************************************************************
    4849*   Constants And Macros, Structures and Typedefs                                                                                *
     
    6061/** Default port of the USB/IP server. */
    6162#define UTS_GADGET_HOST_USBIP_PORT_DEF 3240
     63
    6264
    6365/*********************************************************************************************************************************
  • trunk/src/VBox/ValidationKit/utils/usb/UsbTestServiceInternal.h

    r60488 r62471  
    116116     * @returns IPRT status code.
    117117     * @param   hPollSet            The poll set to add them to.
    118      * @paramm  pClient             The transport client structure. 
     118     * @paramm  pClient             The transport client structure.
    119119     * @param   idStart             The handle ID to start at.
    120120     */
     
    126126     * @returns IPRT status code.
    127127     * @param   hPollSet            The poll set to remove from.
    128      * @paramm  pClient             The transport client structure. 
     128     * @paramm  pClient             The transport client structure.
    129129     * @param   idStart             The handle ID to remove.
    130130     */
     
    142142     *          receive call.
    143143     *
    144      * @paramm  pClient             The transport client structure. 
     144     * @paramm  pClient             The transport client structure.
    145145     * @param   ppPktHdr            Where to return the pointer to the packet we've
    146146     *                              read.  This is allocated from the heap using
     
    158158     * @retval  VERR_INTERRUPTED if interrupted before anything was sent.
    159159     *
    160      * @paramm  pClient             The transport client structure. 
     160     * @paramm  pClient             The transport client structure.
    161161     * @param   pPktHdr             The packet to send.  The size is given by
    162162     *                              aligning the size in the header by
     
    168168     * Sends a babble packet and disconnects the client (if applicable).
    169169     *
    170      * @paramm  pClient             The transport client structure. 
     170     * @paramm  pClient             The transport client structure.
    171171     * @param   pPktHdr             The packet to send.  The size is given by
    172172     *                              aligning the size in the header by
     
    179179     * Notification about a client HOWDY.
    180180     *
    181      * @paramm  pClient             The transport client structure. 
     181     * @paramm  pClient             The transport client structure.
    182182     */
    183183    DECLR3CALLBACKMEMBER(void, pfnNotifyHowdy, (PUTSTRANSPORTCLIENT pClient));
     
    189189     * client at this point.
    190190     *
    191      * @paramm  pClient             The transport client structure. 
     191     * @paramm  pClient             The transport client structure.
    192192     */
    193193    DECLR3CALLBACKMEMBER(void, pfnNotifyBye, (PUTSTRANSPORTCLIENT pClient));
  • trunk/src/VBox/ValidationKit/utils/usb/UsbTestServicePlatform-linux.cpp

    r61024 r62471  
    4646#include "UsbTestServicePlatform.h"
    4747
     48
    4849/*********************************************************************************************************************************
    4950*   Constants And Macros, Structures and Typedefs                                                                                *
     
    8889/** Pointer to a dummy HCD entry. */
    8990typedef UTSPLATFORMLNXDUMMYHCD *PUTSPLATFORMLNXDUMMYHCD;
     91
    9092
    9193/*********************************************************************************************************************************
  • trunk/src/VBox/ValidationKit/utils/usb/UsbTestServiceTcp.cpp

    r60488 r62471  
    7373    uint8_t             *pbTcpStashed;
    7474} UTSTRANSPORTCLIENT;
     75
    7576
    7677/*********************************************************************************************************************************
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