Searched refs:ctor (Results 1 - 10 of 10) sorted by relevance
| /PHP_TRUNK/TSRM/ |
| H A D | TSRM.c | 35 ts_allocate_ctor ctor; member in struct:__anon1 215 TSRM_API ts_rsrc_id ts_allocate_id(ts_rsrc_id *rsrc_id, size_t size, ts_allocate_ctor ctor, ts_allocate_dtor dtor) argument 239 resource_types_table[TSRM_UNSHUFFLE_RSRC_ID(*rsrc_id)].ctor = ctor; 254 if (resource_types_table[j].ctor) { 255 resource_types_table[j].ctor(p->storage[j], &p->storage); 293 if (resource_types_table[i].ctor) { 294 resource_types_table[i].ctor((*thread_resources_ptr)->storage[i], &(*thread_resources_ptr)->storage);
|
| H A D | TSRM.h | 111 TSRM_API ts_rsrc_id ts_allocate_id(ts_rsrc_id *rsrc_id, size_t size, ts_allocate_ctor ctor, ts_allocate_dtor dtor);
|
| /PHP_TRUNK/ext/spl/ |
| H A D | spl_functions.h | 52 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); 53 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);
|
| H A D | spl_heap.c | 60 spl_ptr_heap_ctor_func ctor; member in struct:_spl_ptr_heap 224 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) /* {{{ */ argument 229 heap->ctor = ctor; 249 heap->ctor(elem TSRMLS_CC); 321 heap->ctor = from->ctor; 331 heap->ctor(heap->elements[i] TSRMLS_CC);
|
| H A D | spl_dllist.c | 80 spl_ptr_llist_ctor_func ctor; member in struct:_spl_ptr_llist 125 static spl_ptr_llist *spl_ptr_llist_init(spl_ptr_llist_ctor_func ctor, spl_ptr_llist_dtor_func dtor) /* {{{ */ argument 133 llist->ctor = ctor; 206 if (llist->ctor) { 207 llist->ctor(elem TSRMLS_CC); 230 if (llist->ctor) { 231 llist->ctor(elem TSRMLS_CC); 324 spl_ptr_llist_ctor_func ctor = from->ctor; local [all...] |
| /PHP_TRUNK/ext/pdo/ |
| H A D | pdo_stmt.c | 786 return 1; /* no ctor no args is also ok */ 2729 static zend_internal_function ctor = {0}; local 2731 ctor.type = ZEND_INTERNAL_FUNCTION; 2732 ctor.function_name = "__construct"; 2733 ctor.scope = pdo_row_ce; 2734 ctor.handler = ZEND_FN(dbstmt_constructor); 2735 ctor.fn_flags = ZEND_ACC_PUBLIC; 2737 return (union _zend_function*)&ctor;
|
| /PHP_TRUNK/Zend/ |
| H A D | zend_API.c | 2035 zend_function *ctor = NULL, *dtor = NULL, *clone = NULL, *__get = NULL, *__set = NULL, *__unset = NULL, *__isset = NULL, *__call = NULL, *__callstatic = NULL, *__tostring = NULL; local 2149 /* Look for ctor, dtor, clone 2153 if ((fname_len == class_name_len) && !ctor && !memcmp(lowercase_name, lc_class_name, class_name_len+1)) { 2154 ctor = reg_function; 2156 ctor = reg_function; 2206 scope->constructor = ctor; 2216 if (ctor) { 2217 ctor->common.fn_flags |= ZEND_ACC_CTOR; 2218 if (ctor->common.fn_flags & ZEND_ACC_STATIC) { 2219 zend_error(error_type, "Constructor %s::%s() cannot be static", scope->name, ctor [all...] |
| H A D | zend_execute_API.c | 1618 int ctor; 1628 if (!ai->ctor) { 1630 ai->ctor = 1;
|
| /PHP_TRUNK/ext/date/ |
| H A D | php_date.h | 205 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);
|
| H A D | php_date.c | 655 PHP_GINIT(date), /* globals ctor */ 2538 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) 2560 if (ctor && err && err->error_count) {
|
Completed in 31 milliseconds