Lines Matching refs:attr
102 struct attrStruct attr;
267 value = ap->nodeValue.attr.value;
391 searchAttr: Searches for the attribute node identified by "attr",
396 searchAttr(char *class, char *name, char *attr)
402 return(searchNodeList(instanceNode->head, attr));
944 /*** <attr>=<value> ??? ***/
1090 writeString(fp, ap->nodeValue.attr.value);
1136 writeString(fp, ap->nodeValue.attr.value);
1309 OWconfigSetInstance(char *class, char *name, OWconfigAttributePtr attr,
1315 if (!(class && name && attr))
1318 limit = attr + numberInattr;
1320 for (;attr < limit; attr++) {
1322 attr->attribute,
1323 attr->value);
1401 if (ap->nodeValue.attr.value)
1402 freeMem(ap->nodeValue.attr.value);
1431 ap->nodeValue.attr.value = dupString(value);
1432 if (!ap->nodeValue.attr.value) {
1577 ptr->value = dupString(ap->nodeValue.attr.value);
1614 OWconfigFreeInstance(OWconfigAttributePtr attr, int numberInAttr)
1618 if ((!attr) || (!numberInAttr))
1621 for (ptr = attr, limit = attr + numberInAttr;
1629 freeMem(attr);
1658 return(dupString(ap->nodeValue.attr.value));