Searched refs:dtor_func_t (Results 1 - 15 of 15) sorted by relevance
| /PHP_TRUNK/Zend/ |
| H A D | zend_ts_hash.c | 62 ZEND_API int _zend_ts_hash_init(TsHashTable *ht, uint nSize, hash_func_t pHashFunction, dtor_func_t pDestructor, zend_bool persistent ZEND_FILE_LINE_DC) 72 ZEND_API int _zend_ts_hash_init_ex(TsHashTable *ht, uint nSize, hash_func_t pHashFunction, dtor_func_t pDestructor, zend_bool persistent, zend_bool bApplyProtection ZEND_FILE_LINE_DC)
|
| H A D | zend_ts_hash.h | 40 ZEND_API int _zend_ts_hash_init(TsHashTable *ht, uint nSize, hash_func_t pHashFunction, dtor_func_t pDestructor, zend_bool persistent ZEND_FILE_LINE_DC); 41 ZEND_API int _zend_ts_hash_init_ex(TsHashTable *ht, uint nSize, hash_func_t pHashFunction, dtor_func_t pDestructor, zend_bool persistent, zend_bool bApplyProtection ZEND_FILE_LINE_DC);
|
| H A D | zend_hash.h | 48 typedef void (*dtor_func_t)(void *pDest); typedef 75 dtor_func_t pDestructor; 99 ZEND_API int _zend_hash_init(HashTable *ht, uint nSize, hash_func_t pHashFunction, dtor_func_t pDestructor, zend_bool persistent ZEND_FILE_LINE_DC); 100 ZEND_API int _zend_hash_init_ex(HashTable *ht, uint nSize, hash_func_t pHashFunction, dtor_func_t pDestructor, zend_bool persistent, zend_bool bApplyProtection ZEND_FILE_LINE_DC);
|
| H A D | zend_hash.c | 148 ZEND_API int _zend_hash_init(HashTable *ht, uint nSize, hash_func_t pHashFunction, dtor_func_t pDestructor, zend_bool persistent ZEND_FILE_LINE_DC) 179 ZEND_API int _zend_hash_init_ex(HashTable *ht, uint nSize, hash_func_t pHashFunction, dtor_func_t pDestructor, zend_bool persistent, zend_bool bApplyProtection ZEND_FILE_LINE_DC)
|
| H A D | zend_compile.c | 228 zend_hash_init(&CG(filenames_table), 5, NULL, (dtor_func_t) free_estring, 0); 6808 dtor_func_t zval_ptr_dtor_func = ((persistent_hashes) ? ZVAL_INTERNAL_PTR_DTOR : ZVAL_PTR_DTOR); 6815 zend_hash_init_ex(&ce->properties_info, 0, NULL, (dtor_func_t) (persistent_hashes ? zend_destroy_property_info_internal : zend_destroy_property_info), persistent_hashes, 0);
|
| /PHP_TRUNK/ext/mbstring/ |
| H A D | mbstring.c | 4085 zend_hash_init(&ht_headers, 0, NULL, (dtor_func_t) my_smart_str_dtor, 0);
|
| /PHP_TRUNK/ext/spl/ |
| H A D | php_spl.c | 582 zend_hash_init(SPL_G(autoload_functions), 1, NULL, (dtor_func_t) autoload_func_info_dtor, 0);
|
| /PHP_TRUNK/ext/standard/ |
| H A D | browscap.c | 212 (dtor_func_t) (persistent?browscap_entry_dtor_persistent 256 (dtor_func_t) (persistent?browscap_entry_dtor_persistent
|
| H A D | user_filters.c | 599 zend_hash_init(BG(user_filter_map), 5, NULL, (dtor_func_t) filter_item_dtor, 0);
|
| /PHP_TRUNK/main/ |
| H A D | php_ini.c | 263 zend_hash_init(Z_ARRVAL_P(option_arr), 0, NULL, (dtor_func_t) config_zval_dtor, 1); 334 zend_hash_init(Z_ARRVAL_P(section_arr), 0, NULL, (dtor_func_t) config_zval_dtor, 1); 392 if (zend_hash_init(&configuration_hash, 0, NULL, (dtor_func_t) config_zval_dtor, 1) == FAILURE) {
|
| /PHP_TRUNK/main/streams/ |
| H A D | streams.c | 266 (dtor_func_t)zend_llist_destroy, 0);
|
| /PHP_TRUNK/ext/opcache/ |
| H A D | ZendAccelerator.c | 2165 zvalue->value.ht->pDestructor = (dtor_func_t)accel_fast_zval_ptr_dtor; 2204 function->op_array.static_variables->pDestructor = (dtor_func_t)accel_fast_zval_ptr_dtor; 2218 function->op_array.static_variables->pDestructor = (dtor_func_t)accel_fast_zval_ptr_dtor; 2251 ce->static_members->pDestructor = (dtor_func_t)accel_fast_zval_ptr_dtor; 2273 EG(symbol_table).pDestructor = (dtor_func_t)accel_fast_zval_ptr_dtor; 2275 dtor_func_t old_destructor; 2281 EG(symbol_table).pDestructor = (dtor_func_t)accel_fast_zval_ptr_dtor;
|
| H A D | zend_accelerator_util_funcs.c | 70 ce->function_table.pDestructor = (dtor_func_t) zend_accel_destroy_zend_function; 79 zend_hash_init(&persistent_script->function_table, 100, NULL, (dtor_func_t) zend_accel_destroy_zend_function, 0); 92 persistent_script->function_table.pDestructor = (dtor_func_t)zend_accel_destroy_zend_function; 93 persistent_script->class_table.pDestructor = (dtor_func_t)zend_accel_destroy_zend_class; 116 dtor_func_t orig_dtor = ht->pDestructor; 145 dtor_func_t orig_dtor = src->pDestructor; 463 ht->pDestructor = (dtor_func_t) zend_destroy_property_info;
|
| /PHP_TRUNK/sapi/cgi/ |
| H A D | cgi_main.c | 762 zend_hash_init(new_entry->user_config, 0, NULL, (dtor_func_t) config_zval_dtor, 1); 1482 zend_hash_init(&php_cgi_globals->user_config_cache, 0, NULL, (dtor_func_t) user_config_cache_entry_dtor, 1);
|
| /PHP_TRUNK/sapi/fpm/fpm/ |
| H A D | fpm_main.c | 702 zend_hash_init(new_entry->user_config, 0, NULL, (dtor_func_t) config_zval_dtor, 1); 1465 zend_hash_init(&php_cgi_globals->user_config_cache, 0, NULL, (dtor_func_t) user_config_cache_entry_dtor, 1);
|
Completed in 53 milliseconds