Searched refs:zend_hash_init_ex (Results 1 - 11 of 11) sorted by relevance
| /PHP_TRUNK/Zend/ |
| H A D | zend_ini.c | 96 if (zend_hash_init_ex(registered_zend_ini_directives, 100, NULL, NULL, 1, 0) == FAILURE) { 139 if (zend_hash_init_ex(EG(ini_directives), registered_zend_ini_directives->nNumOfElements, NULL, NULL, 1, 0) == FAILURE) {
|
| H A D | zend_list.c | 233 return zend_hash_init_ex(&EG(persistent_list), 0, NULL, plist_entry_destructor, 1, 0);
|
| H A D | zend.c | 515 zend_hash_init_ex(compiler_globals->function_table, 100, NULL, ZEND_FUNCTION_DTOR, 1, 0); 519 zend_hash_init_ex(compiler_globals->class_table, 10, NULL, ZEND_CLASS_DTOR, 1, 0); 527 zend_hash_init_ex(compiler_globals->auto_globals, 8, NULL, NULL, 1, 0); 708 zend_hash_init_ex(GLOBAL_FUNCTION_TABLE, 100, NULL, ZEND_FUNCTION_DTOR, 1, 0); 709 zend_hash_init_ex(GLOBAL_CLASS_TABLE, 10, NULL, ZEND_CLASS_DTOR, 1, 0); 710 zend_hash_init_ex(GLOBAL_AUTO_GLOBALS_TABLE, 8, NULL, NULL, 1, 0); 711 zend_hash_init_ex(GLOBAL_CONSTANTS_TABLE, 20, NULL, ZEND_CONSTANT_DTOR, 1, 0); 713 zend_hash_init_ex(&module_registry, 50, NULL, ZEND_MODULE_DTOR, 1, 0);
|
| H A D | zend_hash.h | 104 #define zend_hash_init_ex(ht, nSize, pHashFunction, pDestructor, persistent, bApplyProtection) _zend_hash_init_ex((ht), (nSize), (pHashFunction), (pDestructor), (persistent), (bApplyProtection) ZEND_FILE_LINE_CC) macro
|
| H A D | zend_compile.c | 3912 zend_hash_init_ex(*overriden, 2, NULL, NULL, 0, 0); 4210 zend_hash_init_ex(&exclude_table, 2, NULL, NULL, 0, 0); 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); 6816 zend_hash_init_ex(&ce->constants_table, 0, NULL, zval_ptr_dtor_func, persistent_hashes, 0); 6817 zend_hash_init_ex(&ce->function_table, 0, NULL, ZEND_FUNCTION_DTOR, persistent_hashes, 0);
|
| /PHP_TRUNK/ext/pdo/ |
| H A D | pdo_dbh.c | 1305 zend_hash_init_ex(dbh->cls_methods[kind], 8, NULL, NULL, dbh->is_persistent, 0);
|
| /PHP_TRUNK/ext/standard/ |
| H A D | browscap.c | 255 if (zend_hash_init_ex(browdata->htab, 0, NULL,
|
| /PHP_TRUNK/main/ |
| H A D | SAPI.c | 63 zend_hash_init_ex(&sapi_globals->known_post_content_types, 5, NULL, NULL, 1, 0);
|
| /PHP_TRUNK/sapi/apache/ |
| H A D | mod_php5.c | 771 zend_hash_init_ex(per_dir_info, 5, NULL, (void (*)(void *)) destroy_per_dir_entry, 1, 0);
|
| /PHP_TRUNK/sapi/apache_hooks/ |
| H A D | mod_php5.c | 857 zend_hash_init_ex(conf->ini_settings, 5, NULL, (void (*)(void *)) destroy_per_dir_entry, 1, 0);
|
| /PHP_TRUNK/ext/pgsql/ |
| H A D | pgsql.c | 935 zend_hash_init_ex(&pgsql_globals->notices, 0, NULL, PHP_PGSQL_NOTICE_PTR_DTOR, 1, 0);
|
Completed in 44 milliseconds