Home
last modified time | relevance | path

Searched refs:error_index (Results 1 – 4 of 4) sorted by relevance

/mirbsd/src/gnu/usr.bin/binutils/ld/
Dldgram.y62 static int error_index; variable
63 #define PUSH_ERROR(x) if (error_index < ERROR_NAME_MAX) error_names[error_index] = x; error_index++;
64 #define POP_ERROR() error_index--;
1254 if (error_index > 0 && error_index < ERROR_NAME_MAX)
1255 einfo ("%P%F:%S: %s in %s\n", arg, error_names[error_index-1]);
/mirbsd/src/usr.sbin/httpd/src/include/
Dhttp_core.h179 API_EXPORT(char *) ap_response_code_string (request_rec *r, int error_index);
/mirbsd/src/usr.sbin/httpd/src/main/
Dhttp_request.c917 int error_index = ap_index_of_response(type); in ap_die() local
918 char *custom_response = ap_response_code_string(r, error_index); in ap_die()
Dhttp_core.c602 API_EXPORT(char *) ap_response_code_string(request_rec *r, int error_index) in ap_response_code_string() argument
612 return conf->response_code_strings[error_index]; in ap_response_code_string()