VirtualBox

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


Ignore:
Timestamp:
Jun 29, 2016 12:37:43 PM (9 years ago)
Author:
vboxsync
svn:sync-xref-src-repo-rev:
108369
Message:

i_setVMRuntimeErrorCallback -> i_atVMRuntimeErrorCallback - ambigious name (it's not setting the callback).

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

Legend:

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

    r61610 r61930  
    736736                                                            const char *pszErrorFmt, va_list va);
    737737
    738     void                        i_setVMRuntimeErrorCallbackF(uint32_t fFatal, const char *pszErrorId, const char *pszFormat, ...);
    739     static DECLCALLBACK(void)   i_setVMRuntimeErrorCallback(PUVM pUVM, void *pvUser, uint32_t fFatal,
    740                                                             const char *pszErrorId, const char *pszFormat, va_list va);
     738    void                        i_atVMRuntimeErrorCallbackF(uint32_t fFatal, const char *pszErrorId, const char *pszFormat, ...);
     739    static DECLCALLBACK(void)   i_atVMRuntimeErrorCallback(PUVM pUVM, void *pvUser, uint32_t fFatal,
     740                                                           const char *pszErrorId, const char *pszFormat, va_list va);
    741741
    742742    HRESULT                     i_captureUSBDevices(PUVM pUVM);
  • trunk/src/VBox/Main/src-client/ConsoleImpl.cpp

    r61644 r61930  
    80308030        rc = rc2;
    80318031        if (online)
    8032             i_setVMRuntimeErrorCallbackF(0, "BrokenSharedFolder",
    8033                                          N_("Broken shared folder!"));
     8032            i_atVMRuntimeErrorCallbackF(0, "BrokenSharedFolder", N_("Broken shared folder!"));
    80348033    }
    80358034
     
    92379236
    92389237/**
    9239  * VM runtime error callback function.
     9238 * VM runtime error callback function (FNVMATRUNTIMEERROR).
     9239 *
    92409240 * See VMSetRuntimeError for the detailed description of parameters.
    92419241 *
     
    92509250 */
    92519251/* static */ DECLCALLBACK(void)
    9252 Console::i_setVMRuntimeErrorCallback(PUVM pUVM, void *pvUser, uint32_t fFlags,
    9253                                      const char *pszErrorId,
    9254                                      const char *pszFormat, va_list va)
     9252Console::i_atVMRuntimeErrorCallback(PUVM pUVM, void *pvUser, uint32_t fFlags,
     9253                                    const char *pszErrorId, const char *pszFormat, va_list va)
    92559254{
    92569255    bool const fFatal = !!(fFlags & VMSETRTERR_FLAGS_FATAL);
     
    96799678                        {
    96809679                            ErrorInfoKeeper eik;
    9681                             pConsole->i_setVMRuntimeErrorCallbackF(0, "BrokenSharedFolder",
     9680                            pConsole->i_atVMRuntimeErrorCallbackF(0, "BrokenSharedFolder",
    96829681                                   N_("The shared folder '%s' could not be set up: %ls.\n"
    96839682                                      "The shared folder setup will not be complete. It is recommended to power down the virtual "
  • trunk/src/VBox/Main/src-client/ConsoleImpl2.cpp

    r61913 r61930  
    33133313     * Register VM runtime error handler.
    33143314     */
    3315     rc2 = VMR3AtRuntimeErrorRegister(pUVM, Console::i_setVMRuntimeErrorCallback, this);
     3315    rc2 = VMR3AtRuntimeErrorRegister(pUVM, Console::i_atVMRuntimeErrorCallback, this);
    33163316    AssertRC(rc2);
    33173317    if (RT_SUCCESS(rc))
     
    37073707 * Ellipsis to va_list wrapper for calling setVMRuntimeErrorCallback.
    37083708 */
    3709 void Console::i_setVMRuntimeErrorCallbackF(uint32_t fFlags, const char *pszErrorId, const char *pszFormat, ...)
     3709void Console::i_atVMRuntimeErrorCallbackF(uint32_t fFlags, const char *pszErrorId, const char *pszFormat, ...)
    37103710{
    37113711    va_list va;
    37123712    va_start(va, pszFormat);
    3713     i_setVMRuntimeErrorCallback(NULL, this, fFlags, pszErrorId, pszFormat, va);
     3713    i_atVMRuntimeErrorCallback(NULL, this, fFlags, pszErrorId, pszFormat, va);
    37143714    va_end(va);
    37153715}
     
    39853985                    const char *pszUnit;
    39863986                    uint64_t u64Print = formatDiskSize((uint64_t)i64Size, &pszUnit);
    3987                     i_setVMRuntimeErrorCallbackF(0, "FatPartitionDetected",
     3987                    i_atVMRuntimeErrorCallbackF(0, "FatPartitionDetected",
    39883988                            N_("The medium '%ls' has a logical size of %RU64%s "
    39893989                            "but the file system the medium is located on seems "
     
    40164016                            uint64_t u64PrintSiz = formatDiskSize((LONG64)i64Size, &pszUnitSiz);
    40174017                            uint64_t u64PrintMax = formatDiskSize(maxSize, &pszUnitMax);
    4018                             i_setVMRuntimeErrorCallbackF(0, "FatPartitionDetected", /* <= not exact but ... */
     4018                            i_atVMRuntimeErrorCallbackF(0, "FatPartitionDetected", /* <= not exact but ... */
    40194019                                    N_("The medium '%ls' has a logical size of %RU64%s "
    40204020                                    "but the file system the medium is located on can "
     
    40394039                    const char *pszUnit;
    40404040                    uint64_t u64Print = formatDiskSize(i64Size, &pszUnit);
    4041                     i_setVMRuntimeErrorCallbackF(0, "FatPartitionDetected",
     4041                    i_atVMRuntimeErrorCallbackF(0, "FatPartitionDetected",
    40424042#ifdef RT_OS_WINDOWS
    40434043                            N_("The snapshot folder of this VM '%ls' seems to be located on "
     
    40804080                        || enmFsTypeFile == RTFSTYPE_XFS)
    40814081                    {
    4082                         i_setVMRuntimeErrorCallbackF(0, "Ext4PartitionDetected",
     4082                        i_atVMRuntimeErrorCallbackF(0, "Ext4PartitionDetected",
    40834083                                N_("The host I/O cache for at least one controller is disabled "
    40844084                                   "and the medium '%ls' for this VM "
     
    40974097                             && !mfSnapshotFolderExt4WarningShown)
    40984098                    {
    4099                         i_setVMRuntimeErrorCallbackF(0, "Ext4PartitionDetected",
     4099                        i_atVMRuntimeErrorCallbackF(0, "Ext4PartitionDetected",
    41004100                                N_("The host I/O cache for at least one controller is disabled "
    41014101                                   "and the snapshot folder for this VM "
     
    43314331                    Bstr loc;
    43324332                    hrc = pMedium->COMGETTER(Location)(loc.asOutParam());                   H();
    4333                     i_setVMRuntimeErrorCallbackF(0, "DvdOrFloppyImageInaccessible",
    4334                                                  "The image file '%ls' is inaccessible and is being ignored. "
    4335                                                  "Please select a different image file for the virtual %s drive.",
    4336                                                  loc.raw(),
    4337                                                  enmType == DeviceType_DVD ? "DVD" : "floppy");
     4333                    i_atVMRuntimeErrorCallbackF(0, "DvdOrFloppyImageInaccessible",
     4334                                                "The image file '%ls' is inaccessible and is being ignored. "
     4335                                                "Please select a different image file for the virtual %s drive.",
     4336                                                loc.raw(),
     4337                                                enmType == DeviceType_DVD ? "DVD" : "floppy");
    43384338                    pMedium = NULL;
    43394339                }
     
    51115111                        if (ioctl(iSock, SIOCGIFFLAGS, &Req) >= 0)
    51125112                            if ((Req.ifr_flags & IFF_UP) == 0)
    5113                                 i_setVMRuntimeErrorCallbackF(0, "BridgedInterfaceDown",
     5113                                i_atVMRuntimeErrorCallbackF(0, "BridgedInterfaceDown",
    51145114                                     N_("Bridged interface %s is down. Guest will not be able to use this interface"),
    51155115                                     pszBridgedIfName);
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