Lines Matching refs:pKnob
756 void getOptions(tinyxml2::XMLElement* pKnob) in getOptions() argument
761 tinyxml2::XMLElement* pOptions = pKnob->FirstChildElement("options"); in getOptions()
785 void getKnob(tinyxml2::XMLElement* pKnob) in getKnob() argument
787 if (pKnob) in getKnob()
798 if (!pKnob->Attribute("name") || !pKnob->Attribute("CurrentVal")) in getKnob()
803 nameStr = pKnob->Attribute("name"); in getKnob()
804 currentValStr = pKnob->Attribute("CurrentVal"); in getKnob()
819 if (pKnob->Attribute("description")) in getKnob()
820 descriptionStr = pKnob->Attribute("description"); in getKnob()
822 if (pKnob->Attribute("default")) in getKnob()
823 defaultStr = pKnob->Attribute("default"); in getKnob()
825 if (pKnob->Attribute("depex")) in getKnob()
826 depexStr = pKnob->Attribute("depex"); in getKnob()
828 if (pKnob->Attribute("prompt")) in getKnob()
829 promptStr = pKnob->Attribute("prompt"); in getKnob()
831 if (pKnob->Attribute("setupType")) in getKnob()
832 setupTypeStr = pKnob->Attribute("setupType"); in getKnob()
838 getOptions(pKnob); in getKnob()
863 for (tinyxml2::XMLElement* pKnob = in getKnobs() local
865 pKnob; pKnob = pKnob->NextSiblingElement("knob")) in getKnobs()
873 for (tinyxml2::XMLElement* pKnob = in getKnobs() local
875 pKnob; pKnob = pKnob->NextSiblingElement("knob")) in getKnobs()
877 getKnob(pKnob); in getKnobs()