/httpd/modules/ssl/ |
H A D | ssl_util.c | 140 * which are stored in the user data table of s->process->pool. 145 unsigned char *ssl_asn1_table_set(apr_hash_t *table, argument 150 ssl_asn1_t *asn1 = apr_hash_get(table, key, klen); 174 apr_hash_set(table, key, klen, asn1); 179 ssl_asn1_t *ssl_asn1_table_get(apr_hash_t *table, argument 182 return (ssl_asn1_t *)apr_hash_get(table, key, APR_HASH_KEY_STRING); 185 void ssl_asn1_table_unset(apr_hash_t *table, argument 189 ssl_asn1_t *asn1 = apr_hash_get(table, key, klen); 200 apr_hash_set(table, key, klen, NULL);
|
H A D | ssl_engine_init.c | 1534 apr_hash_t *table; local 1573 table = apr_hash_make(p); 1588 if ((ps = (server_rec *)apr_hash_get(table, key, klen))) { 1602 apr_hash_set(table, key, klen, s);
|
/httpd/server/ |
H A D | util_script.c | 88 static void add_unless_null(apr_table_t *table, const char *name, const char *val) argument 91 apr_table_addn(table, name, val); 95 static void env2env(apr_table_t *table, const char *name) argument 97 add_unless_null(table, name, getenv(name)); 848 AP_DECLARE(void) ap_args_to_table(request_rec *r, apr_table_t **table) argument 852 *table = t;
|
H A D | log.c | 715 static int log_table_entry(const apr_table_t *table, const char *name, argument 722 if ((value = apr_table_get(table, name)) != NULL) { 729 return cpystrn(buf, apr_table_get(table, name), buflen);
|
/httpd/modules/cache/ |
H A D | mod_cache_disk.c | 776 apr_table_t *table, apr_file_t *file) 851 apr_table_add(table, w, l); 900 static apr_status_t store_table(apr_file_t *fd, apr_table_t *table) argument 908 elts = (apr_table_entry_t *) apr_table_elts(table)->elts; 909 for (i = 0; i < apr_table_elts(table)->nelts; ++i) { 775 read_table(cache_handle_t *handle, request_rec *r, apr_table_t *table, apr_file_t *file) argument
|
H A D | mod_cache_socache.c | 190 apr_table_t *table, unsigned char *buffer, apr_size_t buffer_len, 220 apr_table_addn(table, apr_pstrndup(r->pool, (const char *) buffer 242 static apr_status_t store_table(apr_table_t *table, unsigned char *buffer, argument 248 elts = (apr_table_entry_t *) apr_table_elts(table)->elts; 249 for (i = 0; i < apr_table_elts(table)->nelts; ++i) { 1392 "<table cellspacing=0 cellpadding=0>\n" 1432 ap_rputs("</td></tr>\n</table>\n", r); 189 read_table(cache_handle_t *handle, request_rec *r, apr_table_t *table, unsigned char *buffer, apr_size_t buffer_len, apr_size_t *slider) argument
|
/httpd/modules/aaa/ |
H A D | mod_auth_digest.c | 123 client_entry **table; member in struct:hash_table 278 client_list->table = (client_entry**) (client_list + 1); 280 client_list->table[idx] = NULL; 683 * The clients are kept in a simple hash table, which consists of an 697 * and it keeps the hash table evenly balanced (i.e. same number of entries 739 entry = client_list->table[bucket]; 750 entry->next = client_list->table[bucket]; 751 client_list->table[bucket] = entry; 781 entry = client_list->table[idx]; 791 client_list->table[id [all...] |
/httpd/modules/loggers/ |
H A D | mod_log_config.c | 472 const apr_table_t *table, 485 elts = apr_table_elts(table); 471 find_multiple_headers(apr_pool_t *pool, const apr_table_t *table, const char *key) argument
|
/httpd/modules/proxy/ |
H A D | mod_proxy_http.c | 113 /* Clear all connection-based headers from the incoming headers table */ 116 apr_table_t *table; member in struct:header_dptr 122 apr_table_t *headers = ((header_dptr*)data)->table; 131 ((header_dptr*)data)->table = headers = apr_table_make(pool, 2); 172 x.table = NULL; 175 if (x.table != NULL) { 177 return apr_table_overlay(p, headers, x.table);
|