Lines Matching defs:vsde

1407         const VirtualSystemDescriptionEntry &vsde = m->maDescriptions[i];
1408 aTypes[i] = vsde.type;
1409 aRefs[i] = vsde.strRef;
1410 aOVFValues[i] = vsde.strOvf;
1411 aVBoxValues[i] = vsde.strVBoxCurrent;
1412 aExtraConfigValues[i] = vsde.strExtraConfigCurrent;
1441 const VirtualSystemDescriptionEntry *vsde = (*it);
1442 aTypes[i] = vsde->type;
1443 aRefs[i] = vsde->strRef;
1444 aOVFValues[i] = vsde->strOvf;
1445 aVBoxValues[i] = vsde->strVBoxCurrent;
1446 aExtraConfigValues[i] = vsde->strExtraConfigCurrent;
1471 const VirtualSystemDescriptionEntry *vsde = (*it);
1476 case VirtualSystemDescriptionValueType_Reference: aValues[i] = vsde->strRef; break;
1477 case VirtualSystemDescriptionValueType_Original: aValues[i] = vsde->strOvf; break;
1478 case VirtualSystemDescriptionValueType_Auto: aValues[i] = vsde->strVBoxCurrent; break;
1479 case VirtualSystemDescriptionValueType_ExtraConfig: aValues[i] = vsde->strExtraConfigCurrent; break;
1510 VirtualSystemDescriptionEntry& vsde = *it;
1514 vsde.strVBoxCurrent = aVBoxValues[i];
1515 vsde.strExtraConfigCurrent = aExtraConfigValues[i];
1518 vsde.type = VirtualSystemDescriptionType_Ignore;
1554 VirtualSystemDescriptionEntry vsde;
1555 vsde.ulIndex = (uint32_t)m->maDescriptions.size(); // each entry gets an index so the client side can reference them
1556 vsde.type = aType;
1557 vsde.strRef = strRef;
1558 vsde.strOvf = aOvfValue;
1559 vsde.strVBoxSuggested // remember original value
1560 = vsde.strVBoxCurrent // and set current value which can be overridden by setFinalValues()
1562 vsde.strExtraConfigSuggested
1563 = vsde.strExtraConfigCurrent
1565 vsde.ulSizeMB = ulSizeMB;
1567 vsde.skipIt = false;
1569 m->maDescriptions.push_back(vsde);