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

/vbox/src/VBox/Main/xml/
H A DSettings.cpp3757 void MachineConfigFile::readAutostart(const xml::ElementNode *pElmAutostart, Autostart *pAutostart) argument
3761 if (!pElmAutostart || m->sv < SettingsVersion_v1_13)
3764 pElmAutostart->getAttributeValue("enabled", pAutostart->fAutostartEnabled);
3765 pElmAutostart->getAttributeValue("delay", pAutostart->uAutostartDelay);
3766 pElmAutostart->getAttributeValue("autostop", strAutostop);
3776 throw ConfigFileError(this, pElmAutostart, N_("Invalid value '%s' for Autostart/@autostop attribute"), strAutostop.c_str());
5147 xml::ElementNode *pElmAutostart = pElmParent->createChild("Autostart");
5148 pElmAutostart->setAttribute("enabled", pAutostart->fAutostartEnabled);
5149 pElmAutostart->setAttribute("delay", pAutostart->uAutostartDelay);
5159 pElmAutostart
[all...]

Completed in 59 milliseconds