Searched refs:reslist (Results 1 - 5 of 5) sorted by relevance

/freebsd-10-stable/contrib/apr-util/misc/
H A Dapr_reslist.c65 * Assumes: that the reslist is locked.
67 static apr_res_t *pop_resource(apr_reslist_t *reslist) argument
70 res = APR_RING_FIRST(&reslist->avail_list);
72 reslist->nidle--;
79 * Assumes: that the reslist is locked.
81 static void push_resource(apr_reslist_t *reslist, apr_res_t *resource) argument
83 APR_RING_INSERT_HEAD(&reslist->avail_list, resource, apr_res_t, link);
85 reslist->nidle++;
91 static apr_res_t *get_container(apr_reslist_t *reslist) argument
95 if (!APR_RING_EMPTY(&reslist
107 free_container(apr_reslist_t *reslist, apr_res_t *container) argument
116 create_resource(apr_reslist_t *reslist, apr_res_t **ret_res) argument
133 destroy_resource(apr_reslist_t *reslist, apr_res_t *res) argument
427 apr_reslist_timeout_set(apr_reslist_t *reslist, apr_interval_time_t timeout) argument
[all...]
/freebsd-10-stable/contrib/apr-util/include/
H A Dapr_reslist.h68 * @param reslist An address where the pointer to the new resource
72 * @param smax Resources will be destroyed during reslist maintenance to
78 * apr_reslist_acquire() or during reslist maintenance.
89 APU_DECLARE(apr_status_t) apr_reslist_create(apr_reslist_t **reslist,
106 * @param reslist The reslist to destroy
108 APU_DECLARE(apr_status_t) apr_reslist_destroy(apr_reslist_t *reslist); variable
114 * @param reslist The resource list.
118 APU_DECLARE(apr_status_t) apr_reslist_acquire(apr_reslist_t *reslist,
123 * @param reslist Th
142 APU_DECLARE(apr_uint32_t) apr_reslist_acquired_count(apr_reslist_t *reslist); variable
159 APU_DECLARE(apr_status_t) apr_reslist_maintain(apr_reslist_t *reslist); variable
[all...]
/freebsd-10-stable/contrib/apr-util/test/
H A Dtestreslist.c77 /* Set the resource so it can be managed by the reslist */
97 apr_reslist_t *reslist; member in struct:__anon173
113 apr_reslist_t *rl = thread_info->reslist;
242 thread_info[i].reslist = rl;
/freebsd-10-stable/contrib/ntp/ntpdc/
H A Dntpdc_ops.c64 static void reslist (struct parse *, FILE *);
150 { "reslist", reslist, {OPT|IP_VERSION, NO, NO, NO },
1666 * reslist - obtain and print the server's restrict list
1670 reslist( function
/freebsd-10-stable/contrib/ntp/ntpq/
H A Dntpq-subs.c74 static void reslist (struct parse *, FILE *);
185 { "reslist", reslist, { NO, NO, NO, NO },
3509 * validate_reslist_idx - helper for reslist()
3532 "received reslist index %u, have %d of %d fields for index %u, aborting.\n",
3539 * another_reslist_field - helper for reslist()
3583 * reslist - ntpq -c reslist modeled on ntpdc -c reslist.
3586 reslist( function
[all...]

Completed in 103 milliseconds