Searched refs:apr_rmm_t (Results 1 - 3 of 3) sorted by relevance

/freebsd-10-stable/contrib/apr-util/include/
H A Dapr_rmm.h40 typedef struct apr_rmm_t apr_rmm_t; typedef in typeref:struct:apr_rmm_t
42 /** Fundamental allocation unit, within a specific apr_rmm_t */
56 APU_DECLARE(apr_status_t) apr_rmm_init(apr_rmm_t **rmm, apr_anylock_t *lock,
64 APU_DECLARE(apr_status_t) apr_rmm_destroy(apr_rmm_t *rmm);
73 APU_DECLARE(apr_status_t) apr_rmm_attach(apr_rmm_t **rmm, apr_anylock_t *lock,
80 APU_DECLARE(apr_status_t) apr_rmm_detach(apr_rmm_t *rmm);
87 APU_DECLARE(apr_rmm_off_t) apr_rmm_malloc(apr_rmm_t *rmm, apr_size_t reqsize);
95 APU_DECLARE(apr_rmm_off_t) apr_rmm_realloc(apr_rmm_t *rmm, void *entity, apr_size_t reqsize);
102 APU_DECLARE(apr_rmm_off_t) apr_rmm_calloc(apr_rmm_t *rm
[all...]
/freebsd-10-stable/contrib/apr-util/misc/
H A Dapr_rmm.c69 struct apr_rmm_t { struct
76 static apr_rmm_off_t find_block_by_offset(apr_rmm_t *rmm, apr_rmm_off_t next,
97 static apr_rmm_off_t find_block_of_size(apr_rmm_t *rmm, apr_size_t size)
143 static void move_block(apr_rmm_t *rmm, apr_rmm_off_t this, int free)
213 APU_DECLARE(apr_status_t) apr_rmm_init(apr_rmm_t **rmm, apr_anylock_t *lock,
229 (*rmm) = (apr_rmm_t *)apr_pcalloc(p, sizeof(apr_rmm_t));
248 APU_DECLARE(apr_status_t) apr_rmm_destroy(apr_rmm_t *rmm)
281 APU_DECLARE(apr_status_t) apr_rmm_attach(apr_rmm_t **rmm, apr_anylock_t *lock,
293 (*rmm) = (apr_rmm_t *)apr_pcallo
[all...]
/freebsd-10-stable/contrib/apr-util/test/
H A Dtestrmm.c38 apr_rmm_t *rmm;

Completed in 49 milliseconds