Lines Matching refs:retval
32 zend_result dom_documenttype_name_read(dom_object *obj, zval *retval) in dom_documenttype_name_read() argument
35 ZVAL_STRING(retval, dtdptr->name ? (char *) (dtdptr->name) : ""); in dom_documenttype_name_read()
46 zend_result dom_documenttype_entities_read(dom_object *obj, zval *retval) in dom_documenttype_entities_read() argument
50 php_dom_create_iterator(retval, DOM_DTD_NAMEDNODEMAP, php_dom_follow_spec_intern(obj)); in dom_documenttype_entities_read()
54 dom_object *intern = Z_DOMOBJ_P(retval); in dom_documenttype_entities_read()
67 zend_result dom_documenttype_notations_read(dom_object *obj, zval *retval) in dom_documenttype_notations_read() argument
71 php_dom_create_iterator(retval, DOM_DTD_NAMEDNODEMAP, php_dom_follow_spec_intern(obj)); in dom_documenttype_notations_read()
75 dom_object *intern = Z_DOMOBJ_P(retval); in dom_documenttype_notations_read()
88 zend_result dom_documenttype_public_id_read(dom_object *obj, zval *retval) in dom_documenttype_public_id_read() argument
93 ZVAL_STRING(retval, (char *) (dtdptr->ExternalID)); in dom_documenttype_public_id_read()
95 ZVAL_EMPTY_STRING(retval); in dom_documenttype_public_id_read()
108 zend_result dom_documenttype_system_id_read(dom_object *obj, zval *retval) in dom_documenttype_system_id_read() argument
113 ZVAL_STRING(retval, (char *) (dtdptr->SystemID)); in dom_documenttype_system_id_read()
115 ZVAL_EMPTY_STRING(retval); in dom_documenttype_system_id_read()
128 zend_result dom_documenttype_internal_subset_read(dom_object *obj, zval *retval) in dom_documenttype_internal_subset_read() argument
153 ZVAL_NEW_STR(retval, smart_str_extract(&ret_buf)); in dom_documenttype_internal_subset_read()
158 ZVAL_NULL(retval); in dom_documenttype_internal_subset_read()