Lines Matching refs:attrp
98 xmlAttrPtr attrp; in dom_attr_name_read() local
100 attrp = (xmlAttrPtr) dom_object_get_node(obj); in dom_attr_name_read()
102 if (attrp == NULL) { in dom_attr_name_read()
107 ZVAL_STRING(retval, (char *) attrp->name); in dom_attr_name_read()
135 xmlAttrPtr attrp = (xmlAttrPtr) dom_object_get_node(obj); in dom_attr_value_read() local
138 if (attrp == NULL) { in dom_attr_value_read()
143 if ((content = xmlNodeGetContent((xmlNodePtr) attrp)) != NULL) { in dom_attr_value_read()
157 xmlAttrPtr attrp = (xmlAttrPtr) dom_object_get_node(obj); in dom_attr_value_write() local
159 if (attrp == NULL) { in dom_attr_value_write()
164 if (attrp->children) { in dom_attr_value_write()
165 node_list_unlink(attrp->children); in dom_attr_value_write()
170 xmlNodeSetContentLen((xmlNodePtr) attrp, (xmlChar *) ZSTR_VAL(str), ZSTR_LEN(str) + 1); in dom_attr_value_write()
229 xmlAttrPtr attrp; in PHP_FUNCTION() local
235 DOM_GET_OBJ(attrp, id, xmlAttrPtr, intern); in PHP_FUNCTION()
237 if (attrp->atype == XML_ATTRIBUTE_ID) { in PHP_FUNCTION()