Home
last modified time | relevance | path

Searched refs:intern (Results 51 – 75 of 88) sorted by relevance

1234

/php-src/ext/dom/
H A Dxpath_callbacks.h36 …xpath_callbacks_proxy_factory)(xmlNodePtr node, zval *proxy, dom_object *intern, xmlXPathParserCon…
64 …args, php_dom_xpath_nodeset_evaluation_mode evaluation_mode, dom_object *intern, php_dom_xpath_cal…
65 …args, php_dom_xpath_nodeset_evaluation_mode evaluation_mode, dom_object *intern, php_dom_xpath_cal…
H A Dxml_document.c112 dom_object *intern = php_dom_instantiate_object_helper( in PHP_METHOD() local
118 dom_set_xml_class(intern->document); in PHP_METHOD()
119intern->document->private_data = php_dom_libxml_ns_mapper_header(php_dom_libxml_ns_mapper_create()… in PHP_METHOD()
221 dom_object *intern = php_dom_instantiate_object_helper( in load_from_helper() local
227 dom_set_xml_class(intern->document); in load_from_helper()
228 dom_document_convert_to_modern(intern->document, lxml_doc); in load_from_helper()
H A Ddomimplementation.c303 dom_object *intern = php_dom_instantiate_object_helper( in PHP_METHOD() local
309 dom_set_xml_class(intern->document); in PHP_METHOD()
310 intern->document->private_data = php_dom_libxml_ns_mapper_header(ns_mapper); in PHP_METHOD()
314 php_dom_adopt_node((xmlNodePtr) doctype, intern, document); in PHP_METHOD()
404 dom_object *intern = php_dom_instantiate_object_helper( in PHP_METHOD() local
410 dom_set_xml_class(intern->document); in PHP_METHOD()
411 intern->document->private_data = php_dom_libxml_ns_mapper_header(ns_mapper); in PHP_METHOD()
H A Dnodelist.c133 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 Dxpath_callbacks.c314 …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 Dhtml_document.c752 dom_object *intern = php_dom_instantiate_object_helper( in PHP_METHOD() local
758 dom_set_xml_class(intern->document); in PHP_METHOD()
912 dom_object *intern = php_dom_instantiate_object_helper( in PHP_METHOD() local
918 dom_set_xml_class(intern->document); in PHP_METHOD()
919 intern->document->private_data = php_dom_libxml_ns_mapper_header(ns_mapper); in PHP_METHOD()
1132 dom_object *intern = php_dom_instantiate_object_helper( in PHP_METHOD() local
1138 dom_set_xml_class(intern->document); in PHP_METHOD()
1272 dom_object *intern; in PHP_METHOD() local
1290 DOM_GET_OBJ(docp, id, xmlDocPtr, intern); in PHP_METHOD()
1311 dom_object *intern, *nodeobj; in PHP_METHOD() local
[all …]
H A Dhtml_collection.c43 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/xmlwriter/
H A Dphp_xmlwriter.c54 if (intern->ptr) { in xmlwriter_object_dtor()
55 xmlFreeTextWriter(intern->ptr); in xmlwriter_object_dtor()
56 intern->ptr = NULL; in xmlwriter_object_dtor()
58 if (intern->output) { in xmlwriter_object_dtor()
59 xmlBufferFree(intern->output); in xmlwriter_object_dtor()
60 intern->output = NULL; in xmlwriter_object_dtor()
71 zend_object_std_dtor(&intern->std); in xmlwriter_object_free_storage()
79 ze_xmlwriter_object *intern; in xmlwriter_object_new() local
82 zend_object_std_init(&intern->std, class_type); in xmlwriter_object_new()
83 object_properties_init(&intern->std, class_type); in xmlwriter_object_new()
[all …]
/php-src/ext/intl/timezone/
H A Dtimezone_class.cpp358 TimeZone_object* intern; in TimeZone_object_create() local
360intern = (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/intl/resourcebundle/
H A Dresourcebundle_iterator.h23 zend_object_iterator intern; member
/php-src/ext/sysvsem/
H A Dsysvsem.c94 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 Dshmop.c82 php_shmop *intern = zend_object_alloc(sizeof(php_shmop), class_type); in shmop_create_object() local
84 zend_object_std_init(&intern->std, class_type); in shmop_create_object()
85 object_properties_init(&intern->std, class_type); in shmop_create_object()
87 return &intern->std; in shmop_create_object()
/php-src/ext/spl/tests/
H A Dbug80111.phpt24 # intern->traverse_pointer, since it is removed from the list already
50 # Points intern->traverse_pointer to our object element
H A Dbug73629.phpt2 Bug #73629 (SplDoublyLinkedList::setIteratorMode masks intern flags)
/php-src/ext/simplexml/
H A Dsimplexml.c1883 php_sxe_object *intern; in sxe_count_elements() local
1885 if (intern->fptr_count) { in sxe_count_elements()
1962 php_sxe_object *intern; in PHP_METHOD() local
1975 if (intern == NULL || intern->node == NULL) { in PHP_METHOD()
2158 php_sxe_object *intern; in php_sxe_object_new() local
2164 intern->iter.name = NULL; in php_sxe_object_new()
2170 return intern; in php_sxe_object_new()
2181 return &intern->zo; in sxe_object_new()
2483 if (intern != NULL && intern->node != NULL) { in php_sxe_iterator_current_key()
2498 php_sxe_object *intern; in php_sxe_move_forward_iterator() local
[all …]
H A Dphp_simplexml_exports.h48 zend_object_iterator intern; member
/php-src/ext/enchant/
H A Denchant.c59 enchant_broker *intern = zend_object_alloc(sizeof(enchant_broker), class_type); in enchant_broker_create_object() local
61 zend_object_std_init(&intern->std, class_type); in enchant_broker_create_object()
62 object_properties_init(&intern->std, class_type); in enchant_broker_create_object()
64 return &intern->std; in enchant_broker_create_object()
77 enchant_dict *intern = zend_object_alloc(sizeof(enchant_dict), class_type); in enchant_dict_create_object() local
79 zend_object_std_init(&intern->std, class_type); in enchant_dict_create_object()
80 object_properties_init(&intern->std, class_type); in enchant_dict_create_object()
82 return &intern->std; in enchant_dict_create_object()
/php-src/ext/zlib/
H A Dzlib.c60 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 …]
/php-src/ext/sysvshm/
H A Dsysvshm.c45 sysvshm_shm *intern = zend_object_alloc(sizeof(sysvshm_shm), class_type); in sysvshm_create_object() local
47 zend_object_std_init(&intern->std, class_type); in sysvshm_create_object()
48 object_properties_init(&intern->std, class_type); in sysvshm_create_object()
50 return &intern->std; in sysvshm_create_object()
/php-src/ext/sysvmsg/
H A Dsysvmsg.c77 sysvmsg_queue_t *intern = zend_object_alloc(sizeof(sysvmsg_queue_t), class_type); in sysvmsg_queue_create_object() local
79 zend_object_std_init(&intern->std, class_type); in sysvmsg_queue_create_object()
80 object_properties_init(&intern->std, class_type); in sysvmsg_queue_create_object()
82 return &intern->std; in sysvmsg_queue_create_object()
/php-src/ext/xsl/
H A Dphp_xsl.h74 void xsl_free_sheet(xsl_object *intern);
/php-src/ext/mysqli/
H A Dmysqli_nonapi.c656 mysqli_object *intern = Z_MYSQLI_P(elem); local
657 if (!(my_res = (MYSQLI_RESOURCE *)intern->ptr)) {
658 zend_throw_error(NULL, "%s object is already closed", ZSTR_VAL(intern->zo.ce->name));
663 zend_throw_error(NULL, "%s object is not fully initialized", ZSTR_VAL(intern->zo.ce->name));
690 mysqli_object *intern = Z_MYSQLI_P(elem); local
691 if (!(my_res = (MYSQLI_RESOURCE *)intern->ptr)) {
692 zend_throw_error(NULL, "%s object is already closed", ZSTR_VAL(intern->zo.ce->name));
724 mysqli_object *intern = Z_MYSQLI_P(elem); local
725 mysql = (MY_MYSQL *)((MYSQLI_RESOURCE *)intern->ptr)->ptr;
/php-src/ext/date/
H A Dphp_date.c1545 zend_object_iterator intern; member
1855 return &intern->std; in date_object_new_date()
1995 return &intern->std; in date_object_new_timezone()
2159 return &intern->std; in date_object_new_interval()
2250 return &intern->std; in date_object_new_period()
2284 if (intern->time) { in date_object_free_storage_date()
2305 if (intern->date_string) { in date_object_free_storage_interval()
2307 intern->date_string = NULL; in date_object_free_storage_interval()
2317 if (intern->start) { in date_object_free_storage_period()
2321 if (intern->current) { in date_object_free_storage_period()
[all …]
/php-src/ext/curl/
H A Dmulti.c506 php_curlm *intern = zend_object_alloc(sizeof(php_curlm), class_type); in curl_multi_create_object() local
508 zend_object_std_init(&intern->std, class_type); in curl_multi_create_object()
509 object_properties_init(&intern->std, class_type); in curl_multi_create_object()
511 return &intern->std; in curl_multi_create_object()
/php-src/ext/sockets/
H A Dsockets.c109 zend_object_std_init(&intern->std, class_type); in socket_create_object()
110 object_properties_init(&intern->std, class_type); in socket_create_object()
112 intern->bsd_socket = -1; /* invalid socket */ in socket_create_object()
113 intern->type = PF_UNSPEC; in socket_create_object()
114 intern->error = 0; in socket_create_object()
115 intern->blocking = 1; in socket_create_object()
116 ZVAL_UNDEF(&intern->zstream); in socket_create_object()
118 return &intern->std; in socket_create_object()
170 zend_object_std_init(&intern->std, class_type); in address_info_create_object()
171 object_properties_init(&intern->std, class_type); in address_info_create_object()
[all …]

Completed in 109 milliseconds

1234