Searched defs:data (Results 1 - 25 of 94) sorted by relevance

1234

/httpd/include/
H A Dutil_cfgtree.h59 /** directive's module can store add'l data here */
60 void *data; member in struct:ap_directive_t
H A Dhttp_protocol.h263 * @param length Amount of data to send
264 * @param nbytes Amount of data actually sent
275 * @param length The amount of data to send
427 * Output data to the client in a printf format
436 * Output data to the client in a printf format
446 * Flush all of the data for the current request to the client
469 /* Reading a block of data from the client connection (e.g., POST arg) */
485 * Determine if the client has sent any data. This also sends a
495 * Call this in a loop. It will put data into a buffer and return the length
498 * @param buffer The buffer in which to store the data
721 const char *data; member in struct:ap_bucket_error
[all...]
H A Dap_expr.h131 /** Arbitrary context data provided by the caller for custom functions */
132 void *data; member in struct:__anon2
139 * @param ctx The evaluation context with all data filled in
193 * may also parse that argument and store the parsed data in the context.
207 * @param data An opaque context provided by the lookup hook function
211 typedef int ap_expr_op_unary_t(ap_expr_eval_ctx_t *ctx, const void *data,
217 * @param data An opaque context provided by the lookup hook function
222 typedef int ap_expr_op_binary_t(ap_expr_eval_ctx_t *ctx, const void *data,
227 * @param data An opaque context provided by the lookup hook function
232 const void *data,
284 const void **data; member in struct:__anon3
[all...]
H A Dapreq.h38 * Define the common data structures.
42 * Read chucks of data in 64k blocks from the request
56 * heap-buckets in a brigade. Excess data will be spooled to an
193 apr_size_t dlen; /**< length of data */
194 char data[1]; /**< value data */ member in struct:apreq_value_t
210 apr_table_addn(t, v->name, v->data);
/httpd/server/
H A Deor_bucket.c22 static apr_status_t eor_bucket_cleanup(void *data) argument
24 apr_bucket *b = (apr_bucket *)data;
25 request_rec *r = (request_rec *)b->data;
32 b->data = NULL;
55 b->data = r;
84 static void eor_bucket_destroy(void *data) argument
86 request_rec *r = (request_rec *)data;
H A Derror_bucket.c32 static void error_bucket_destroy(void *data) argument
34 ap_bucket_error *h = data;
48 h->data = apr_pstrdup(p, buf);
H A Dutil_xml.c70 const char *data; local
82 status = apr_bucket_read(bucket, &data, &len, APR_BLOCK_READ);
96 status = apr_xml_parser_feed(parser, data, len);
H A Dapreq_param.c50 memcpy(v->data, val, vlen);
51 v->data[vlen] = 0;
54 v->name = v->data + vlen + 1;
86 status = apreq_decode(v->data, &v->dlen, word + nlen + 1, vlen);
91 charset = apreq_charset_divine(v->data, v->dlen);
94 v->data[0] = 0;
98 v->name = v->data + vlen + 1;
132 char *data; local
133 data = apr_palloc(pool, 3 * (param->v.nlen + param->v.dlen) + 2);
134 dlen = apreq_encode(data, para
191 param_push(void *data, const char *key, const char *val) argument
233 upload_push(void *data, const char *key, const char *val) argument
252 upload_set(void *data, const char *key, const char *val) argument
[all...]
H A Dapreq_parser_header.c65 const char *data; local
102 s = apr_bucket_read(e, &data, &dlen, APR_BLOCK_READ);
113 dest = v->data;
116 s = apr_bucket_read(e, &data, &dlen, APR_BLOCK_READ);
120 memcpy(dest, data, dlen);
133 v->dlen = (dest - v->data) - 1;
187 const char *data; local
196 s = apr_bucket_read(e, &data, &dlen, APR_BLOCK_READ);
219 switch (data[off++]) {
238 data
[all...]
H A Dapreq_parser_urlencoded.c119 s = apreq_decodev(v->data, &vlen,
124 charset = apreq_charset_divine(v->data, vlen);
126 v->name = v->data + vlen + 1;
186 const char *data; local
211 s = apr_bucket_read(e, &data, &dlen, APR_BLOCK_READ);
223 switch (data[off++]) {
227 data += off;
241 switch (data[off++]) {
/httpd/server/mpm/worker/
H A Dfdqueue.h57 fd_queue_elem_t *data; member in struct:fd_queue_t
H A Dfdqueue.c245 static apr_status_t ap_queue_destroy(void *data) argument
247 fd_queue_t *queue = data;
274 queue->data = apr_palloc(a, queue_capacity * sizeof(fd_queue_elem_t));
282 queue->data[i].sd = NULL;
307 elem = &queue->data[queue->in];
359 elem = &queue->data[queue->out];
/httpd/modules/http/
H A Dchunk_filter.c76 (((ap_bucket_error *)(e->data))->status == HTTP_BAD_GATEWAY ||
77 ((ap_bucket_error *)(e->data))->status == HTTP_GATEWAY_TIME_OUT)) {
93 /* unknown amount of data (e.g. a pipe) */
94 const char *data; local
97 rv = apr_bucket_read(e, &data, &len, APR_BLOCK_READ);
104 * rest of the data stream on which a read() may
/httpd/modules/debugging/
H A Dmod_bucketeer.c88 const char *data; local
118 apr_bucket_read(e, &data, &len, APR_BLOCK_READ);
123 if (data[i] == c->flushdelimiter ||
124 data[i] == c->bucketdelimiter ||
125 data[i] == c->passdelimiter) {
129 &data[lastpos],
137 if (data[i] == c->flushdelimiter) {
141 if (data[i] == c->passdelimiter) {
155 &data[lastpos],
/httpd/modules/filters/
H A Dmod_data.c18 * mod_data.c --- Turn the response into an rfc2397 data URL, suitable for
48 * Create a data URL as follows:
50 * data:[<mime-type>;][charset=<charset>;]base64,<payload>
103 apr_brigade_printf(ctx->bb, NULL, NULL, "data:%s%s;base64,",
130 const char *data; local
181 * Remove meta data bucket from old brigade and insert into the
193 if (APR_SUCCESS == (rv = apr_bucket_read(e, &data, &size,
198 ctx->overflow[ctx->count++] = *data++;
213 (const unsigned char *) data, size);
219 memcpy(ctx->overflow, data
248 AP_DECLARE_MODULE(data) = { STANDARD20_MODULE_STUFF, variable
[all...]
H A Dmod_reflector.c72 * that's the case, don't read the data as that is what we're trying
126 const char *data; local
143 status = apr_bucket_read(bucket, &data, &len, APR_BLOCK_READ);
149 apr_brigade_write(bbout, NULL, NULL, data, len);
/httpd/server/mpm/event/
H A Dfdqueue.h78 fd_queue_elem_t *data; member in struct:fd_queue_t
/httpd/test/
H A Dcls.c33 static int checkmask(const char *data, const char *mask) argument
39 d = data[i];
63 return (data[i] == '\0');
/httpd/modules/examples/
H A Dmod_case_filter.c68 const char *data; local
82 apr_bucket_read(pbktIn,&data,&len,APR_BLOCK_READ);
87 buf[n] = apr_toupper(data[n]);
H A Dmod_case_filter_in.c90 const char *data; local
98 * and change the case of the bucket data, but that would be wrong
108 ret=apr_bucket_read(pbktIn, &data, &len, eBlock);
114 buf[n] = apr_toupper(data[n]);
/httpd/modules/ssl/
H A Dmod_ssl.c107 "('/path/to/file' - file with 48 bytes of random data)")
304 static apr_status_t ssl_cleanup_pre_config(void *data) argument
H A Dssl_engine_log.c87 const char *data; local
90 while ((e = ERR_peek_error_line_data(NULL, NULL, &data, &flags))) {
95 data = NULL;
106 data ? " (" : "", data ? data : "", data ? ")" : "",
H A Dssl_util_ocsp.c232 const char *data; local
237 rv = apr_bucket_read(e, &data, &len, APR_BLOCK_READ);
265 BIO_write(bio, data, (int)len);
277 "failed to decode OCSP response data");
/httpd/modules/apreq/
H A Dfilter.c58 static const char *apreq_set_temp_dir(cmd_parms *cmd, void *data, argument
61 struct dir_config *conf = data;
71 static const char *apreq_set_read_limit(cmd_parms *cmd, void *data, argument
74 struct dir_config *conf = data;
84 static const char *apreq_set_brigade_limit(cmd_parms *cmd, void *data, argument
87 struct dir_config *conf = data;
103 "Maximum amount of data that will be fed into a parser."),
293 * spooled data is preserved across internal redirects.
/httpd/modules/cache/
H A Dmod_cache_disk.h44 disk_cache_file_t data; /* data file structure */ member in struct:disk_cache_object
50 apr_off_t file_size; /* File size of the cached data file */
82 apr_off_t readsize; /* maximum data to attempt to cache in one go */

Completed in 3955 milliseconds

1234