Lines Matching defs:pelmImage

619             const xml::ElementNode *pelmImage;
620 if ((pelmImage = elmMedium.findChildElement("VirtualDiskImage")))
622 else if ((pelmImage = elmMedium.findChildElement("VMDKImage")))
624 else if ((pelmImage = elmMedium.findChildElement("VHDImage")))
626 else if ((pelmImage = elmMedium.findChildElement("ISCSIHardDisk")))
637 if (pelmImage->getAttributeValue("userName", strUser))
643 if (pelmImage->getAttributeValue("server", strServer))
647 if (pelmImage->getAttributeValue("port", strPort))
654 if (pelmImage->getAttributeValue("target", strTarget))
659 if (pelmImage->getAttributeValue("lun", strLun))
672 if (pelmImage->getAttributeValue("password", strPassword))
677 else if ((pelmImage = elmMedium.findChildElement("CustomHardDisk")))
688 if (!(pelmImage->getAttributeValuePath("filePath", med.strLocation)))
3586 const xml::ElementNode *pelmImage;
3588 if (!(pelmImage = pelmAttached->findChildElement("Image")))
3591 throw ConfigFileError(this, pelmImage, N_("Required AttachedDevice/Image element is missing"));
3603 if (!pelmImage->getAttributeValue("uuid", strTemp))
3604 throw ConfigFileError(this, pelmImage, N_("Required AttachedDevice/Image/@uuid attribute is missing"));
3609 throw ConfigFileError(this, pelmImage, N_("Required AttachedDevice/@port attribute is missing"));
3611 throw ConfigFileError(this, pelmImage, N_("Required AttachedDevice/@device attribute is missing"));
5099 xml::ElementNode *pelmImage = pelmDevice->createChild("Image");
5100 pelmImage->setAttribute("uuid", att.uuid.toStringCurly());
5104 pllElementsWithUuidAttributes->push_back(pelmImage);