Lines Matching defs:pool
35 AP_DECLARE(apr_status_t) ap_register_provider(apr_pool_t *pool,
44 global_providers = apr_hash_make(pool);
45 global_providers_names = apr_hash_make(pool);
46 apr_pool_cleanup_register(pool, NULL, cleanup_global_providers,
55 provider_group_hash = apr_hash_make(pool);
65 provider_version_hash = apr_hash_make(pool);
80 provider_group_hash = apr_hash_make(pool);
90 provider_version_hash = apr_hash_make(pool);
131 AP_DECLARE(apr_array_header_t *) ap_list_provider_names(apr_pool_t *pool,
135 apr_array_header_t *ret = apr_array_make(pool, 10, sizeof(ap_list_provider_names_t));
159 for (hi = apr_hash_first(pool, h); hi; hi = apr_hash_next(hi)) {
162 entry->provider_name = apr_pstrdup(pool, val);
167 AP_DECLARE(apr_array_header_t *) ap_list_provider_groups(apr_pool_t *pool)
169 apr_array_header_t *ret = apr_array_make(pool, 10, sizeof(ap_list_provider_groups_t));
178 for (groups_hi = apr_hash_first(pool, global_providers_names);
185 for (vers_hi = apr_hash_first(pool, provider_group_hash);