Lines Matching refs:rv
156 apr_status_t rv;
174 rv = apr_parse_addr_port(&host, &scope_id, &port, w, p);
178 if (rv != APR_SUCCESS) {
192 rv = apr_sockaddr_info_get(&my_addr, NULL, APR_UNSPEC, port, 0, p);
193 if (rv) {
199 rv = apr_sockaddr_info_get(&my_addr, host, APR_UNSPEC, port, 0, p);
200 if (rv != APR_SUCCESS) {
201 ap_log_error(APLOG_MARK, APLOG_ERR, rv, NULL, APLOGNO(00547)
643 apr_status_t rv;
646 rv = apr_getnameinfo(&hostname, s->addrs->host_addr, 0);
647 if (rv == APR_SUCCESS) {
656 ap_log_error(APLOG_MARK, APLOG_ERR, rv, main_s, APLOGNO(00549)
820 apr_status_t rv;
852 rv = apr_parse_addr_port(&host, &scope_id, &port, src, r->pool);
853 if (rv != APR_SUCCESS || scope_id)
878 rv = fix_hostname_v6_literal(r, host);
881 rv = fix_hostname_non_v6(r, host);
882 if (strict && rv == APR_SUCCESS)
883 rv = strict_hostname_check(r, host, strict_logonly);
885 if (rv != APR_SUCCESS)
1203 int rv = 0;
1229 rv = func_cb(baton, conn, s);
1231 if (rv != 0) {
1237 rv = func_cb(baton, conn, conn->base_server);
1240 return rv;