Lines Matching refs:intern

58 	xsl_object *intern = php_xsl_fetch_object(object);  in ZEND_GET_MODULE()  local
60 zend_object_std_dtor(&intern->std); in ZEND_GET_MODULE()
62 zend_hash_destroy(intern->parameter); in ZEND_GET_MODULE()
63 FREE_HASHTABLE(intern->parameter); in ZEND_GET_MODULE()
65 zend_hash_destroy(intern->registered_phpfunctions); in ZEND_GET_MODULE()
66 FREE_HASHTABLE(intern->registered_phpfunctions); in ZEND_GET_MODULE()
68 if (intern->node_list) { in ZEND_GET_MODULE()
69 zend_hash_destroy(intern->node_list); in ZEND_GET_MODULE()
70 FREE_HASHTABLE(intern->node_list); in ZEND_GET_MODULE()
73 if (intern->doc) { in ZEND_GET_MODULE()
74 php_libxml_decrement_doc_ref(intern->doc); in ZEND_GET_MODULE()
75 efree(intern->doc); in ZEND_GET_MODULE()
78 if (intern->ptr) { in ZEND_GET_MODULE()
80 if (((xsltStylesheetPtr) intern->ptr)->_private != NULL) { in ZEND_GET_MODULE()
81 ((xsltStylesheetPtr) intern->ptr)->_private = NULL; in ZEND_GET_MODULE()
84 xsltFreeStylesheet((xsltStylesheetPtr) intern->ptr); in ZEND_GET_MODULE()
85 intern->ptr = NULL; in ZEND_GET_MODULE()
87 if (intern->profiling) { in ZEND_GET_MODULE()
88 efree(intern->profiling); in ZEND_GET_MODULE()
96 xsl_object *intern; in xsl_objects_new() local
98 intern = zend_object_alloc(sizeof(xsl_object), class_type); in xsl_objects_new()
99 intern->securityPrefs = XSL_SECPREF_DEFAULT; in xsl_objects_new()
101 zend_object_std_init(&intern->std, class_type); in xsl_objects_new()
102 object_properties_init(&intern->std, class_type); in xsl_objects_new()
103 intern->parameter = zend_new_array(0); in xsl_objects_new()
104 intern->registered_phpfunctions = zend_new_array(0); in xsl_objects_new()
106 intern->std.handlers = &xsl_object_handlers; in xsl_objects_new()
107 return &intern->std; in xsl_objects_new()