Lines Matching refs:status
24 apr_status_t status;
35 status = apr_socket_send(sock, buf, &written);
36 if (status != APR_SUCCESS) {
37 ap_log_error(APLOG_MARK, APLOG_ERR, status, NULL, APLOGNO(01029)
39 return status;
54 apr_status_t status;
58 status = apr_socket_recv(sock, (char *)(buf + rdlen), &length);
60 if (status == APR_EOF)
61 return status; /* socket closed. */
62 else if (APR_STATUS_IS_EAGAIN(status))
64 else if (status != APR_SUCCESS)
65 return status; /* any error. */
76 apr_status_t status;
82 status = ilink_read(sock, msg->buf, hlen);
84 if (status != APR_SUCCESS) {
85 ap_log_error(APLOG_MARK, APLOG_ERR, status, NULL, APLOGNO(01030)
87 return (APR_STATUS_IS_TIMEUP(status) ? APR_TIMEUP : AJP_ENO_HEADER);
90 status = ajp_msg_check_header(msg, &blen);
92 if (status != APR_SUCCESS) {
98 status = ilink_read(sock, msg->buf + hlen, blen);
100 if (status != APR_SUCCESS) {
101 ap_log_error(APLOG_MARK, APLOG_ERR, status, NULL, APLOGNO(01032)