Searched refs:apr_bucket (Results 1 - 25 of 85) sorted by relevance

1234

/macosx-10.10/apr-32/apr-util/apr-util/buckets/
H A Dapr_buckets.c19 APU_DECLARE_NONSTD(apr_status_t) apr_bucket_setaside_noop(apr_bucket *data,
25 APU_DECLARE_NONSTD(apr_status_t) apr_bucket_setaside_notimpl(apr_bucket *data,
31 APU_DECLARE_NONSTD(apr_status_t) apr_bucket_split_notimpl(apr_bucket *data,
37 APU_DECLARE_NONSTD(apr_status_t) apr_bucket_copy_notimpl(apr_bucket *e,
38 apr_bucket **c)
H A Dapr_buckets_simple.c19 APU_DECLARE_NONSTD(apr_status_t) apr_bucket_simple_copy(apr_bucket *a,
20 apr_bucket **b)
28 APU_DECLARE_NONSTD(apr_status_t) apr_bucket_simple_split(apr_bucket *a,
31 apr_bucket *b;
48 static apr_status_t simple_bucket_read(apr_bucket *b, const char **str,
56 APU_DECLARE(apr_bucket *) apr_bucket_immortal_make(apr_bucket *b,
68 APU_DECLARE(apr_bucket *) apr_bucket_immortal_create(const char *buf,
72 apr_bucket *b = apr_bucket_alloc(sizeof(*b), list);
89 static apr_status_t transient_bucket_setaside(apr_bucket *
[all...]
H A Dapr_buckets_eos.c19 static apr_status_t eos_bucket_read(apr_bucket *b, const char **str,
27 APU_DECLARE(apr_bucket *) apr_bucket_eos_make(apr_bucket *b)
37 APU_DECLARE(apr_bucket *) apr_bucket_eos_create(apr_bucket_alloc_t *list)
39 apr_bucket *b = apr_bucket_alloc(sizeof(*b), list);
H A Dapr_buckets_flush.c19 static apr_status_t flush_bucket_read(apr_bucket *b, const char **str,
27 APU_DECLARE(apr_bucket *) apr_bucket_flush_make(apr_bucket *b)
37 APU_DECLARE(apr_bucket *) apr_bucket_flush_create(apr_bucket_alloc_t *list)
39 apr_bucket *b = apr_bucket_alloc(sizeof(*b), list);
H A Dapr_buckets_refcount.c19 APU_DECLARE_NONSTD(apr_status_t) apr_bucket_shared_split(apr_bucket *a,
33 APU_DECLARE_NONSTD(apr_status_t) apr_bucket_shared_copy(apr_bucket *a,
34 apr_bucket **b)
51 APU_DECLARE(apr_bucket *) apr_bucket_shared_make(apr_bucket *b, void *data,
H A Dapr_buckets_heap.c21 static apr_status_t heap_bucket_read(apr_bucket *b, const char **str,
43 APU_DECLARE(apr_bucket *) apr_bucket_heap_make(apr_bucket *b, const char *buf,
76 APU_DECLARE(apr_bucket *) apr_bucket_heap_create(const char *buf,
81 apr_bucket *b = apr_bucket_alloc(sizeof(*b), list);
H A Dapr_buckets_pipe.c19 static apr_status_t pipe_bucket_read(apr_bucket *a, const char **str,
78 APU_DECLARE(apr_bucket *) apr_bucket_pipe_make(apr_bucket *b, apr_file_t *p)
101 APU_DECLARE(apr_bucket *) apr_bucket_pipe_create(apr_file_t *p,
104 apr_bucket *b = apr_bucket_alloc(sizeof(*b), list);
H A Dapr_buckets_socket.c19 static apr_status_t socket_bucket_read(apr_bucket *a, const char **str,
78 APU_DECLARE(apr_bucket *) apr_bucket_socket_make(apr_bucket *b, apr_socket_t *p)
96 APU_DECLARE(apr_bucket *) apr_bucket_socket_create(apr_socket_t *p,
99 apr_bucket *b = apr_bucket_alloc(sizeof(*b), list);
H A Dapr_buckets_mmap.c21 static apr_status_t mmap_bucket_read(apr_bucket *b, const char **str,
71 APU_DECLARE(apr_bucket *) apr_bucket_mmap_make(apr_bucket *b, apr_mmap_t *mm,
90 APU_DECLARE(apr_bucket *) apr_bucket_mmap_create(apr_mmap_t *mm,
95 apr_bucket *b = apr_bucket_alloc(sizeof(*b), list);
103 static apr_status_t mmap_bucket_setaside(apr_bucket *b, apr_pool_t *p)
H A Dapr_buckets_pool.c45 static apr_status_t pool_bucket_read(apr_bucket *b, const char **str,
93 APU_DECLARE(apr_bucket *) apr_bucket_pool_make(apr_bucket *b,
122 APU_DECLARE(apr_bucket *) apr_bucket_pool_create(const char *buf,
127 apr_bucket *b = apr_bucket_alloc(sizeof(*b), list);
H A Dapr_buckets_file.c44 static int file_make_mmap(apr_bucket *e, apr_size_t filelength,
75 static apr_status_t file_bucket_read(apr_bucket *e, const char **str,
80 apr_bucket *b = NULL;
137 /* for efficiency, we can just build a new apr_bucket struct
156 APU_DECLARE(apr_bucket *) apr_bucket_file_make(apr_bucket *b, apr_file_t *fd,
175 APU_DECLARE(apr_bucket *) apr_bucket_file_create(apr_file_t *fd,
180 apr_bucket *b = apr_bucket_alloc(sizeof(*b), list);
188 APU_DECLARE(apr_status_t) apr_bucket_file_enable_mmap(apr_bucket *e,
201 static apr_status_t file_bucket_setaside(apr_bucket *dat
[all...]
H A Dapr_brigade.c40 apr_bucket *e;
65 APR_RING_INIT(&b->list, apr_bucket, link);
72 apr_bucket *e,
75 apr_bucket *f;
89 APR_RING_SPLICE_HEAD(&a->list, e, f, apr_bucket, link);
99 apr_bucket *e)
106 apr_bucket **after_point)
108 apr_bucket *e;
194 apr_bucket *bkt;
227 apr_bucket *
[all...]
/macosx-10.10/apr-32/apr-util/apr-util/include/
H A Dapr_buckets.h120 /** @see apr_bucket */
121 typedef struct apr_bucket apr_bucket; typedef in typeref:struct:apr_bucket
145 * the ->length of the apr_bucket itself. In other words, an
176 apr_status_t (*read)(apr_bucket *b, const char **str, apr_size_t *len,
192 apr_status_t (*setaside)(apr_bucket *e, apr_pool_t *pool);
203 apr_status_t (*split)(apr_bucket *e, apr_size_t point);
211 apr_status_t (*copy)(apr_bucket *e, apr_bucket **c);
216 * apr_bucket structure
224 struct apr_bucket { struct
[all...]
/macosx-10.10/apache-793/httpd/server/
H A Deoc_bucket.c20 static apr_status_t eoc_bucket_read(apr_bucket *b, const char **str,
28 AP_DECLARE(apr_bucket *) ap_bucket_eoc_make(apr_bucket *b)
38 AP_DECLARE(apr_bucket *) ap_bucket_eoc_create(apr_bucket_alloc_t *list)
40 apr_bucket *b = apr_bucket_alloc(sizeof(*b), list);
H A Deor_bucket.c24 apr_bucket *b = (apr_bucket *)data;
43 static apr_status_t eor_bucket_read(apr_bucket *b, const char **str,
51 AP_DECLARE(apr_bucket *) ap_bucket_eor_make(apr_bucket *b, request_rec *r)
61 AP_DECLARE(apr_bucket *) ap_bucket_eor_create(apr_bucket_alloc_t *list,
64 apr_bucket *b = apr_bucket_alloc(sizeof(*b), list);
H A Derror_bucket.c24 static apr_status_t error_bucket_read(apr_bucket *b, const char **str,
41 AP_DECLARE(apr_bucket *) ap_bucket_error_make(apr_bucket *b, int error,
55 AP_DECLARE(apr_bucket *) ap_bucket_error_create(int error, const char *buf,
59 apr_bucket *b = apr_bucket_alloc(sizeof(*b), list);
H A Dcore_filters.c63 apr_bucket *e = APR_BRIGADE_FIRST(b); \
66 apr_bucket *d; \
162 apr_bucket *e;
214 apr_bucket *e;
231 apr_bucket *e;
312 apr_bucket *copy_bucket;
357 apr_bucket *bucket,
378 apr_bucket *bucket, *next, *flush_upto = NULL;
621 apr_bucket *bucket, *next;
718 apr_bucket *bucke
[all...]
/macosx-10.10/apache-793/httpd/include/
H A Dhttp_connection.h134 AP_DECLARE(apr_bucket *) ap_bucket_eoc_make(apr_bucket *b);
142 AP_DECLARE(apr_bucket *) ap_bucket_eoc_create(apr_bucket_alloc_t *list);
H A Dhttp_request.h571 AP_DECLARE(apr_bucket *) ap_bucket_eor_make(apr_bucket *b, request_rec *r);
582 AP_DECLARE(apr_bucket *) ap_bucket_eor_create(apr_bucket_alloc_t *list,
/macosx-10.10/apache-793/httpd/modules/filters/
H A Dmod_ratelimit.c46 apr_bucket *e;
63 apr_bucket *fb;
115 apr_bucket *e;
127 apr_bucket *f;
131 apr_bucket, link);
158 apr_bucket *f;
162 apr_bucket, link);
169 apr_bucket *stop_point;
196 apr_bucket *f;
197 apr_bucket *
[all...]
H A Dmod_ratelimit.h48 AP_RL_DECLARE(apr_bucket*) ap_rl_end_create(apr_bucket_alloc_t *list);
49 AP_RL_DECLARE(apr_bucket*) ap_rl_start_create(apr_bucket_alloc_t *list);
/macosx-10.10/apache-793/httpd/modules/examples/
H A Dmod_case_filter.c60 apr_bucket *pbktIn;
72 apr_bucket *pbktOut;
76 apr_bucket *pbktEOS=apr_bucket_eos_create(c->bucket_alloc);
/macosx-10.10/apache-793/httpd/modules/http/
H A Dchunk_filter.c53 apr_bucket *e;
58 apr_bucket *eos = NULL;
59 apr_bucket *flush = NULL;
/macosx-10.10/apache-793/httpd/modules/debugging/
H A Dmod_bucketeer.c64 apr_bucket *e;
111 apr_bucket *cpy;
126 apr_bucket *p;
153 apr_bucket *p;
/macosx-10.10/apache-793/httpd/modules/test/
H A Dmod_dialup.c54 apr_bucket *e;
68 apr_bucket *f;
69 apr_bucket *b = APR_BUCKET_PREV(e);
72 APR_RING_SPLICE_HEAD(&db->tmpbb->list, f, b, apr_bucket, link);
141 apr_bucket *e;

Completed in 145 milliseconds

1234