Searched refs:APR_HASH_KEY_STRING (Results 1 - 25 of 47) sorted by relevance

12

/macosx-10.10/apr-32/apr/apr/test/
H A Dtesthash.c94 apr_hash_set(h, "key", APR_HASH_KEY_STRING, "value");
95 result = apr_hash_get(h, "key", APR_HASH_KEY_STRING);
107 apr_hash_set(h, "key", APR_HASH_KEY_STRING, "value");
108 result = apr_hash_get(h, "key", APR_HASH_KEY_STRING);
111 apr_hash_set(h, "key", APR_HASH_KEY_STRING, "new");
112 result = apr_hash_get(h, "key", APR_HASH_KEY_STRING);
124 apr_hash_set(h, "same1", APR_HASH_KEY_STRING, "same");
125 result = apr_hash_get(h, "same1", APR_HASH_KEY_STRING);
128 apr_hash_set(h, "same2", APR_HASH_KEY_STRING, "same");
129 result = apr_hash_get(h, "same2", APR_HASH_KEY_STRING);
[all...]
/macosx-10.10/apache-793/httpd/server/
H A Dprovider.c52 APR_HASH_KEY_STRING);
56 apr_hash_set(global_providers, provider_group, APR_HASH_KEY_STRING,
62 APR_HASH_KEY_STRING);
66 apr_hash_set(provider_group_hash, provider_name, APR_HASH_KEY_STRING,
72 apr_hash_set(provider_version_hash, provider_version, APR_HASH_KEY_STRING,
77 APR_HASH_KEY_STRING);
81 apr_hash_set(global_providers_names, provider_group, APR_HASH_KEY_STRING,
87 APR_HASH_KEY_STRING);
91 apr_hash_set(provider_group_hash, provider_version, APR_HASH_KEY_STRING,
97 apr_hash_set(provider_version_hash, provider_name, APR_HASH_KEY_STRING,
[all...]
H A Dutil_mutex.c161 apr_hash_set(mxcfg_by_type, "default", APR_HASH_KEY_STRING, def);
225 mxcfg = apr_hash_get(mxcfg_by_type, type, APR_HASH_KEY_STRING);
273 apr_hash_set(mxcfg_by_type, type, APR_HASH_KEY_STRING, mxcfg);
322 defcfg = apr_hash_get(mxcfg_by_type, "default", APR_HASH_KEY_STRING);
325 mxcfg = apr_hash_get(mxcfg_by_type, type, APR_HASH_KEY_STRING);
503 mutex_cfg_t *defcfg = apr_hash_get(mxcfg_by_type, "default", APR_HASH_KEY_STRING);
/macosx-10.10/apr-32/apr/apr/test/internal/
H A Dtestregex.c74 apr_hash_set(h,apr_psprintf(context, "%dkey",i),APR_HASH_KEY_STRING,"1");
78 apr_hash_get( h, argv[2], APR_HASH_KEY_STRING);
82 apr_hash_set(h, argv[2],APR_HASH_KEY_STRING,"1");
85 apr_hash_get( h, argv[2], APR_HASH_KEY_STRING);
/macosx-10.10/apache-793/httpd/modules/lua/
H A Dlua_request.c1783 rft = apr_hash_get(dispatch, name, APR_HASH_KEY_STRING);
2558 apr_hash_set(dispatch, "puts", APR_HASH_KEY_STRING,
2560 apr_hash_set(dispatch, "write", APR_HASH_KEY_STRING,
2562 apr_hash_set(dispatch, "document_root", APR_HASH_KEY_STRING,
2564 apr_hash_set(dispatch, "context_prefix", APR_HASH_KEY_STRING,
2566 apr_hash_set(dispatch, "context_document_root", APR_HASH_KEY_STRING,
2568 apr_hash_set(dispatch, "parseargs", APR_HASH_KEY_STRING,
2570 apr_hash_set(dispatch, "parsebody", APR_HASH_KEY_STRING,
2572 apr_hash_set(dispatch, "debug", APR_HASH_KEY_STRING,
2574 apr_hash_set(dispatch, "info", APR_HASH_KEY_STRING,
[all...]
/macosx-10.10/apache-793/httpd/modules/dav/main/
H A Dliveprop.c45 value = (long)apr_hash_get(dav_liveprop_uris, uri, APR_HASH_KEY_STRING);
52 apr_hash_set(dav_liveprop_uris, uri, APR_HASH_KEY_STRING,
58 return (long)apr_hash_get(dav_liveprop_uris, uri, APR_HASH_KEY_STRING);
/macosx-10.10/apache-793/httpd/support/
H A Dlogresolve.c237 hostname = (char *) apr_hash_get(cache, line, APR_HASH_KEY_STRING);
275 apr_hash_set(cache, line, APR_HASH_KEY_STRING,
296 apr_hash_set(cache, line, APR_HASH_KEY_STRING,
306 apr_hash_set(cache, line, APR_HASH_KEY_STRING,
/macosx-10.10/apr-32/apr-util/apr-util/misc/
H A Dapu_dso.c124 *dsoptr = apr_hash_get(dsos, module, APR_HASH_KEY_STRING);
202 apr_hash_set(dsos, module, APR_HASH_KEY_STRING, *dsoptr);
/macosx-10.10/apache-793/httpd/modules/aaa/
H A Dmod_authz_host.c117 (*ip = apr_hash_get(parsed_subnets, w, APR_HASH_KEY_STRING)) != NULL)
139 apr_hash_set(parsed_subnets, w, APR_HASH_KEY_STRING, *ip);
272 apr_hash_set(parsed_subnets, "127.0.0.0/8", APR_HASH_KEY_STRING, localhost_v4);
276 apr_hash_set(parsed_subnets, "::1", APR_HASH_KEY_STRING, localhost_v6);
H A Dmod_authn_core.c123 provider_name, APR_HASH_KEY_STRING);
155 provider_name, APR_HASH_KEY_STRING);
279 apr_hash_set(authcfg->alias_rec, provider_alias, APR_HASH_KEY_STRING, prvdraliasrec);
H A Dmod_authz_dbd.c129 query = apr_hash_get(dbd->prepared, cfg->query, APR_HASH_KEY_STRING);
159 APR_HASH_KEY_STRING);
214 query = apr_hash_get(dbd->prepared, cfg->query, APR_HASH_KEY_STRING);
H A Dmod_authn_dbd.c121 statement = apr_hash_get(dbd->prepared, conf->user, APR_HASH_KEY_STRING);
214 statement = apr_hash_get(dbd->prepared, conf->realm, APR_HASH_KEY_STRING);
/macosx-10.10/apr-32/apr/apr/include/
H A Dapr_hash.h47 #define APR_HASH_KEY_STRING (-1) macro
62 * @param klen The length of the key, or APR_HASH_KEY_STRING to use the string
63 * length. If APR_HASH_KEY_STRING then returns the actual key length.
103 * @param klen Length of the key. Can be APR_HASH_KEY_STRING to use the string length.
114 * @param klen Length of the key. Can be APR_HASH_KEY_STRING to use the string length.
/macosx-10.10/apr-32/apr-util/apr-util/crypto/
H A Dapr_crypto_openssl.c268 apr_hash_set(f->types, "3des192", APR_HASH_KEY_STRING, &(key_3des_192));
269 apr_hash_set(f->types, "aes128", APR_HASH_KEY_STRING, &(key_aes_128));
270 apr_hash_set(f->types, "aes192", APR_HASH_KEY_STRING, &(key_aes_192));
271 apr_hash_set(f->types, "aes256", APR_HASH_KEY_STRING, &(key_aes_256));
277 apr_hash_set(f->modes, "ecb", APR_HASH_KEY_STRING, &(mode_ecb));
278 apr_hash_set(f->modes, "cbc", APR_HASH_KEY_STRING, &(mode_cbc));
H A Dapr_crypto_nss.c317 apr_hash_set(f->types, "3des192", APR_HASH_KEY_STRING, &(key_3des_192));
318 apr_hash_set(f->types, "aes128", APR_HASH_KEY_STRING, &(key_aes_128));
319 apr_hash_set(f->types, "aes192", APR_HASH_KEY_STRING, &(key_aes_192));
320 apr_hash_set(f->types, "aes256", APR_HASH_KEY_STRING, &(key_aes_256));
326 apr_hash_set(f->modes, "ecb", APR_HASH_KEY_STRING, &(mode_ecb));
327 apr_hash_set(f->modes, "cbc", APR_HASH_KEY_STRING, &(mode_cbc));
H A Dapr_crypto.c74 apr_hash_set(drivers,name,APR_HASH_KEY_STRING,&driver_name); \
164 *driver = apr_hash_get(drivers, name, APR_HASH_KEY_STRING);
191 apr_hash_set(drivers, name, APR_HASH_KEY_STRING, *driver);
/macosx-10.10/apr-32/apr-util/apr-util/dbm/
H A Dapr_dbm.c139 apr_hash_set(drivers, "sdbm", APR_HASH_KEY_STRING, &apr_dbm_type_sdbm);
153 *vtable = apr_hash_get(drivers, type, APR_HASH_KEY_STRING);
179 apr_hash_set(drivers, type, APR_HASH_KEY_STRING, *vtable);
/macosx-10.10/apr-32/apr-util/apr-util/test/
H A Dtestcrypto.c701 key_3des_192 = apr_hash_get(types, "3des192", APR_HASH_KEY_STRING);
705 key_aes_128 = apr_hash_get(types, "aes128", APR_HASH_KEY_STRING);
709 key_aes_192 = apr_hash_get(types, "aes192", APR_HASH_KEY_STRING);
713 key_aes_256 = apr_hash_get(types, "aes256", APR_HASH_KEY_STRING);
744 key_3des_192 = apr_hash_get(types, "3des192", APR_HASH_KEY_STRING);
748 key_aes_128 = apr_hash_get(types, "aes128", APR_HASH_KEY_STRING);
752 key_aes_192 = apr_hash_get(types, "aes192", APR_HASH_KEY_STRING);
756 key_aes_256 = apr_hash_get(types, "aes256", APR_HASH_KEY_STRING);
785 mode_ecb = apr_hash_get(modes, "ecb", APR_HASH_KEY_STRING);
789 mode_cbc = apr_hash_get(modes, "cbc", APR_HASH_KEY_STRING);
[all...]
/macosx-10.10/apache-793/httpd/modules/proxy/balancers/
H A Dmod_lbmethod_heartbeat.c168 server = apr_hash_get(servers, ip, APR_HASH_KEY_STRING);
176 apr_hash_set(servers, server->ip, APR_HASH_KEY_STRING, server);
219 hb_server_t *server = apr_hash_get(servers, slotserver->ip, APR_HASH_KEY_STRING);
225 apr_hash_set(servers, server->ip, APR_HASH_KEY_STRING, server);
303 server = apr_hash_get(servers, (*worker)->s->hostname, APR_HASH_KEY_STRING);
/macosx-10.10/apache-793/httpd/modules/filters/
H A Dmod_filter.c341 APR_HASH_KEY_STRING);
409 apr_hash_set(cfg->live_filters, fname, APR_HASH_KEY_STRING, filter);
448 frec = apr_hash_get(cfg->live_filters, fname, APR_HASH_KEY_STRING);
456 frec = apr_hash_get(cfg->live_filters, fname, APR_HASH_KEY_STRING);
585 if (apr_hash_get(cfg->live_filters, fname, APR_HASH_KEY_STRING)) {
626 APR_HASH_KEY_STRING);
656 filter = apr_hash_get(cfg->live_filters, p->fname, APR_HASH_KEY_STRING);
/macosx-10.10/apache-793/httpd/modules/core/
H A Dmod_macro.c735 macro = apr_hash_get(ap_macros, name, APR_HASH_KEY_STRING);
797 apr_hash_set(ap_macros, name, APR_HASH_KEY_STRING, macro);
829 macro = apr_hash_get(ap_macros, name, APR_HASH_KEY_STRING);
903 macro = apr_hash_get(ap_macros, name, APR_HASH_KEY_STRING);
912 apr_hash_set(ap_macros, name, APR_HASH_KEY_STRING, NULL);
/macosx-10.10/apache-793/httpd/modules/http/
H A Dmod_mime.c182 APR_HASH_KEY_STRING);
187 APR_HASH_KEY_STRING, exinfo);
265 APR_HASH_KEY_STRING);
270 apr_hash_set(m->extension_mappings, key, APR_HASH_KEY_STRING, exinfo);
470 apr_hash_set(mime_type_extensions, ext, APR_HASH_KEY_STRING, ct);
834 ext, APR_HASH_KEY_STRING);
839 APR_HASH_KEY_STRING)) != NULL) {
/macosx-10.10/apr-32/apr/apr/file_io/netware/
H A Dfilestat.c291 pathctx = (NXPathCtx_t) apr_hash_get(statCache, ppath, APR_HASH_KEY_STRING);
302 apr_hash_set(statCache, apr_pstrdup(gPool,ppath) , APR_HASH_KEY_STRING, (void*)pathctx);
/macosx-10.10/apache-793/httpd/modules/database/
H A Dmod_dbd.c328 if (apr_hash_get(svr->cfg->queries, label, APR_HASH_KEY_STRING)
334 apr_hash_set(svr->cfg->queries, label, APR_HASH_KEY_STRING, query);
391 APR_HASH_KEY_STRING);
413 APR_HASH_KEY_STRING, add_query->query);
458 apr_hash_set(rec->prepared, label, APR_HASH_KEY_STRING, stmt);
/macosx-10.10/apr-32/apr-util/apr-util/dbd/
H A Dapr_dbd.c72 apr_hash_set(drivers,name,APR_HASH_KEY_STRING,&driver); \
172 *driver = apr_hash_get(drivers, name, APR_HASH_KEY_STRING);
199 apr_hash_set(drivers, name, APR_HASH_KEY_STRING, *driver);

Completed in 320 milliseconds

12