ctor               35 TSRM/TSRM.c    	ts_allocate_ctor ctor;
ctor              215 TSRM/TSRM.c    TSRM_API ts_rsrc_id ts_allocate_id(ts_rsrc_id *rsrc_id, size_t size, ts_allocate_ctor ctor, ts_allocate_dtor dtor)
ctor              239 TSRM/TSRM.c    	resource_types_table[TSRM_UNSHUFFLE_RSRC_ID(*rsrc_id)].ctor = ctor;
ctor              254 TSRM/TSRM.c    					if (resource_types_table[j].ctor) {
ctor              255 TSRM/TSRM.c    						resource_types_table[j].ctor(p->storage[j], &p->storage);
ctor              293 TSRM/TSRM.c    			if (resource_types_table[i].ctor) {
ctor              294 TSRM/TSRM.c    				resource_types_table[i].ctor((*thread_resources_ptr)->storage[i], &(*thread_resources_ptr)->storage);
ctor              111 TSRM/TSRM.h    TSRM_API ts_rsrc_id ts_allocate_id(ts_rsrc_id *rsrc_id, size_t size, ts_allocate_ctor ctor, ts_allocate_dtor dtor);
ctor             2037 Zend/zend_API.c 	zend_function *ctor = NULL, *dtor = NULL, *clone = NULL, *__get = NULL, *__set = NULL, *__unset = NULL, *__isset = NULL, *__call = NULL, *__callstatic = NULL, *__tostring = NULL, *__debugInfo = NULL;
ctor             2161 Zend/zend_API.c 			if ((fname_len == class_name_len) && !ctor && !memcmp(lowercase_name, lc_class_name, class_name_len+1)) {
ctor             2162 Zend/zend_API.c 				ctor = reg_function;
ctor             2164 Zend/zend_API.c 				ctor = reg_function;
ctor             2216 Zend/zend_API.c 		scope->constructor = ctor;
ctor             2227 Zend/zend_API.c 		if (ctor) {
ctor             2228 Zend/zend_API.c 			ctor->common.fn_flags |= ZEND_ACC_CTOR;
ctor             2229 Zend/zend_API.c 			if (ctor->common.fn_flags & ZEND_ACC_STATIC) {
ctor             2230 Zend/zend_API.c 				zend_error(error_type, "Constructor %s::%s() cannot be static", scope->name, ctor->common.function_name);
ctor             2232 Zend/zend_API.c 			ctor->common.fn_flags &= ~ZEND_ACC_ALLOW_STATIC;
ctor             1444 Zend/zend_execute_API.c 	int ctor;
ctor             1454 Zend/zend_execute_API.c 			if (!ai->ctor) {
ctor             1456 Zend/zend_execute_API.c 				ai->ctor = 1;
ctor             2566 ext/date/php_date.c PHPAPI int php_date_initialize(php_date_obj *dateobj, /*const*/ char *time_str, int time_str_len, char *format, zval *timezone_object, int ctor TSRMLS_DC)
ctor             2588 ext/date/php_date.c 	if (ctor && err && err->error_count) {
ctor              205 ext/date/php_date.h PHPAPI int php_date_initialize(php_date_obj *dateobj, /*const*/ char *time_str, int time_str_len, char *format, zval *timezone_object, int ctor TSRMLS_DC);
ctor             2708 ext/pdo/pdo_stmt.c 	static zend_internal_function ctor = {0};
ctor             2710 ext/pdo/pdo_stmt.c 	ctor.type = ZEND_INTERNAL_FUNCTION;
ctor             2711 ext/pdo/pdo_stmt.c 	ctor.function_name = "__construct";
ctor             2712 ext/pdo/pdo_stmt.c 	ctor.scope = pdo_row_ce;
ctor             2713 ext/pdo/pdo_stmt.c 	ctor.handler = ZEND_FN(dbstmt_constructor);
ctor             2714 ext/pdo/pdo_stmt.c 	ctor.fn_flags = ZEND_ACC_PUBLIC;
ctor             2716 ext/pdo/pdo_stmt.c 	return (union _zend_function*)&ctor;
ctor               78 ext/spl/spl_dllist.c 	spl_ptr_llist_ctor_func  ctor;
ctor              123 ext/spl/spl_dllist.c static spl_ptr_llist *spl_ptr_llist_init(spl_ptr_llist_ctor_func ctor, spl_ptr_llist_dtor_func dtor) /* {{{ */
ctor              131 ext/spl/spl_dllist.c 	llist->ctor  = ctor;
ctor              204 ext/spl/spl_dllist.c 	if (llist->ctor) {
ctor              205 ext/spl/spl_dllist.c 		llist->ctor(elem TSRMLS_CC);
ctor              228 ext/spl/spl_dllist.c 	if (llist->ctor) {
ctor              229 ext/spl/spl_dllist.c 		llist->ctor(elem TSRMLS_CC);
ctor              322 ext/spl/spl_dllist.c 	spl_ptr_llist_ctor_func  ctor    = from->ctor;
ctor              327 ext/spl/spl_dllist.c 		if (ctor) {
ctor              328 ext/spl/spl_dllist.c 			ctor(current TSRMLS_CC);
ctor              390 ext/spl/spl_dllist.c 			intern->llist = (spl_ptr_llist *)spl_ptr_llist_init(other->llist->ctor, other->llist->dtor);
ctor              855 ext/spl/spl_dllist.c 			if (intern->llist->ctor) {
ctor              856 ext/spl/spl_dllist.c 				intern->llist->ctor(element TSRMLS_CC);
ctor             1289 ext/spl/spl_dllist.c 		if (intern->llist->ctor) {
ctor             1290 ext/spl/spl_dllist.c 			intern->llist->ctor(elem TSRMLS_CC);
ctor               52 ext/spl/spl_functions.h void spl_register_std_class(zend_class_entry ** ppce, char * class_name, create_object_func_t ctor, const zend_function_entry * function_list TSRMLS_DC);
ctor               53 ext/spl/spl_functions.h void spl_register_sub_class(zend_class_entry ** ppce, zend_class_entry * parent_ce, char * class_name, create_object_func_t ctor, const zend_function_entry * function_list TSRMLS_DC);
ctor               60 ext/spl/spl_heap.c 	spl_ptr_heap_ctor_func  ctor;
ctor              224 ext/spl/spl_heap.c static spl_ptr_heap *spl_ptr_heap_init(spl_ptr_heap_cmp_func cmp, spl_ptr_heap_ctor_func ctor, spl_ptr_heap_dtor_func dtor) /* {{{ */
ctor              229 ext/spl/spl_heap.c 	heap->ctor     = ctor;
ctor              249 ext/spl/spl_heap.c 	heap->ctor(elem TSRMLS_CC);
ctor              322 ext/spl/spl_heap.c 	heap->ctor     = from->ctor;
ctor              332 ext/spl/spl_heap.c 		heap->ctor(heap->elements[i] TSRMLS_CC);