Lines Matching refs:attrp
100 xmlAttrPtr attrp; in dom_attr_name_read() local
102 attrp = (xmlAttrPtr) dom_object_get_node(obj); in dom_attr_name_read()
104 if (attrp == NULL) { in dom_attr_name_read()
109 ZVAL_STRING(retval, (char *) attrp->name); in dom_attr_name_read()
137 xmlAttrPtr attrp = (xmlAttrPtr) dom_object_get_node(obj); in dom_attr_value_read() local
140 if (attrp == NULL) { in dom_attr_value_read()
145 if ((content = xmlNodeGetContent((xmlNodePtr) attrp)) != NULL) { in dom_attr_value_read()
159 xmlAttrPtr attrp = (xmlAttrPtr) dom_object_get_node(obj); in dom_attr_value_write() local
161 if (attrp == NULL) { in dom_attr_value_write()
166 if (attrp->children) { in dom_attr_value_write()
167 node_list_unlink(attrp->children); in dom_attr_value_write()
172 xmlNodeSetContentLen((xmlNodePtr) attrp, (xmlChar *) ZSTR_VAL(str), ZSTR_LEN(str) + 1); in dom_attr_value_write()
231 xmlAttrPtr attrp; in PHP_FUNCTION() local
237 DOM_GET_OBJ(attrp, id, xmlAttrPtr, intern); in PHP_FUNCTION()
239 if (attrp->atype == XML_ATTRIBUTE_ID) { in PHP_FUNCTION()