Lines Matching refs:retval
77 zval retval; in dom_xpath_ext_function_php() local
191 fci.retval = &retval; in dom_xpath_ext_function_php()
202 if (result == SUCCESS && Z_TYPE(retval) != IS_UNDEF) { in dom_xpath_ext_function_php()
203 if (Z_TYPE(retval) == IS_OBJECT && instanceof_function(Z_OBJCE(retval), dom_node_class_entry)) { in dom_xpath_ext_function_php()
210 Z_ADDREF(retval); in dom_xpath_ext_function_php()
211 zend_hash_next_index_insert(intern->node_list, &retval); in dom_xpath_ext_function_php()
212 obj = Z_DOMOBJ_P(&retval); in dom_xpath_ext_function_php()
215 } else if (Z_TYPE(retval) == IS_FALSE || Z_TYPE(retval) == IS_TRUE) { in dom_xpath_ext_function_php()
216 valuePush(ctxt, xmlXPathNewBoolean(Z_TYPE(retval) == IS_TRUE)); in dom_xpath_ext_function_php()
217 } else if (Z_TYPE(retval) == IS_OBJECT) { in dom_xpath_ext_function_php()
221 zend_string *str = zval_get_string(&retval); in dom_xpath_ext_function_php()
225 zval_ptr_dtor(&retval); in dom_xpath_ext_function_php()
296 int dom_xpath_document_read(dom_object *obj, zval *retval) in dom_xpath_document_read() argument
305 php_dom_create_object((xmlNodePtr) docp, retval, obj); in dom_xpath_document_read()
349 zval *id, retval, *context = NULL; in php_xpath_eval() local
434 array_init(&retval); in php_xpath_eval()
461 add_next_index_zval(&retval, &child); in php_xpath_eval()
466 dom_xpath_iter(&retval, nodeobj); in php_xpath_eval()