Lines Matching refs:aValue

2134 HRESULT Machine::getCPUProperty(CPUPropertyType_T aProperty, BOOL *aValue)
2141 *aValue = mHWData->mPAEEnabled;
2145 *aValue = mHWData->mSyntheticCpu;
2150 *aValue = TRUE;
2152 *aValue = FALSE;
2155 *aValue = TRUE;
2159 *aValue = FALSE;
2172 hrc2 = ptrHost->GetProcessorFeature(ProcessorFeature_LongMode, aValue); AssertComRC(hrc2);
2174 *aValue = FALSE;
2182 *aValue = mHWData->mTripleFaultReset;
2191 HRESULT Machine::setCPUProperty(CPUPropertyType_T aProperty, BOOL aValue)
2203 mHWData->mPAEEnabled = !!aValue;
2209 mHWData->mSyntheticCpu = !!aValue;
2215 mHWData->mLongMode = !aValue ? settings::Hardware::LongMode_Disabled : settings::Hardware::LongMode_Enabled;
2221 mHWData->mTripleFaultReset = !!aValue;
2415 HRESULT Machine::getHWVirtExProperty(HWVirtExPropertyType_T aProperty, BOOL *aValue)
2422 *aValue = mHWData->mHWVirtExEnabled;
2426 *aValue = mHWData->mHWVirtExVPIDEnabled;
2430 *aValue = mHWData->mHWVirtExNestedPagingEnabled;
2434 *aValue = mHWData->mHWVirtExUXEnabled;
2438 *aValue = mHWData->mHWVirtExLargePagesEnabled;
2440 *aValue = FALSE;
2445 *aValue = mHWData->mHWVirtExForceEnabled;
2454 HRESULT Machine::setHWVirtExProperty(HWVirtExPropertyType_T aProperty, BOOL aValue)
2466 mHWData->mHWVirtExEnabled = !!aValue;
2472 mHWData->mHWVirtExVPIDEnabled = !!aValue;
2478 mHWData->mHWVirtExNestedPagingEnabled = !!aValue;
2484 mHWData->mHWVirtExUXEnabled = !!aValue;
2490 mHWData->mHWVirtExLargePagesEnabled = !!aValue;
2496 mHWData->mHWVirtExForceEnabled = !!aValue;
4891 com::Utf8Str &aValue)
4894 aValue = "";
4901 aValue = it->second; // source is a Utf8Str
4910 HRESULT Machine::setExtraData(const com::Utf8Str &aKey, const com::Utf8Str &aValue)
4942 if ((fChanged = (strOldValue != aValue)))
4948 Bstr bstrValue(aValue);
4959 aValue.c_str(),
4967 if (aValue.isEmpty())
4970 mData->pMachineConfigFile->mapExtraDataItems[aKey] = aValue;
4990 mParent->i_onExtraDataChange(mData->mUuid, Bstr(aKey).raw(), Bstr(aValue).raw());
5581 com::Utf8Str &aValue,
5593 aValue = it->second.strValue;
5609 com::Utf8Str &aValue,
5632 aValue = bValue;
5640 com::Utf8Str &aValue,
5648 HRESULT rc = i_getGuestPropertyFromVM(aName, aValue, aTimestamp, aFlags);
5652 rc = i_getGuestPropertyFromService(aName, aValue, aTimestamp, aFlags);
5657 HRESULT Machine::getGuestPropertyValue(const com::Utf8Str &aProperty, com::Utf8Str &aValue)
5661 HRESULT rc = getGuestProperty(aProperty, aValue, &dummyTimestamp, dummyFlags);
5665 HRESULT Machine::getGuestPropertyTimestamp(const com::Utf8Str &aProperty, LONG64 *aValue)
5669 HRESULT rc = getGuestProperty(aProperty, dummyValue, aValue, dummyFlags);
5677 HRESULT Machine::i_setGuestPropertyToService(const com::Utf8Str &aName, const com::Utf8Str &aValue,
5704 prop.strValue = Bstr(aValue).raw();
5729 it->second.strValue = aValue;
5752 Bstr(aValue).raw(),
5770 HRESULT Machine::i_setGuestPropertyToVM(const com::Utf8Str &aName, const com::Utf8Str &aValue,
5790 rc = directControl->AccessGuestProperty(Bstr(aName).raw(), Bstr(aValue).raw(), Bstr(aFlags).raw(),
5803 HRESULT Machine::setGuestProperty(const com::Utf8Str &aProperty, const com::Utf8Str &aValue,
5809 HRESULT rc = i_setGuestPropertyToVM(aProperty, aValue, aFlags, /* fDelete = */ false);
5812 rc = i_setGuestPropertyToService(aProperty, aValue, aFlags, /* fDelete = */ false);
5817 HRESULT Machine::setGuestPropertyValue(const com::Utf8Str &aProperty, const com::Utf8Str &aValue)
5819 return setGuestProperty(aProperty, aValue, "");
13374 const com::Utf8Str &aValue,
13423 bool fDelete = !aValue.length();
13429 it->second.strValue = aValue;
13441 prop.strValue = aValue;
13463 Bstr(aValue).raw(),
14705 const com::Utf8Str &aValue,
14710 NOREF(aValue);