Lines Matching defs:rv
90 apr_status_t rv;
92 rv = apr_dbm_open_ex(&f, dbmtype, dbmfile, APR_DBM_READONLY,
95 if (rv != APR_SUCCESS) {
96 return rv;
114 return rv;
122 apr_status_t rv;
126 rv = fetch_dbm_value(conf->dbmtype, conf->pwfile, user, &dbm_password,
129 if (rv != APR_SUCCESS) {
130 ap_log_rerror(APLOG_MARK, APLOG_ERR, rv, r, APLOGNO(01754)
146 rv = ap_password_validate(r, user, password, dbm_password);
148 if (rv != APR_SUCCESS) {
160 apr_status_t rv;
164 rv = fetch_dbm_value(conf->dbmtype, conf->pwfile,
168 if (rv != APR_SUCCESS) {
169 ap_log_rerror(APLOG_MARK, APLOG_ERR, rv, r, APLOGNO(01755)