Lines Matching refs:nodep
36 xmlNodePtr nodep = NULL, oldnode = NULL; in PHP_METHOD() local
52 nodep = xmlNewPI((xmlChar *) name, (xmlChar *) value); in PHP_METHOD()
54 if (!nodep) { in PHP_METHOD()
64 php_libxml_increment_node_ptr((php_libxml_node_object *)intern, nodep, (void *)intern); in PHP_METHOD()
75 xmlNodePtr nodep = dom_object_get_node(obj); in dom_processinginstruction_target_read() local
77 if (nodep == NULL) { in dom_processinginstruction_target_read()
82 ZVAL_STRING(retval, (char *) (nodep->name)); in dom_processinginstruction_target_read()
96 xmlNodePtr nodep; in dom_processinginstruction_data_read() local
99 nodep = dom_object_get_node(obj); in dom_processinginstruction_data_read()
101 if (nodep == NULL) { in dom_processinginstruction_data_read()
106 if ((content = xmlNodeGetContent(nodep)) != NULL) { in dom_processinginstruction_data_read()
118 xmlNode *nodep = dom_object_get_node(obj); in dom_processinginstruction_data_write() local
121 if (nodep == NULL) { in dom_processinginstruction_data_write()
131 xmlNodeSetContentLen(nodep, (xmlChar *) ZSTR_VAL(str), ZSTR_LEN(str) + 1); in dom_processinginstruction_data_write()