Searched defs:strKey (Results 1 - 19 of 19) sorted by relevance

/vbox/src/VBox/Frontends/VirtualBox/src/net/
H A DUIUpdateDefs.h29 VBoxUpdateDay(const QString &strVal, const QString &strKey) argument
30 : val(strVal), key(strKey) {}
/vbox/src/VBox/Frontends/VirtualBox/src/runtime/
H A DUIAddDiskEncryptionPasswordDialog.cpp381 const QString strKey = m_encryptionPasswords.keys().at(iRow); local
382 m_encryptionPasswords[strKey] = strPassword;
384 const QString strMediumId = m_encryptedMediums.values(strKey).first();
386 m_encryptionPasswordStatus[strKey] = fPasswordStatus;
H A DUIMenuBarEditorWindow.cpp691 const QString strKey = gpConverter->toInternalString(enumValue); local
692 if (!m_actions.contains(strKey))
695 m_actions.value(strKey)->setChecked(!(restrictionsMenuBar & enumValue));
734 const QString strKey = gpConverter->toInternalString(enumValue); local
735 if (!m_actions.contains(strKey))
738 m_actions.value(strKey)->setChecked(!(restrictionsMenuApplication & enumValue));
763 const QString strKey = gpConverter->toInternalString(enumValue); local
764 if (!m_actions.contains(strKey))
767 m_actions.value(strKey)->setChecked(!(restrictionsMenuMachine & enumValue));
792 const QString strKey local
821 const QString strKey = gpConverter->toInternalString(enumValue); local
850 const QString strKey = gpConverter->toInternalString(enumValue); local
880 const QString strKey = gpConverter->toInternalString(enumValue); local
911 const QString strKey = gpConverter->toInternalString(enumValue); local
941 const QString strKey = gpConverter->toInternalString(enumValue); local
[all...]
H A DUIMachineLogic.cpp2439 foreach (const QString &strKey, encryptionPasswords.keys()) argument
2441 console().AddDiskEncryptionPassword(strKey, encryptionPasswords.value(strKey), false);
/vbox/src/VBox/Frontends/VirtualBox/src/settings/global/
H A DUIGlobalSettingsInput.h38 UIShortcutCacheItem(const QString &strKey, argument
42 : key(strKey)
/vbox/src/VBox/Frontends/VirtualBox/src/medium/
H A DUIMedium.h162 /** Defines the medium cache @a strKey. */
163 void setKey(const QString &strKey) { m_strKey = strKey; } argument
/vbox/src/VBox/Frontends/VirtualBox/src/settings/machine/
H A DUIMachineSettingsNetwork.cpp1217 QString strKey = strLine.left(iSplitPos); local
1219 adapter.SetProperty(strKey, strVal);
1220 hash[strKey] = strVal;
/vbox/src/VBox/Frontends/VBoxManage/
H A DVBoxManageAppliance.cpp60 const Utf8Str &strKey)
65 it = pmapArgs->find(strKey);
58 findArgValue(Utf8Str &strOut, ArgsMap *pmapArgs, const Utf8Str &strKey) argument
/vbox/src/VBox/Main/src-client/
H A DGuestCtrlPrivate.cpp132 Utf8Str GuestEnvironment::Get(const Utf8Str &strKey) argument
134 std::map <Utf8Str, Utf8Str>::const_iterator itEnv = mEnvironment.find(strKey);
141 bool GuestEnvironment::Has(const Utf8Str &strKey) argument
143 std::map <Utf8Str, Utf8Str>::const_iterator itEnv = mEnvironment.find(strKey);
147 int GuestEnvironment::Set(const Utf8Str &strKey, const Utf8Str &strValue) argument
150 if (strKey.isEmpty())
154 const char *pszString = strKey.c_str();
164 mEnvironment[strKey] = strValue;
181 Utf8Str strKey = listPair.at(p++); local
182 if ( strKey
206 Unset(const Utf8Str &strKey) argument
[all...]
H A DConsoleImpl2.cpp1594 Utf8Str strKey; local
1595 rc = getSmcDeviceKey(virtualBox, pMachine, &strKey, &fGetKeyFromRealSMC);
1598 InsertConfigString(pCfg, "DeviceKey", strKey);
3357 const Utf8Str &strKey = *it; local
3362 if (!strKey.startsWith("VBoxInternal/"))
3365 const char *pszExtraDataKey = strKey.c_str() + sizeof("VBoxInternal/") - 1;
3371 hrc = pVirtualBox->GetExtraData(Bstr(strKey).raw(),
3374 hrc = pMachine->GetExtraData(Bstr(strKey).raw(),
3377 LogRel(("Warning: Cannot get extra data key %s, rc = %Rhrc\n", strKey.c_str(), hrc));
3495 Utf8Str strKey(aGlobalExtraDataKey
4509 com::Utf8Str strKey; local
[all...]
H A DConsoleImpl.cpp324 Bstr strKey; local
331 hrc = pEDCEv->COMGETTER(Key)(strKey.asOutParam());
337 mConsole->i_onExtraDataChange(strMachineId.raw(), strKey.raw(), strVal.raw());
5682 Bstr strKey(aKey);
5685 if (strKey == "VBoxInternal2/TurnResetIntoPowerOff")
/vbox/src/VBox/Frontends/VBoxHeadless/
H A DVBoxHeadless.cpp184 Bstr strKey; local
185 hrc = pChangedEvent->COMGETTER(Name)(strKey.asOutParam());
192 Utf8Str utf8Key = strKey;
/vbox/src/VBox/Main/src-server/
H A DHostImpl.cpp424 Utf8Str strKey = aGlobalExtraDataKeys[i]; local
426 if (!strKey.startsWith("HostOnly/vboxnet"))
429 size_t pos = strKey.find("/", sizeof("HostOnly/vboxnet"));
431 aConfiguredNames.insert(strKey.substr(sizeof("HostOnly"),
H A DMediumImpl.cpp6896 com::Utf8Str strKey; local
6902 rc = strKey.assignEx(aName, offSlash + 1, aName.length() - offSlash - 1); /* Skip slash */
6914 if (strKey.equals(paConfig->pszKey))
H A DVirtualBoxImpl.cpp1296 com::Utf8Str strKey, strValue; local
1297 uPos = aCreateFlags.parseKeyValue(strKey, strValue, uPos);
1299 if (strKey == "UUID")
1301 else if (strKey == "directoryIncludesUUID")
1482 Utf8Str strKey(strFlag.c_str(), pcszEqual - strFlag.c_str());
1485 if (strKey == "UUID")
1487 else if (strKey == "forceOverwrite")
1489 else if (strKey == "directoryIncludesUUID")
1974 Utf8Str strKey(aKey);
1989 settings::StringsMap::const_iterator it = m->pMainConfigFile->mapExtraDataItems.find(strKey);
[all...]
H A DMachineImpl.cpp8067 Utf8Str Machine::i_getExtraData(const Utf8Str &strKey) argument
8074 settings::StringsMap::const_iterator it = mData->pMachineConfigFile->mapExtraDataItems.find(strKey);
/vbox/src/VBox/Frontends/VirtualBox/src/globals/
H A DUIMessageCenter.cpp523 void UIMessageCenter::cannotSetExtraData(const CVirtualBox &vbox, const QString &strKey, const QString &strValue) argument
527 .arg(strKey, strValue),
531 void UIMessageCenter::cannotSetExtraData(const CMachine &machine, const QString &strKey, const QString &strValue) argument
535 .arg(strKey, CMachine(machine).GetName(), strValue),
H A DVBoxGlobal.cpp3374 QString VBoxGlobal::insertKeyToActionText(const QString &strText, const QString &strKey) argument
3381 if ( strKey.isEmpty()
3382 || strKey.compare("None", Qt::CaseInsensitive) == 0)
3385 return pattern.arg(strText).arg(QKeySequence(strKey).toString(QKeySequence::NativeText));
/vbox/src/VBox/Frontends/VirtualBox/src/extradata/
H A DUIExtraDataManager.cpp91 void sigExtraDataChange(QString strMachineID, QString strKey, QString strValue);
101 void sltPreprocessExtraDataCanChange(QString strMachineID, QString strKey, QString strValue, bool &fVeto, QString &strVetoReason);
103 void sltPreprocessExtraDataChange(QString strMachineID, QString strKey, QString strValue);
116 void UIExtraDataEventHandler::sltPreprocessExtraDataCanChange(QString strMachineID, QString strKey, QString strValue, bool &fVeto, QString &strVetoReason) argument
121 if (strKey.startsWith("GUI/"))
126 if (gs.setPublicProperty(strKey, strValue))
141 void UIExtraDataEventHandler::sltPreprocessExtraDataChange(QString strMachineID, QString strKey, QString strValue) argument
146 if (strKey.startsWith("GUI/"))
150 vboxGlobal().settings().setPublicProperty(strKey, strValue);
157 emit sigExtraDataChange(strMachineID, strKey, strValu
664 sltExtraDataChange(QString strID, QString strKey, QString strValue) argument
1698 addDataItem(const QString &strKey, const QString &strValue, const int iPosition ) argument
1876 extraDataString(const QString &strKey, const QString &strID ) argument
1893 setExtraDataString(const QString &strKey, const QString &strValue, const QString &strID ) argument
1947 extraDataStringList(const QString &strKey, const QString &strID ) argument
1965 setExtraDataStringList(const QString &strKey, const QStringList &value, const QString &strID ) argument
2479 QString strKey; local
2513 QString strKey; local
2531 QString strKey; local
3077 const QString strKey = extraDataKeyPerScreen(GUI_LastGuestSizeHint, uScreenIndex); local
3101 const QString strKey = extraDataKeyPerScreen(GUI_LastGuestSizeHint, uScreenIndex); local
3115 const QString strKey = extraDataKeyPerScreen(GUI_LastGuestSizeHintWasFullscreen, uScreenIndex); local
3124 const QString strKey = extraDataKeyPerScreen(GUI_LastGuestSizeHintWasFullscreen, uScreenIndex); local
3133 const QString strKey = extraDataKeyPerScreen(GUI_VirtualScreenToHostScreen, iGuestScreenIndex, true); local
3147 const QString strKey = extraDataKeyPerScreen(GUI_VirtualScreenToHostScreen, iGuestScreenIndex, true); local
3617 sltExtraDataChange(QString strMachineID, QString strKey, QString strValue) argument
3811 isFeatureAllowed(const QString &strKey, const QString &strID ) argument
3832 isFeatureRestricted(const QString &strKey, const QString &strID ) argument
[all...]

Completed in 220 milliseconds