Home
last modified time | relevance | path

Searched refs:zend_hash_init (Results 1 – 25 of 90) sorted by relevance

1234

/PHP-5.3/ext/dom/
H A Dphp_dom.c194 zend_hash_init(dest->classmap, 0, NULL, NULL, 0); in dom_copy_doc_props()
212 zend_hash_init(doc_props->classmap, 0, NULL, NULL, 0); in dom_set_doc_classmap()
672 zend_hash_init(&classes, 0, NULL, NULL, 1); in PHP_MINIT_FUNCTION()
687 zend_hash_init(&dom_namelist_prop_handlers, 0, NULL, NULL, 1); in PHP_MINIT_FUNCTION()
702 zend_hash_init(&dom_node_prop_handlers, 0, NULL, NULL, 1); in PHP_MINIT_FUNCTION()
738 zend_hash_init(&dom_document_prop_handlers, 0, NULL, NULL, 1); in PHP_MINIT_FUNCTION()
792 zend_hash_init(&dom_attr_prop_handlers, 0, NULL, NULL, 1); in PHP_MINIT_FUNCTION()
803 zend_hash_init(&dom_element_prop_handlers, 0, NULL, NULL, 1); in PHP_MINIT_FUNCTION()
811 zend_hash_init(&dom_text_prop_handlers, 0, NULL, NULL, 1); in PHP_MINIT_FUNCTION()
875 zend_hash_init(&dom_entity_prop_handlers, 0, NULL, NULL, 1); in PHP_MINIT_FUNCTION()
[all …]
/PHP-5.3/ext/soap/
H A Dphp_sdl.c743 zend_hash_init(&ctx.messages, 0, NULL, NULL, 0); in load_wsdl()
744 zend_hash_init(&ctx.bindings, 0, NULL, NULL, 0); in load_wsdl()
745 zend_hash_init(&ctx.portTypes, 0, NULL, NULL, 0); in load_wsdl()
746 zend_hash_init(&ctx.services, 0, NULL, NULL, 0); in load_wsdl()
1983 zend_hash_init(tmp_elements, i, NULL, NULL, 0); in sdl_serialize_type()
2131 zend_hash_init(&tmp_types, 0, NULL, NULL, 0); in add_sdl_to_cache()
2132 zend_hash_init(&tmp_encoders, 0, NULL, NULL, 0); in add_sdl_to_cache()
2133 zend_hash_init(&tmp_bindings, 0, NULL, NULL, 0); in add_sdl_to_cache()
2958 zend_hash_init(&bp_types, 0, NULL, NULL, 0); in make_persistent_sdl()
2959 zend_hash_init(&bp_encoders, 0, NULL, NULL, 0); in make_persistent_sdl()
[all …]
H A Dphp_schema.c56 zend_hash_init(sdl->encoders, 0, NULL, delete_encoder, 0); in create_encoder()
170 zend_hash_init(ctx->sdl->types, 0, NULL, delete_type, 0); in load_schema()
174 zend_hash_init(ctx->attributes, 0, NULL, delete_attribute, 0); in load_schema()
178 zend_hash_init(ctx->attributeGroups, 0, NULL, delete_type, 0); in load_schema()
335 zend_hash_init(sdl->encoders, 0, NULL, delete_encoder, 0); in schema_simpleType()
362 zend_hash_init(cur_type->elements, 0, NULL, delete_type, 0); in schema_simpleType()
436 zend_hash_init(cur_type->elements, 0, NULL, delete_type, 0); in schema_list()
471 zend_hash_init(cur_type->elements, 0, NULL, delete_type, 0); in schema_list()
1115 zend_hash_init(sdl->groups, 0, NULL, delete_type, 0); in schema_group()
1380 zend_hash_init(sdl->encoders, 0, NULL, delete_encoder, 0); in schema_complexType()
[all …]
/PHP-5.3/ext/pdo/
H A Dpdo_sqlstate.c317 if (FAILURE == zend_hash_init(&err_hash, in pdo_sqlstate_init_error_table()
H A Dpdo.c368 zend_hash_init(&pdo_driver_hash, 0, NULL, NULL, 1); in PHP_MINIT_FUNCTION()
H A Dpdo_sql_parser.c665 zend_hash_init(stmt->bound_param_map, 13, NULL, NULL, 0); in pdo_parse_params()
706 zend_hash_init(stmt->bound_param_map, 13, NULL, NULL, 0); in pdo_parse_params()
/PHP-5.3/Zend/
H A Dzend_objects.c32 zend_hash_init(object->properties, 0, NULL, ZVAL_PTR_DTOR, 0); in zend_object_std_init()
178 zend_hash_init(new_object->properties, 0, NULL, ZVAL_PTR_DTOR, 0); in zend_objects_clone_obj()
H A Dzend_list.c223 if (zend_hash_init(&EG(regular_list), 0, NULL, list_entry_destructor, 0)==SUCCESS) { in zend_init_rsrc_list()
339 retval = zend_hash_init(&list_destructors, 50, NULL, NULL, 1); in zend_init_rsrc_list_dtors()
H A Dzend_variables.c135 zend_hash_init(tmp_ht, zend_hash_num_elements(original_ht), NULL, ZVAL_PTR_DTOR, 0); in _zval_copy_ctor_func()
H A Dzend_closures.c240 zend_hash_init(closure->debug_info, 1, NULL, ZVAL_PTR_DTOR, 0); in zend_closure_get_debug_info()
396zend_hash_init(closure->func.op_array.static_variables, zend_hash_num_elements(static_variables), … in zend_create_closure()
H A Dzend_hash.h103 #define zend_hash_init(ht, nSize, pHashFunction, pDestructor, persistent) _zend_hash_init((ht)… macro
305 zend_hash_init(ht, n, NULL, ZVAL_PTR_DTOR, persistent) in END_EXTERN_C()
H A Dzend_execute_API.c161 zend_hash_init(&EG(symbol_table), 50, NULL, ZVAL_PTR_DTOR, 0); in init_executor()
177 zend_hash_init(&EG(included_files), 5, NULL, NULL, 0); in init_executor()
607 zend_hash_init(tmp_ht, zend_hash_num_elements(Z_ARRVAL_P(p)), NULL, ZVAL_PTR_DTOR, 0); in zval_update_constant_ex()
1087 zend_hash_init(EG(in_autoload), 0, NULL, NULL, 0); in zend_lookup_class_ex()
1703 zend_hash_init(EG(active_symbol_table), 0, NULL, ZVAL_PTR_DTOR, 0); in zend_rebuild_symbol_table()
/PHP-5.3/main/
H A Dphp_logos.c55 if(zend_hash_init(&phpinfo_logo_hash, 0, NULL, NULL, 1)==FAILURE) in php_init_info_logos()
H A Dphp3_compat.h29 #define _php3_hash_init zend_hash_init
H A Dphp_ini.c263 zend_hash_init(Z_ARRVAL_P(option_arr), 0, NULL, (dtor_func_t) config_zval_dtor, 1); in php_ini_parser_cb()
334 zend_hash_init(Z_ARRVAL_P(section_arr), 0, NULL, (dtor_func_t) config_zval_dtor, 1); in php_ini_parser_cb()
376 if (zend_hash_init(&configuration_hash, 0, NULL, (dtor_func_t) config_zval_dtor, 1) == FAILURE) { in php_init_config()
/PHP-5.3/ext/xsl/
H A Dphp_xsl.c134 zend_hash_init(intern->parameter, 0, NULL, ZVAL_PTR_DTOR, 0); in xsl_objects_new()
136 zend_hash_init(intern->registered_phpfunctions, 0, NULL, ZVAL_PTR_DTOR, 0); in xsl_objects_new()
/PHP-5.3/ext/standard/
H A Dphp_var.h54 zend_hash_init(&(var_hash), 10, NULL, NULL, 0)
H A Dincomplete_class.c113 zend_hash_init(object->properties, 0, NULL, ZVAL_PTR_DTOR, 0); in php_create_incomplete_object()
/PHP-5.3/win32/
H A Dregistry.c85 zend_hash_init(ht, 0, NULL, ZVAL_INTERNAL_PTR_DTOR, 1); in LoadDirectory()
187 zend_hash_init(PW32G(registry_directories), 0, NULL, delete_internal_hashtable, 1); in UpdateIniFromRegistry()
/PHP-5.3/ext/com_dotnet/
H A Dcom_wrapper.c469 zend_hash_init(disp->name_to_dispid, 0, NULL, ZVAL_PTR_DTOR, 0); in generate_dispids()
470 zend_hash_init(disp->dispid_to_name, 0, NULL, ZVAL_PTR_DTOR, 0); in generate_dispids()
606 zend_hash_init(disp->name_to_dispid, 0, NULL, ZVAL_PTR_DTOR, 0); in php_com_wrapper_export_as_sink()
/PHP-5.3/ext/mysqlnd/
H A Dmysqlnd_priv.h65 zend_hash_init(Z_ARRVAL_P(arg), (field_count), NULL, ZVAL_PTR_DTOR, 0); \
/PHP-5.3/ext/phar/
H A Dphar.c120 if (zend_hash_init(&EG(regular_list), 0, NULL, NULL, 0) == SUCCESS) { in phar_split_cache_list()
128 zend_hash_init(&cached_alias, sizeof(phar_archive_data*), zend_get_hash_value, NULL, 1); in phar_split_cache_list()
1046 zend_hash_init(&mydata->manifest, manifest_count,
1048 zend_hash_init(&mydata->mounted_dirs, 5,
1050 zend_hash_init(&mydata->virtual_dirs, manifest_count * 2,
1401 zend_hash_init(&mydata->manifest, sizeof(phar_entry_info),
1403 zend_hash_init(&mydata->mounted_dirs, sizeof(char *),
1405 zend_hash_init(&mydata->virtual_dirs, sizeof(char *),
3476 zend_hash_init(&phar_globals->mime_types, 0, NULL, NULL, 1);
3595 zend_hash_init(&(PHAR_GLOBALS->phar_persist_map), 5, zend_get_hash_value, NULL, 0);
[all …]
/PHP-5.3/sapi/apache2filter/
H A Dapache_config.c206 zend_hash_init(&newx->config, 0, NULL, NULL, 1); in create_php_config()
/PHP-5.3/ext/mysqli/
H A Dmysqli.c605 zend_hash_init(&classes, 0, NULL, NULL, 1); in PHP_MINIT_FUNCTION()
623 zend_hash_init(&mysqli_driver_properties, 0, NULL, NULL, 1); in PHP_MINIT_FUNCTION()
631 zend_hash_init(&mysqli_link_properties, 0, NULL, NULL, 1); in PHP_MINIT_FUNCTION()
639 zend_hash_init(&mysqli_warning_properties, 0, NULL, NULL, 1); in PHP_MINIT_FUNCTION()
646 zend_hash_init(&mysqli_result_properties, 0, NULL, NULL, 1); in PHP_MINIT_FUNCTION()
653 zend_hash_init(&mysqli_stmt_properties, 0, NULL, NULL, 1); in PHP_MINIT_FUNCTION()
/PHP-5.3/sapi/apache2handler/
H A Dapache_config.c229 zend_hash_init(&newx->config, 0, NULL, NULL, 1); in create_php_config()

Completed in 94 milliseconds

1234