| 2517 | } |
| 2518 | |
| 2519 | AP_DECLARE(void *) ap_retained_data_get(const char *key) |
| 2520 | { |
| 2521 | void *retained; |
| 2522 | |
| 2523 | apr_pool_userdata_get((void *)&retained, key, ap_pglobal); |
| 2524 | return retained; |
| 2525 | } |
| 2526 | |
| 2527 | AP_DECLARE(void *) ap_retained_data_create(const char *key, apr_size_t size) |
| 2528 | { |
no outgoing calls
no test coverage detected