Lines Matching refs:rv
86 apr_status_t rv;
103 rv = apr_memcache_create(p, nservers, 0, &ctx->mc);
104 if (rv != APR_SUCCESS) {
105 ap_log_error(APLOG_MARK, APLOG_CRIT, rv, s, APLOGNO(00785)
108 return rv;
120 rv = apr_parse_addr_port(&host_str, &scope_id, &port, split, p);
121 if (rv != APR_SUCCESS) {
122 ap_log_error(APLOG_MARK, APLOG_CRIT, rv, s, APLOGNO(00786)
124 return rv;
128 ap_log_error(APLOG_MARK, APLOG_CRIT, rv, s, APLOGNO(00787)
138 rv = apr_memcache_server_create(p,
145 if (rv != APR_SUCCESS) {
146 ap_log_error(APLOG_MARK, APLOG_CRIT, rv, s, APLOGNO(00788)
149 return rv;
152 rv = apr_memcache_add_server(ctx->mc, st);
153 if (rv != APR_SUCCESS) {
154 ap_log_error(APLOG_MARK, APLOG_CRIT, rv, s, APLOGNO(00789)
157 return rv;
202 apr_status_t rv;
214 rv = apr_memcache_set(ctx->mc, buf, (char*)ucaData, nData,
217 if (rv != APR_SUCCESS) {
218 ap_log_error(APLOG_MARK, APLOG_CRIT, rv, s, APLOGNO(00790)
221 return rv;
234 apr_status_t rv;
243 rv = apr_memcache_getp(ctx->mc, p, buf, &data, &data_len, NULL);
244 if (rv) {
245 if (rv != APR_NOTFOUND) {
246 ap_log_error(APLOG_MARK, APLOG_ERR, rv, s, APLOGNO(00791)
249 return rv;
252 ap_log_error(APLOG_MARK, APLOG_ERR, rv, s, APLOGNO(00792)
268 apr_status_t rv;
274 rv = apr_memcache_delete(ctx->mc, buf, 0);
276 if (rv != APR_SUCCESS) {
277 ap_log_error(APLOG_MARK, APLOG_DEBUG, rv, s, APLOGNO(00793)
282 return rv;