Lines Matching refs:status
181 apr_status_t status;
182 status = apr_socket_send(sock, buffer+i, &j);
183 if (status != APR_SUCCESS) {
184 ap_log_error(APLOG_MARK, APLOG_CRIT, status, srv, APLOGNO(01497)
186 return status;
207 apr_status_t status;
208 status = apr_socket_recv(sock, buffer+i, &j);
209 if (status != APR_SUCCESS) {
210 ap_log_error(APLOG_MARK, APLOG_CRIT, status, srv, APLOGNO(01498)
212 return status;
217 else if (status == APR_SUCCESS && j == 0) {