Lines Matching refs:error

40  * This hook allows modules to insert filters for the current error response
88 * Send error back to client.
90 * @param recursive_error last arg indicates error status in case we get
91 * an error in the process of trying to deal with an ErrorDocument
92 * to handle some other error. In that case, we print the default
101 * May return an error status, typically HTTP_NOT_MODIFIED (that when the
448 * @return 0 on success, -1 if an error occurred
453 * Index used in custom_responses array for a specific error code
476 * REQUEST_NO_BODY Send 413 error if message has any body
477 * REQUEST_CHUNKED_ERROR Send 411 error if body without Content-Length
480 * @return either OK or an error code
501 * if EOF, or -1 if there was an error
506 * Map specific APR codes returned by the filter stack to HTTP error
511 * If the filter has already handled the error, AP_FILTER_ERROR will
530 * @return error status if request is malformed, OK otherwise
566 * an error code, either HTTP_INTERNAL_SERVER_ERROR if things are
708 * @brief A bucket referring to an HTTP error
711 * HTTP error occurred while running a filter. In order for this bucket
718 /** The error code */
720 /** The error string */
728 * Determine if a bucket is an error bucket
735 * Make the bucket passed in an error bucket
736 * @param b The bucket to make into an error bucket
737 * @param error The HTTP error code to put in the bucket.
738 * @param buf An optional error string to put in the bucket.
742 AP_DECLARE(apr_bucket *) ap_bucket_error_make(apr_bucket *b, int error,
746 * Create a bucket referring to an HTTP error.
747 * @param error The HTTP error code to put in the bucket.
748 * @param buf An optional error string to put in the bucket.
749 * @param p A pool to allocate the error string out of.
753 AP_DECLARE(apr_bucket *) ap_bucket_error_create(int error, const char *buf,