/httpd/modules/aaa/ |
H A D | mod_allowhandlers.c | 92 const char *err = ap_check_cmd_context(cmd, NOT_IN_HTACCESS); local 93 if (err) 94 return err;
|
H A D | mod_authz_user.c | 52 const char *err = NULL; local 62 require = ap_expr_str_exec(r, expr, &err); 63 if (err) { 66 "evaluate require expression: %s", err);
|
H A D | mod_auth_basic.c | 146 const char *err; local 163 &err, NULL); 164 if (err) { 167 err); 171 &err, NULL); 172 if (err) { 175 err); 445 const char *auth_line, *user, *pass, *err; local 453 user = ap_expr_str_exec(r, conf->fakeuser, &err); 454 if (err) { [all...] |
H A D | mod_authn_core.c | 215 const char *err = ap_check_cmd_context(cmd, GLOBAL_ONLY); local 216 if (err != NULL) { 217 return err; 342 const char *err = NULL, *type; local 343 type = ap_expr_str_exec(r, conf->ap_auth_type, &err); 344 if (err) { 346 APLOG_MARK, APLOG_ERR, APR_SUCCESS, r, APLOGNO(02834) "AuthType expression could not be evaluated: %s", err); 359 const char *err = NULL, *name; local 365 name = ap_expr_str_exec(r, conf->ap_auth_name, &err); 366 if (err) { [all...] |
H A D | mod_authn_dbd.c | 70 const char *err = ap_check_cmd_context(cmd, NOT_IN_HTACCESS); local 71 if (err) 72 return err;
|
H A D | mod_authz_dbd.c | 81 const char *err = ap_check_cmd_context(cmd, NOT_IN_HTACCESS); local 82 if (err) 83 return err; 257 const char *err = NULL; local 277 require = ap_expr_str_exec(r, expr, &err); 278 if (err) { 281 "evaluate require expression: %s", err);
|
H A D | mod_authz_dbm.c | 140 const char *err = NULL; local 187 require = ap_expr_str_exec(r, expr, &err); 188 if (err) { 191 "evaluate require expression: %s", err);
|
H A D | mod_authz_groupfile.c | 142 const char *err = NULL; local 182 require = ap_expr_str_exec(r, expr, &err); 183 if (err) { 186 "evaluate require expression: %s", err);
|
H A D | mod_authz_host.c | 183 const char *err = NULL; local 187 require = ap_expr_str_exec(r, expr, &err); 188 if (err) { 191 "evaluate require expression: %s", err);
|
/httpd/modules/arch/unix/ |
H A D | mod_systemd.c | 121 const char *err = ap_check_cmd_context(cmd, GLOBAL_ONLY); local 122 if (err != NULL) { 123 return err;
|
H A D | mod_unixd.c | 213 const char *err = ap_check_cmd_context(cmd, GLOBAL_ONLY); local 214 if (err != NULL) { 215 return err; 241 const char *err = ap_check_cmd_context(cmd, GLOBAL_ONLY); local 242 if (err != NULL) { 243 return err; 256 const char *err = ap_check_cmd_context(cmd, GLOBAL_ONLY); local 257 if (err != NULL) { 258 return err; 271 const char *err local [all...] |
/httpd/modules/generators/ |
H A D | mod_suexec.c | 62 const char *err = ap_check_cmd_context(cmd, NOT_IN_DIR_LOC_FILE); local 64 if (err != NULL) { 65 return err;
|
/httpd/modules/loggers/ |
H A D | mod_syslog.c | 144 const char *err = ap_check_cmd_context(cmd, GLOBAL_ONLY); local 146 if (err != NULL) { 148 "When using syslog error log provider, ", err,
|
H A D | mod_log_debug.c | 63 const char *msg, *err; local 68 int ret = ap_expr_exec(r, entry->condition, &err); 69 if (err) { 71 "Can't evaluate condition: %s", err); 77 msg = ap_expr_str_exec(r, entry->msg_expr, &err); 78 if (err) 80 "Can't evaluate message expression: %s", err); 190 const char *err; local 197 &err, NULL); 198 if (err) [all...] |
/httpd/server/mpm/simple/ |
H A D | simple_api.c | 231 const char *err = ap_check_cmd_context(cmd, GLOBAL_ONLY); local 232 if (err != NULL) { 233 return err; 245 const char *err = ap_check_cmd_context(cmd, GLOBAL_ONLY); local 247 if (err != NULL) { 248 return err;
|
/httpd/modules/http/ |
H A D | http_core.c | 55 const char *err = ap_check_cmd_context(cmd, NOT_IN_DIR_LOC_FILE); local 56 if (err != NULL) { 57 return err; 81 const char *err = ap_check_cmd_context(cmd, NOT_IN_DIR_LOC_FILE); local 82 if (err != NULL) { 83 return err; 93 const char *err = ap_check_cmd_context(cmd, NOT_IN_DIR_LOC_FILE); local 94 if (err != NULL) { 95 return err;
|
/httpd/modules/ssl/ |
H A D | ssl_engine_log.c | 92 char err[256]; local 98 ERR_error_string_n(e, err, sizeof err); 99 annotation = ssl_log_annotation(err); 104 err,
|
/httpd/include/ |
H A D | ap_expr.h | 75 * @param err Where an error message should be stored 77 * @note err will be set to NULL on success, or to an error message on error 82 const char **err); 91 * @param err Where an error message should be stored 93 * @note err will be set to NULL on success, or to an error message on error 102 const char **source, const char **err); 115 const char **err; member in struct:__anon2 141 * @note *ctx->err will be set to NULL on success, or to an error message on 152 * @param err Where an error message should be stored 154 * @note err wil 286 const char **err; member in struct:__anon3 [all...] |
/httpd/modules/apreq/ |
H A D | filter.c | 62 const char *err = ap_check_cmd_context(cmd, NOT_IN_LIMIT); local 64 if (err != NULL) 65 return err; 75 const char *err = ap_check_cmd_context(cmd, NOT_IN_LIMIT); local 77 if (err != NULL) 78 return err; 88 const char *err = ap_check_cmd_context(cmd, NOT_IN_LIMIT); local 90 if (err != NULL) 91 return err;
|
/httpd/modules/cluster/ |
H A D | mod_heartbeat.c | 177 const char *err = ap_check_cmd_context(cmd, GLOBAL_ONLY); local 179 if (err != NULL) { 180 return err;
|
/httpd/modules/dav/main/ |
H A D | util_lock.c | 177 dav_error *err; local 187 if ((err = (*lockdb->hooks->create_lock)(lockdb, resource, 189 return dav_push_error(p, err->status, 0, 192 err); 263 dav_error *err; local 270 if ((err = (*ctx->w.lockdb->hooks->append_locks)(ctx->w.lockdb, 273 if (ap_is_HTTP_SERVER_ERROR(err->status)) { 275 return err; 279 dav_add_response(wres, err->status, NULL); 301 dav_error *err; local 389 dav_error *err; local 442 dav_error *err; local 507 dav_error *err; local 592 dav_error *err; local 695 dav_error *err; local 751 dav_error *err; local [all...] |
/httpd/modules/experimental/ |
H A D | mod_noloris.c | 198 const char* err = ap_check_cmd_context(cmd, GLOBAL_ONLY); local 199 if (!err) { 202 return err; 206 const char* err = ap_check_cmd_context(cmd, GLOBAL_ONLY); local 207 if (!err) { 210 return err; 214 const char* err = ap_check_cmd_context(cmd, GLOBAL_ONLY); local 215 if (!err) { 218 return err;
|
/httpd/modules/filters/ |
H A D | regexp.c | 56 static int regerr(sed_commands_t *commands, int err); 70 static int regerr(sed_commands_t *commands, int err) argument 72 switch(err) {
|
/httpd/modules/lua/ |
H A D | lua_dbd.c | 175 const char *err = apr_dbd_error(db->driver, db->handle, rc); local 179 if (err) { 180 lua_pushstring(L, err); 356 const char *err = apr_dbd_error(db->driver, db->handle, rc); local 360 if (err) { 361 lua_pushstring(L, err); 448 const char *err = apr_dbd_error(st->db->driver, st->db->handle, rc); local 452 if (err) { 453 lua_pushstring(L, err); 519 const char *err local 578 const char *err = apr_dbd_error(db->driver, db->handle, rc); local [all...] |
/httpd/modules/metadata/ |
H A D | mod_usertrack.c | 220 int err = 0; local 231 err = 1; 237 err = 1; 239 if (err) {
|