MCPcopy Index your code
hub / github.com/apache/httpd / ap_rprintf

Function ap_rprintf

server/protocol.c:2205–2218  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

2203}
2204
2205AP_DECLARE_NONSTD(int) ap_rprintf(request_rec *r, const char *fmt, ...)
2206{
2207 va_list va;
2208 int n;
2209
2210 if (r->connection->aborted)
2211 return -1;
2212
2213 va_start(va, fmt);
2214 n = ap_vrprintf(r, fmt, va);
2215 va_end(va);
2216
2217 return n;
2218}
2219
2220AP_DECLARE_NONSTD(int) ap_rvputs(request_rec *r, ...)
2221{

Callers 15

socache_rd_statusFunction · 0.85
socache_dbm_statusFunction · 0.85
socache_mc_statusFunction · 0.85
socache_shmcb_statusFunction · 0.85
socache_dc_statusFunction · 0.85
dav_error_response_tagFunction · 0.85
dav_method_lockFunction · 0.85
proxy_status_hookFunction · 0.85
balancer_display_pageFunction · 0.85
hc_show_exprsFunction · 0.85
hc_select_exprsFunction · 0.85
output_directoriesFunction · 0.85

Calls 1

ap_vrprintfFunction · 0.85

Tested by

no test coverage detected