Searched defs:list (Results 1 - 15 of 15) sorted by relevance

/httpd/include/
H A Dhttp_connection.h144 * @param list The freelist from which this bucket should be allocated
147 AP_DECLARE(apr_bucket *) ap_bucket_eoc_create(apr_bucket_alloc_t *list); variable
/httpd/modules/filters/
H A Dmod_ratelimit.h48 AP_RL_DECLARE(apr_bucket*) ap_rl_end_create(apr_bucket_alloc_t *list); variable
49 AP_RL_DECLARE(apr_bucket*) ap_rl_start_create(apr_bucket_alloc_t *list); variable
H A Dmod_ratelimit.c127 f = APR_RING_LAST(&bb->list);
129 APR_RING_SPLICE_TAIL(&ctx->holdingbb->list, e, f,
158 f = APR_RING_LAST(&bb->list);
160 APR_RING_SPLICE_TAIL(&ctx->holdingbb->list, e, f,
197 f = APR_RING_FIRST(&bb->list);
199 APR_RING_SPLICE_HEAD(&ctx->tmpbb->list, f, e, apr_bucket,
242 ap_rl_end_create(apr_bucket_alloc_t *list) argument
244 apr_bucket *b = apr_bucket_alloc(sizeof(*b), list);
248 b->list = list;
258 ap_rl_start_create(apr_bucket_alloc_t *list) argument
[all...]
/httpd/server/
H A Deoc_bucket.c38 AP_DECLARE(apr_bucket *) ap_bucket_eoc_create(apr_bucket_alloc_t *list) argument
40 apr_bucket *b = apr_bucket_alloc(sizeof(*b), list);
44 b->list = list;
H A Deor_bucket.c61 AP_DECLARE(apr_bucket *) ap_bucket_eor_create(apr_bucket_alloc_t *list, argument
64 apr_bucket *b = apr_bucket_alloc(sizeof(*b), list);
68 b->list = list;
H A Derror_bucket.c46 h = apr_bucket_alloc(sizeof(*h), b->list);
57 apr_bucket_alloc_t *list)
59 apr_bucket *b = apr_bucket_alloc(sizeof(*b), list);
63 b->list = list;
55 ap_bucket_error_create(int error, const char *buf, apr_pool_t *p, apr_bucket_alloc_t *list) argument
/httpd/modules/cache/
H A Dcache_storage.c36 cache_provider_list *list; local
39 list = cache->providers;
53 while(list) {
54 list->provider->remove_url(h, r);
55 list = list->next;
75 cache_provider_list *list; local
94 list = cache->providers;
96 while (list) {
97 switch (rv = list
216 cache_provider_list *list; local
686 cache_provider_list *list; local
[all...]
H A Dcache_util.c134 /* Fetch from global config and add to the list. */
785 CACHE_DECLARE(const char *)ap_cache_tokstr(apr_pool_t *p, const char *list, argument
791 s = ap_strchr_c(list, ',');
793 i = s - list;
800 i = strlen(list);
802 while (i > 0 && apr_isspace(list[i - 1]))
807 return apr_pstrndup(p, list, i);
/httpd/modules/proxy/
H A Dmod_proxy_connect.c120 port_range *list = (port_range *) conf->allowed_connect_ports->elts; local
128 if (port >= list[i].first && port <= list[i].last)
288 * At this point we have a list of one or more IP addresses of
290 * list so that the "best candidate" is first try. "best
506 "A list of ports or port ranges which CONNECT may connect to"),
H A Dmod_proxy_scgi.c90 apr_bucket_alloc_t *list);
110 buf = apr_bucket_alloc(*len, a->list);
134 APR_BUCKET_INSERT_AFTER(a, bucket_socket_ex_create(data, a->list));
163 apr_bucket_alloc_t *list)
165 apr_bucket *b = apr_bucket_alloc(sizeof(*b), list);
169 b->list = list;
162 bucket_socket_ex_create(socket_ex_data *data, apr_bucket_alloc_t *list) argument
H A Dmod_proxy.c737 /* long way - walk the list of aliases, find a match */
944 struct dirconn_entry *list = (struct dirconn_entry *)conf->dirconn->elts; local
1065 direct_connect = list[i].matcher(&list[i], r);
1889 struct noproxy_entry *list = (struct noproxy_entry *) conf->noproxies->elts; local
1896 if (strcasecmp(arg, list[i].name) == 0) { /* ignore case for host names */
1926 struct dirconn_entry *list = (struct dirconn_entry *) conf->dirconn->elts; local
1932 if (strcasecmp(arg, list[i].name) == 0) {
2560 "A list of names, hosts or domains to which the proxy will not connect"),
2568 "A list o
[all...]
/httpd/modules/dav/main/
H A Dutil.c272 ** ### maybe the admin should list the unqualified hosts in a
624 char *list; local
643 /* Tagged-list production - following states apply to this uri */
649 "unexpected tagged-list production.");
689 if ((list = dav_fetch_next_token(&str, ')')) == NULL) {
705 while (*list) {
708 switch (*list) {
710 if ((state_token = dav_fetch_next_token(&list, '>')) == NULL) {
725 if ((state_token = dav_fetch_next_token(&list, ']')) == NULL) {
740 if (list[
[all...]
/httpd/modules/generators/
H A Dmod_cgi.c572 apr_bucket_alloc_t *list)
574 apr_bucket *b = apr_bucket_alloc(sizeof(*b), list);
581 b->list = list;
622 apr_bucket_alloc_t *list)
624 apr_bucket *b = apr_bucket_alloc(sizeof(*b), list);
627 b->list = list;
645 buf = apr_bucket_alloc(*len, a->list); /* XXX: check for failure? */
663 APR_BUCKET_INSERT_AFTER(a, cgi_bucket_dup(data, a->list));
570 cgi_bucket_create(request_rec *r, apr_file_t *out, apr_file_t *err, apr_bucket_alloc_t *list) argument
621 cgi_bucket_dup(struct cgi_bucket_data *data, apr_bucket_alloc_t *list) argument
[all...]
H A Dmod_autoindex.c589 "Reset the inherited list of IndexIgnore filenames"),
760 char *path, apr_array_header_t *list, int path_only)
762 struct item *items = (struct item *) list->elts;
765 for (i = 0; i < list->nelts; ++i) {
802 static char *find_item_by_request(request_rec *r, apr_array_header_t *list, int path_only) argument
805 r->content_encoding, r->filename, list, path_only);
814 * Look through the list of pattern/description pairs and return the first one
830 ai_desc_t *list = (ai_desc_t *) dcfg->desc_list->elts; local
845 ai_desc_t *tuple = &list[i];
871 apr_array_header_t *list local
759 find_item(const char *content_type, const char *content_encoding, char *path, apr_array_header_t *list, int path_only) argument
[all...]
/httpd/modules/ssl/
H A Dmod_ssl_ct.c108 /** Limit on size of log URL list for a certificate
316 /* stick a 0 len (for the list) at the start of the file;
325 arr = NULL; /* Build list from scratch, creating array */
426 APLOGNO(02687) "could not write the SCT list length "
732 arr = NULL; /* Build list from scratch, creating array */
1639 /* add each SCT in the list to the all_scts array */
1705 APLOGNO(02726) "couldn't deserialize SCT list from "
1714 APLOGNO(02727) "couldn't deserialize SCT list from "
1723 APLOGNO(02728) "couldn't deserialize SCT list from "
2117 APLOGNO(02736) "Could not retrieve SCT list fro
2675 char *list, *last; local
[all...]

Completed in 2385 milliseconds