Searched refs:info (Results 1 - 25 of 51) sorted by relevance

123

/httpd/modules/loggers/
H A Dmod_journald.c65 static apr_pool_t *journald_info_get_pool(const ap_errorlog_info *info) argument
67 if (info->r && info->r->pool)
68 return info->r->pool;
69 if (info->c && info->c->pool)
70 return info->c->pool;
71 if (info->pool)
72 return info->pool;
73 if (info
148 journald_error_log(const ap_errorlog_info *info, void *handle, const char *errstr, apr_size_t len) argument
[all...]
H A Dmod_syslog.c130 static apr_status_t syslog_error_log(const ap_errorlog_info *info, argument
134 int level = info->level;
/httpd/modules/dav/main/
H A Dstd_liveprop.c66 const dav_liveprop_spec *info; local
72 { /* additional type info provided by external modules ? */
152 global_ns = dav_get_liveprop_info(propid, &dav_core_liveprop_group, &info);
154 /* assert: info != NULL && info->name != NULL */
160 info->name, dav_core_namespace_uris[info->ns]);
164 global_ns, info->name, value, global_ns, info->name);
167 s = apr_psprintf(p, "<lp%ld:%s/>" DEBUG_CR, global_ns, info
177 const dav_liveprop_spec *info; local
[all...]
H A Dliveprop.c113 const dav_liveprop_spec **info)
119 *info = scan;
127 *info = NULL;
111 dav_get_liveprop_info(int propid, const dav_liveprop_group *group, const dav_liveprop_spec **info) argument
/httpd/server/
H A Dlog.c87 {"info", APLOG_INFO},
505 static int log_remote_address(const ap_errorlog_info *info, const char *arg, argument
508 if (info->r && !(arg && *arg == 'c'))
509 return apr_snprintf(buf, buflen, "%s:%d", info->r->useragent_ip,
510 info->r->useragent_addr ? info->r->useragent_addr->port : 0);
511 else if (info->c)
512 return apr_snprintf(buf, buflen, "%s:%d", info->c->client_ip,
513 info->c->client_addr ? info
518 log_local_address(const ap_errorlog_info *info, const char *arg, char *buf, int buflen) argument
528 log_pid(const ap_errorlog_info *info, const char *arg, char *buf, int buflen) argument
535 log_tid(const ap_errorlog_info *info, const char *arg, char *buf, int buflen) argument
560 log_ctime(const ap_errorlog_info *info, const char *arg, char *buf, int buflen) argument
582 log_loglevel(const ap_errorlog_info *info, const char *arg, char *buf, int buflen) argument
591 log_log_id(const ap_errorlog_info *info, const char *arg, char *buf, int buflen) argument
610 log_keepalives(const ap_errorlog_info *info, const char *arg, char *buf, int buflen) argument
619 log_module_name(const ap_errorlog_info *info, const char *arg, char *buf, int buflen) argument
625 log_file_line(const ap_errorlog_info *info, const char *arg, char *buf, int buflen) argument
668 log_apr_status(const ap_errorlog_info *info, const char *arg, char *buf, int buflen) argument
696 log_server_name(const ap_errorlog_info *info, const char *arg, char *buf, int buflen) argument
705 log_virtual_host(const ap_errorlog_info *info, const char *arg, char *buf, int buflen) argument
733 log_header(const ap_errorlog_info *info, const char *arg, char *buf, int buflen) argument
742 log_note(const ap_errorlog_info *info, const char *arg, char *buf, int buflen) argument
752 log_env_var(const ap_errorlog_info *info, const char *arg, char *buf, int buflen) argument
853 do_errorlog_default(const ap_errorlog_info *info, char *buf, int buflen, int *errstr_start, int *errstr_end, const char *errstr_fmt, va_list args) argument
949 do_errorlog_format(apr_array_header_t *fmt, ap_errorlog_info *info, char *buf, int buflen, int *errstr_start, int *errstr_end, const char *err_fmt, va_list args) argument
1040 ap_errorlog_info info; local
[all...]
H A Dutil_expr_eval.c55 #define LOG_MARK(info) __FILE__, __LINE__, (info)->module_index
58 const ap_expr_t *info,
166 const ap_expr_t *info = node->node_arg1; local
168 result = ap_expr_eval_string_func(ctx, info, args);
211 const ap_expr_t *info,
214 const void *data = info->node_arg2;
216 AP_DEBUG_ASSERT(info->node_op == op_StringFuncInfo);
217 AP_DEBUG_ASSERT(info->node_arg1 != NULL);
221 ap_expr_string_list_func_t *func = (ap_expr_string_list_func_t *)info
210 ap_expr_eval_string_func(ap_expr_eval_ctx_t *ctx, const ap_expr_t *info, const ap_expr_t *arg) argument
293 const ap_expr_t *info = e2->node_arg1; local
397 ap_expr_parse(apr_pool_t *pool, apr_pool_t *ptemp, ap_expr_info_t *info, const char *expr, ap_expr_lookup_fn_t *lookup_fn) argument
453 ap_expr_info_t *info = apr_pcalloc(cmd->pool, sizeof(ap_expr_info_t)); local
480 ap_expr_t *info = apr_palloc(ctx->pool, sizeof(ap_expr_t)); local
517 ap_expr_t *info = ap_expr_info_make(AP_EXPR_FUNC_STRING, name, ctx, arg); local
528 ap_expr_t *info = ap_expr_info_make(AP_EXPR_FUNC_LIST, name, ctx, arg); local
539 ap_expr_t *info = ap_expr_info_make(AP_EXPR_FUNC_OP_UNARY, name, ctx, arg); local
551 ap_expr_t *info = ap_expr_info_make(AP_EXPR_FUNC_OP_BINARY, name, ctx, local
742 ap_expr_eval_unary_op(ap_expr_eval_ctx_t *ctx, const ap_expr_t *info, const ap_expr_t *arg) argument
754 ap_expr_eval_binary_op(ap_expr_eval_ctx_t *ctx, const ap_expr_t *info, const ap_expr_t *args) argument
851 ap_expr_exec(request_rec *r, const ap_expr_info_t *info, const char **err) argument
911 ap_expr_exec_re(request_rec *r, const ap_expr_info_t *info, apr_size_t nmatch, ap_regmatch_t *pmatch, const char **source, const char **err) argument
943 ap_expr_str_exec_re(request_rec *r, const ap_expr_info_t *info, apr_size_t nmatch, ap_regmatch_t *pmatch, const char **source, const char **err) argument
999 ap_expr_str_exec(request_rec *r, const ap_expr_info_t *info, const char **err) argument
[all...]
H A Dapreq_parser_multipart.c43 apr_table_t *info; member in struct:mfd_ctx
250 ctx->info = NULL;
329 ctx->info = NULL;
335 if (ctx->info == NULL) {
336 ctx->info = apr_table_make(pool, APREQ_DEFAULT_NELTS);
340 s = apreq_parser_run(ctx->hdr_parser, ctx->info, ctx->in);
392 cd = apr_table_get(ctx->info, "Content-Disposition");
399 ct = apr_table_get(ctx->info, "Content-Type");
424 const char *cid = apr_table_get(ctx->info,
460 param->info
[all...]
/httpd/modules/dav/fs/
H A Drepos.c48 apr_finfo_t finfo; /* filesystem info */
224 return resource->info->r;
229 return resource->info->pool;
234 return resource->info->pathname;
242 dav_resource_private *ctx = resource->info;
511 /* get info about the state directory */
715 resource->info = ctx;
733 /* unused info in the URL will indicate a null resource */
775 dav_resource_private *ctx = resource->info;
792 * no path info remain
1397 dav_resource_private *info = wres->resource->info; local
1433 dav_resource_private *info = resource->info; local
1915 const dav_liveprop_spec *info; local
2018 const dav_liveprop_spec *info; local
[all...]
H A Dlock.c151 ** Stored direct lock info - full lock_discovery length:
160 /* Stored indirect lock info - lock token and apr_datum_t */
221 comb = apr_pcalloc(lockdb->info->pool, sizeof(*comb));
223 comb->pub.info = &comb->priv;
304 if (lockdb->info->opened)
307 err = dav_dbm_open_direct(lockdb->info->pool,
308 lockdb->info->lockdb_path,
310 &lockdb->info->db);
312 return dav_push_error(lockdb->info->pool,
320 lockdb->info
[all...]
/httpd/modules/dav/lock/
H A Dlocks.c139 * Stored direct lock info - full lock_discovery length:
149 /* Stored indirect lock info - lock token and apr_datum_t */
236 comb = apr_pcalloc(lockdb->info->pool, sizeof(*comb));
238 comb->pub.info = &comb->priv;
317 if (lockdb->info->opened) {
321 status = apr_dbm_open(&lockdb->info->db, lockdb->info->lockdb_path,
323 APR_OS_DEFAULT, lockdb->info->pool);
326 err = dav_generic_dbm_new_error(lockdb->info->db, lockdb->info
[all...]
/httpd/modules/arch/win32/
H A Dmod_isapi.c1240 HSE_URL_MAPEX_INFO *info = (HSE_URL_MAPEX_INFO*)data_type; local
1244 info->cchMatchingURL = strlen(test_uri);
1245 info->cchMatchingPath = apr_cpystrn(info->lpszPath, subreq->filename,
1246 sizeof(info->lpszPath)) - info->lpszPath;
1253 apr_cpystrn(info->lpszPath + info->cchMatchingPath,
1255 sizeof(info->lpszPath) - info
[all...]
/httpd/modules/cache/
H A Dcache_util.c213 CACHE_DECLARE(apr_int64_t) ap_cache_current_age(cache_info *info,
225 apparent_age = MAX(0, info->response_time - info->date);
227 response_delay = info->response_time - info->request_time;
229 resident_time = now - info->response_time;
524 cache_info *info = &(h->cache_obj->info); local
585 if (h->cache_obj->info.control.no_cache
586 || h->cache_obj->info
[all...]
H A Dmod_cache_socache.c443 cache_info *info; local
458 info = &(obj->info);
597 info->status = sobj->socache_info.status;
598 info->date = sobj->socache_info.date;
599 info->expire = sobj->socache_info.expire;
600 info->request_time = sobj->socache_info.request_time;
601 info->response_time = sobj->socache_info.response_time;
603 memcpy(&info->control, &sobj->socache_info.control, sizeof(cache_control_t));
781 cache_info *info)
780 store_headers(cache_handle_t *h, request_rec *r, cache_info *info) argument
[all...]
H A Dmod_cache.c119 * Are we allowed to serve cached info at all?
429 * Are we allowed to serve cached info at all?
673 r->status = cache->handle->cache_obj->info.status;
821 cache_info *info = NULL; local
889 && !cache->stale_handle->cache_obj->info.control.must_revalidate
890 && !cache->stale_handle->cache_obj->info.control.proxy_revalidate) {
1123 && date < cache->stale_handle->cache_obj->info.date) {
1307 info = &cache->handle->cache_obj->info;
1327 info
[all...]
H A Dmod_cache_disk.c217 static int file_cache_recall_mydata(apr_file_t *fd, cache_info *info, argument
232 info->status = dobj->disk_info.status;
233 info->date = dobj->disk_info.date;
234 info->expire = dobj->disk_info.expire;
235 info->request_time = dobj->disk_info.request_time;
236 info->response_time = dobj->disk_info.response_time;
238 memcpy(&info->control, &dobj->disk_info.control, sizeof(cache_control_t));
417 cache_info *info; local
438 info = &(obj->info);
932 store_headers(cache_handle_t *h, request_rec *r, cache_info *info) argument
[all...]
H A Dmod_cache.h57 /* cache info information */
85 cache_info info; member in struct:cache_object
131 CACHE_DECLARE(apr_time_t) ap_cache_current_age(cache_info *info, const apr_time_t age_value,
/httpd/support/
H A Dhtcacheclean.c141 apr_finfo_t info; local
145 apr_stat(&info, pathname, DIRINFO, p);
409 apr_finfo_t info; local
424 while (apr_dir_read(&info, APR_FINFO_TYPE, dir) == APR_SUCCESS && !interrupted) {
426 if (info.filetype == APR_DIR) {
427 if (!strcmp(info.name, ".") || !strcmp(info.name, "..")) {
431 if (list_urls(apr_pstrcat(p, path, "/", info.name, NULL), pool, round)) {
436 else if (info.filetype == APR_REG) {
438 ext = strchr(info
603 apr_finfo_t info; local
1382 apr_finfo_t info; local
[all...]
/httpd/include/
H A Dap_expr.h117 const ap_expr_info_t *info; member in struct:__anon2
317 * @param info The ap_expr_info_t struct (with values filled in)
322 * info->root_node.
325 ap_expr_info_t *info, const char *expr,
330 * uses info from cmd_parms to fill in most of it.
H A Dutil_varbuf.h65 /** Opaque info for memory allocation. */
66 struct ap_varbuf_info *info; member in struct:ap_varbuf
H A Dapreq_param.h38 apr_table_t *info; /**< header table associated with the param */ member in struct:apreq_param_t
41 const apreq_value_t v; /**< underlying name/value info */
H A Dhttp_core.h381 * context_* info should be used instead */
452 * Bits of info that go into making an ETag for a file
829 * The info structure passed to callback functions of errorlog handlers.
896 * @param info Context of the error message
901 apr_status_t (*writer)(const ap_errorlog_info *info, void *handle,
925 typedef int ap_errorlog_handler_fn_t(const ap_errorlog_info *info,
967 * @param info pointer to ap_errorlog_info struct which contains all
970 * @warning Allocating from the usual pools (pool, info->c->pool, info->p->pool)
974 AP_DECLARE_HOOK(void, error_log, (const ap_errorlog_info *info,
[all...]
/httpd/build/aix/
H A Daixproto.ksh11 INFO=$BUILD/build/aix/.info
18 rm -rf .info lpp_name tmp
/httpd/modules/mappers/
H A Dmod_vhost_alias.c130 if (&vhost_alias_set_doc_root_ip == cmd->info) {
135 else if (&vhost_alias_set_cgi_root_ip == cmd->info) {
140 else if (&vhost_alias_set_doc_root_name == cmd->info) {
145 else if (&vhost_alias_set_cgi_root_name == cmd->info) {
151 return "INTERNAL ERROR: unknown command info";
/httpd/modules/aaa/
H A Dmod_authz_core.c1058 struct require_expr_info *info; local
1059 apr_pool_userdata_get((void**)&info, REQUIRE_EXPR_NOTE, parms->ptemp);
1060 AP_DEBUG_ASSERT(info != NULL);
1061 info->want_user = 1;
1070 struct require_expr_info *info = apr_pcalloc(cmd->pool, sizeof(*info)); local
1082 apr_pool_userdata_setn(info, REQUIRE_EXPR_NOTE, apr_pool_cleanup_null,
1084 info->expr = ap_expr_parse_cmd(cmd, require_line, 0, &expr_err,
1092 *parsed_require_line = info;
1102 const struct require_expr_info *info local
[all...]
/httpd/modules/generators/
H A Dmod_cgid.c226 * must be NULL. The query info is split into separate arguments, where
1052 "the name of a log for script debugging info"),
1314 * getpgid() can report the proper info (-1/ESRCH) immediately.
1354 struct cleanup_script_info *info = vptr; local
1361 rc = connect_to_daemon(&sd, info->r, info->conf);
1370 req.conn_id = info->r->connection->id;
1384 ap_log_rerror(APLOG_MARK, APLOG_ERR, 0, info->r, APLOGNO(01261)
1386 info->conn_id);
1389 return cleanup_nonchild_process(info
1404 struct cleanup_script_info *info; local
1813 struct cleanup_script_info *info; local
[all...]

Completed in 117 milliseconds

123