Lines Matching refs:intern

77 	xsl_object *intern = (xsl_object *)object;  in ZEND_GET_MODULE()  local
79 zend_object_std_dtor(&intern->std TSRMLS_CC); in ZEND_GET_MODULE()
81 zend_hash_destroy(intern->parameter); in ZEND_GET_MODULE()
82 FREE_HASHTABLE(intern->parameter); in ZEND_GET_MODULE()
84 zend_hash_destroy(intern->registered_phpfunctions); in ZEND_GET_MODULE()
85 FREE_HASHTABLE(intern->registered_phpfunctions); in ZEND_GET_MODULE()
87 if (intern->node_list) { in ZEND_GET_MODULE()
88 zend_hash_destroy(intern->node_list); in ZEND_GET_MODULE()
89 FREE_HASHTABLE(intern->node_list); in ZEND_GET_MODULE()
92 if (intern->doc) { in ZEND_GET_MODULE()
93 php_libxml_decrement_doc_ref(intern->doc TSRMLS_CC); in ZEND_GET_MODULE()
94 efree(intern->doc); in ZEND_GET_MODULE()
97 if (intern->ptr) { in ZEND_GET_MODULE()
99 if (((xsltStylesheetPtr) intern->ptr)->_private != NULL) { in ZEND_GET_MODULE()
100 ((xsltStylesheetPtr) intern->ptr)->_private = NULL; in ZEND_GET_MODULE()
103 xsltFreeStylesheet((xsltStylesheetPtr) intern->ptr); in ZEND_GET_MODULE()
104 intern->ptr = NULL; in ZEND_GET_MODULE()
106 if (intern->profiling) { in ZEND_GET_MODULE()
107 efree(intern->profiling); in ZEND_GET_MODULE()
117 xsl_object *intern; in xsl_objects_new() local
119 intern = emalloc(sizeof(xsl_object)); in xsl_objects_new()
120 intern->ptr = NULL; in xsl_objects_new()
121 intern->prop_handler = NULL; in xsl_objects_new()
122 intern->parameter = NULL; in xsl_objects_new()
123 intern->hasKeys = 0; in xsl_objects_new()
124 intern->registerPhpFunctions = 0; in xsl_objects_new()
125 intern->registered_phpfunctions = NULL; in xsl_objects_new()
126 intern->node_list = NULL; in xsl_objects_new()
127 intern->doc = NULL; in xsl_objects_new()
128 intern->profiling = NULL; in xsl_objects_new()
129 intern->securityPrefs = XSL_SECPREF_DEFAULT; in xsl_objects_new()
130 intern->securityPrefsSet = 0; in xsl_objects_new()
132 zend_object_std_init(&intern->std, class_type TSRMLS_CC); in xsl_objects_new()
133 object_properties_init(&intern->std, class_type); in xsl_objects_new()
134 ALLOC_HASHTABLE(intern->parameter); in xsl_objects_new()
135 zend_hash_init(intern->parameter, 0, NULL, ZVAL_PTR_DTOR, 0); in xsl_objects_new()
136 ALLOC_HASHTABLE(intern->registered_phpfunctions); in xsl_objects_new()
137 zend_hash_init(intern->registered_phpfunctions, 0, NULL, ZVAL_PTR_DTOR, 0); in xsl_objects_new()
138 …retval.handle = zend_objects_store_put(intern, (zend_objects_store_dtor_t)zend_objects_destroy_obj… in xsl_objects_new()
139 intern->handle = retval.handle; in xsl_objects_new()