Lines Matching refs:status
49 int status;
60 status = apr_brigade_partition(db->bb, db->bytes_per_second, &e);
62 if (status != APR_SUCCESS && status != APR_INCOMPLETE) {
84 status = ap_pass_brigade(db->r->output_filters, db->tmpbb);
88 if (status != APR_SUCCESS) {
89 ap_log_rerror(APLOG_MARK, APLOG_ERR, status, db->r, APLOGNO(01867)
106 int status;
112 status = dialup_send_pulse(db);
114 if (status == SUSPENDED) {
117 else if (status == DONE) {
125 "dialup: pulse returned: %d", status);
126 db->r->status = HTTP_OK;
127 ap_die(status, db->r);
138 int status;
188 status = ap_meets_conditions(r);
189 if (status != OK) {
217 status = dialup_send_pulse(db);
218 if (status != SUSPENDED && status != DONE) {
221 return status;