/php-src/ext/tidy/ |
H A D | tidy.c | 409 if (intern->ptdoc) { in tidy_object_free_storage() 410 intern->ptdoc->ref_count--; in tidy_object_free_storage() 414 efree(intern->ptdoc->errbuf); in tidy_object_free_storage() 416 efree(intern->ptdoc); in tidy_object_free_storage() 423 PHPTidyObj *intern; in tidy_object_new() local 436 intern->ptdoc->ref_count = 1; in tidy_object_new() 441 if (tidySetErrorBuffer(intern->ptdoc->doc, intern->ptdoc->errbuf) != 0) { in tidy_object_new() 443 efree(intern->ptdoc->errbuf); in tidy_object_new() 445 efree(intern->ptdoc); in tidy_object_new() 446 efree(intern); in tidy_object_new() [all …]
|
/php-src/ext/intl/common/ |
H A D | common_enum.cpp | 193 IntlIterator_object *intern; in IntlIterator_object_create() local 195 …intern = (IntlIterator_object*)ecalloc(1, sizeof(IntlIterator_object) + sizeof(zval) * (ce->defaul… in IntlIterator_object_create() 197 zend_object_std_init(&intern->zo, ce); in IntlIterator_object_create() 198 object_properties_init(&intern->zo, ce); in IntlIterator_object_create() 199 intl_error_init(INTLITERATOR_ERROR_P(intern)); in IntlIterator_object_create() 201 intern->iterator = NULL; in IntlIterator_object_create() 203 return &intern->zo; in IntlIterator_object_create()
|
/php-src/ext/intl/calendar/ |
H A D | calendar_class.cpp | 237 Calendar_object* intern; in Calendar_object_create() local 239 …intern = (Calendar_object*)ecalloc(1, sizeof(Calendar_object) + sizeof(zval) * (ce->default_proper… in Calendar_object_create() 241 zend_object_std_init(&intern->zo, ce); in Calendar_object_create() 242 object_properties_init(&intern->zo, ce); in Calendar_object_create() 243 calendar_object_init(intern); in Calendar_object_create() 245 return &intern->zo; in Calendar_object_create()
|
/php-src/ext/dom/ |
H A D | xpath_callbacks.h | 34 …xpath_callbacks_proxy_factory)(xmlNodePtr node, zval *proxy, dom_object *intern, xmlXPathParserCon… 62 …args, php_dom_xpath_nodeset_evaluation_mode evaluation_mode, dom_object *intern, php_dom_xpath_cal… 63 …args, php_dom_xpath_nodeset_evaluation_mode evaluation_mode, dom_object *intern, php_dom_xpath_cal…
|
H A D | domimplementation.c | 305 dom_object *intern = php_dom_instantiate_object_helper( in PHP_METHOD() local 311 dom_set_xml_class(intern->document); in PHP_METHOD() 312 intern->document->private_data = php_dom_libxml_private_data_header(private_data); in PHP_METHOD() 316 php_dom_adopt_node((xmlNodePtr) doctype, intern, document); in PHP_METHOD() 407 dom_object *intern = php_dom_instantiate_object_helper( in PHP_METHOD() local 413 dom_set_xml_class(intern->document); in PHP_METHOD() 414 intern->document->private_data = php_dom_libxml_private_data_header(private_data); in PHP_METHOD()
|
H A D | html_document.c | 790 dom_object *intern = php_dom_instantiate_object_helper( in PHP_METHOD() local 796 dom_set_xml_class(intern->document); in PHP_METHOD() 956 dom_set_xml_class(intern->document); in PHP_METHOD() 1177 dom_set_xml_class(intern->document); in PHP_METHOD() 1346 ctx.private_data = php_dom_get_private_data(intern); in dom_common_save() 1382 dom_object *intern; in PHP_METHOD() local 1400 DOM_GET_OBJ(docp, id, xmlDocPtr, intern); in PHP_METHOD() 1421 dom_object *intern, *nodeobj; in PHP_METHOD() local 1427 DOM_GET_OBJ(docp, ZEND_THIS, xmlDocPtr, intern); in PHP_METHOD() 1752 dom_object *intern; in PHP_METHOD() local [all …]
|
H A D | nodelist.c | 133 dom_object *intern = Z_DOMOBJ_P(ZEND_THIS); in PHP_METHOD() local 134 RETURN_LONG(php_dom_get_nodelist_length(intern)); in PHP_METHOD() 241 dom_object *intern = Z_DOMOBJ_P(id); in PHP_METHOD() local 242 dom_nnodemap_object *objmap = intern->ptr; in PHP_METHOD()
|
H A D | php_dom.h | 96 zend_object_iterator intern; member 153 void dom_namednode_iter(dom_object *basenode, int ntype, dom_object *intern, xmlHashTablePtr ht, co… 210 void dom_parent_node_query_selector(xmlNodePtr thisp, dom_object *intern, zval *return_value, const… 211 void dom_parent_node_query_selector_all(xmlNodePtr thisp, dom_object *intern, zval *return_value, c… 212 void dom_element_matches(xmlNodePtr thisp, dom_object *intern, zval *return_value, const zend_strin… 213 void dom_element_closest(xmlNodePtr thisp, dom_object *intern, zval *return_value, const zend_strin…
|
H A D | xpath_callbacks.c | 314 …ount, php_dom_xpath_nodeset_evaluation_mode evaluation_mode, dom_object *intern, php_dom_xpath_cal… in php_dom_xpath_callback_fetch_args() argument 354 php_dom_create_object(nsparent, &parent_zval, intern); in php_dom_xpath_callback_fetch_args() 359 proxy_factory(node, &child, intern, ctxt); in php_dom_xpath_callback_fetch_args() 456 …args, php_dom_xpath_nodeset_evaluation_mode evaluation_mode, dom_object *intern, php_dom_xpath_cal… in php_dom_xpath_callbacks_call_php_ns() argument 466 …zval *params = php_dom_xpath_callback_fetch_args(ctxt, param_count, evaluation_mode, intern, proxy… in php_dom_xpath_callbacks_call_php_ns() 492 …args, php_dom_xpath_nodeset_evaluation_mode evaluation_mode, dom_object *intern, php_dom_xpath_cal… in php_dom_xpath_callbacks_call_custom_ns() argument 495 …zval *params = php_dom_xpath_callback_fetch_args(ctxt, param_count, evaluation_mode, intern, proxy… in php_dom_xpath_callbacks_call_custom_ns()
|
H A D | token_list.h | 38 void dom_token_list_ctor(dom_token_list_object *intern, dom_object *element_obj);
|
H A D | html_collection.c | 43 dom_object *intern = php_dom_obj_from_obj(zobj); in dom_html_collection_named_item() local 44 dom_nnodemap_object *objmap = intern->ptr; in dom_html_collection_named_item()
|
/php-src/ext/intl/resourcebundle/ |
H A D | resourcebundle_iterator.c | 70 zval *object = &iterator->intern.data; in resourcebundle_iterator_dtor() 158 zend_iterator_init(&iterator->intern); in resourcebundle_get_iterator() 160 ZVAL_OBJ(&iterator->intern.data, Z_OBJ_P(object)); in resourcebundle_get_iterator() 161 iterator->intern.funcs = &resourcebundle_iterator_funcs; in resourcebundle_get_iterator()
|
H A D | resourcebundle_iterator.h | 23 zend_object_iterator intern; member
|
/php-src/ext/xmlwriter/ |
H A D | php_xmlwriter.c | 50 if (intern->ptr) { in xmlwriter_destroy_libxml_objects() 52 xmlFreeTextWriter(intern->ptr); in xmlwriter_destroy_libxml_objects() 53 intern->ptr = NULL; in xmlwriter_destroy_libxml_objects() 54 intern->output = NULL; in xmlwriter_destroy_libxml_objects() 64 xmlwriter_destroy_libxml_objects(intern); in xmlwriter_object_dtor() 74 zend_object_std_dtor(&intern->std); in xmlwriter_object_free_storage() 82 ze_xmlwriter_object *intern; in xmlwriter_object_new() local 85 zend_object_std_init(&intern->std, class_type); in xmlwriter_object_new() 88 return &intern->std; in xmlwriter_object_new() 184 intern->ptr = writer; in xml_writer_create_static() [all …]
|
/php-src/ext/intl/timezone/ |
H A D | timezone_class.cpp | 358 TimeZone_object* intern; in TimeZone_object_create() local 360 …intern = (TimeZone_object*)ecalloc(1, sizeof(TimeZone_object) + sizeof(zval) * (ce->default_proper… in TimeZone_object_create() 362 zend_object_std_init(&intern->zo, ce); in TimeZone_object_create() 363 object_properties_init(&intern->zo, ce); in TimeZone_object_create() 364 TimeZone_object_init(intern); in TimeZone_object_create() 366 return &intern->zo; in TimeZone_object_create()
|
/php-src/ext/sysvsem/ |
H A D | sysvsem.c | 94 sysvsem_sem *intern = zend_object_alloc(sizeof(sysvsem_sem), class_type); in sysvsem_create_object() local 96 zend_object_std_init(&intern->std, class_type); in sysvsem_create_object() 97 object_properties_init(&intern->std, class_type); in sysvsem_create_object() 99 return &intern->std; in sysvsem_create_object()
|
/php-src/ext/shmop/ |
H A D | shmop.c | 84 php_shmop *intern = zend_object_alloc(sizeof(php_shmop), class_type); in shmop_create_object() local 86 zend_object_std_init(&intern->std, class_type); in shmop_create_object() 87 object_properties_init(&intern->std, class_type); in shmop_create_object() 89 return &intern->std; in shmop_create_object()
|
/php-src/ext/spl/tests/ |
H A D | bug80111.phpt | 24 # intern->traverse_pointer, since it is removed from the list already 50 # Points intern->traverse_pointer to our object element
|
H A D | bug73629.phpt | 2 Bug #73629 (SplDoublyLinkedList::setIteratorMode masks intern flags)
|
/php-src/ext/dom/tests/ |
H A D | gh16336_1.phpt | 2 GH-16336 (Attribute intern document mismanagement)
|
H A D | gh16336_2.phpt | 2 GH-16336 (Attribute intern document mismanagement)
|
/php-src/ext/enchant/ |
H A D | enchant.c | 60 enchant_broker *intern = zend_object_alloc(sizeof(enchant_broker), class_type); in enchant_broker_create_object() local 62 zend_object_std_init(&intern->std, class_type); in enchant_broker_create_object() 63 object_properties_init(&intern->std, class_type); in enchant_broker_create_object() 65 return &intern->std; in enchant_broker_create_object() 78 enchant_dict *intern = zend_object_alloc(sizeof(enchant_dict), class_type); in enchant_dict_create_object() local 80 zend_object_std_init(&intern->std, class_type); in enchant_dict_create_object() 81 object_properties_init(&intern->std, class_type); in enchant_dict_create_object() 83 return &intern->std; in enchant_dict_create_object()
|
/php-src/ext/simplexml/ |
H A D | simplexml.c | 1917 php_sxe_object *intern; in sxe_count_elements() local 1919 if (intern->fptr_count) { in sxe_count_elements() 1994 php_sxe_object *intern; in PHP_METHOD() local 2007 if (intern == NULL || intern->node == NULL) { in PHP_METHOD() 2168 php_sxe_object *intern; in php_sxe_object_new() local 2174 intern->iter.name = NULL; in php_sxe_object_new() 2180 return intern; in php_sxe_object_new() 2191 return &intern->zo; in sxe_object_new() 2498 if (intern != NULL && intern->node != NULL) { in php_sxe_iterator_current_key() 2513 php_sxe_object *intern; in php_sxe_move_forward_iterator() local [all …]
|
H A D | php_simplexml_exports.h | 48 zend_object_iterator intern; member
|
/php-src/ext/zlib/ |
H A D | zlib.c | 60 zend_object_std_init(&intern->std, class_type); in inflate_context_create_object() 61 object_properties_init(&intern->std, class_type); in inflate_context_create_object() 63 return &intern->std; in inflate_context_create_object() 75 if (intern->inflateDict) { in inflate_context_free_obj() 76 efree(intern->inflateDict); in inflate_context_free_obj() 78 inflateEnd(&intern->Z); in inflate_context_free_obj() 80 zend_object_std_dtor(&intern->std); in inflate_context_free_obj() 98 zend_object_std_init(&intern->std, class_type); in deflate_context_create_object() 101 return &intern->std; in deflate_context_create_object() 113 deflateEnd(&intern->Z); in deflate_context_free_obj() [all …]
|