Lines Matching refs:intern

69 	xsl_object *intern = php_xsl_fetch_object(object);  in ZEND_GET_MODULE()  local
71 zend_object_std_dtor(&intern->std); in ZEND_GET_MODULE()
73 zend_hash_destroy(intern->parameter); in ZEND_GET_MODULE()
74 FREE_HASHTABLE(intern->parameter); in ZEND_GET_MODULE()
76 zend_hash_destroy(intern->registered_phpfunctions); in ZEND_GET_MODULE()
77 FREE_HASHTABLE(intern->registered_phpfunctions); in ZEND_GET_MODULE()
79 if (intern->node_list) { in ZEND_GET_MODULE()
80 zend_hash_destroy(intern->node_list); in ZEND_GET_MODULE()
81 FREE_HASHTABLE(intern->node_list); in ZEND_GET_MODULE()
84 if (intern->doc) { in ZEND_GET_MODULE()
85 php_libxml_decrement_doc_ref(intern->doc); in ZEND_GET_MODULE()
86 efree(intern->doc); in ZEND_GET_MODULE()
89 if (intern->ptr) { in ZEND_GET_MODULE()
91 if (((xsltStylesheetPtr) intern->ptr)->_private != NULL) { in ZEND_GET_MODULE()
92 ((xsltStylesheetPtr) intern->ptr)->_private = NULL; in ZEND_GET_MODULE()
95 xsltFreeStylesheet((xsltStylesheetPtr) intern->ptr); in ZEND_GET_MODULE()
96 intern->ptr = NULL; in ZEND_GET_MODULE()
98 if (intern->profiling) { in ZEND_GET_MODULE()
99 efree(intern->profiling); in ZEND_GET_MODULE()
107 xsl_object *intern; in xsl_objects_new() local
109 intern = zend_object_alloc(sizeof(xsl_object), class_type); in xsl_objects_new()
110 intern->securityPrefs = XSL_SECPREF_DEFAULT; in xsl_objects_new()
112 zend_object_std_init(&intern->std, class_type); in xsl_objects_new()
113 object_properties_init(&intern->std, class_type); in xsl_objects_new()
114 intern->parameter = zend_new_array(0); in xsl_objects_new()
115 intern->registered_phpfunctions = zend_new_array(0); in xsl_objects_new()
117 intern->std.handlers = &xsl_object_handlers; in xsl_objects_new()
118 return &intern->std; in xsl_objects_new()