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

/macosx-10.10.1/apr-32/apr-util/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...]
/macosx-10.10.1/apr-32/apr-util/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
115 APU_DECLARE(apr_status_t) apr_reslist_acquire(apr_reslist_t *reslist,
121 APU_DECLARE(apr_status_t) apr_reslist_release(apr_reslist_t *reslist,
127 * @param reslist Th
137 APU_DECLARE(apr_uint32_t) apr_reslist_acquired_count(apr_reslist_t *reslist); variable
152 APU_DECLARE(apr_status_t) apr_reslist_maintain(apr_reslist_t *reslist); variable
[all...]
/macosx-10.10.1/apache-793/httpd/modules/lua/
H A Dlua_vmprep.c417 apr_reslist_t* reslist = NULL; local
419 hash = apr_psprintf(r->pool, "reslist:%s", spec->file);
423 if (apr_pool_userdata_get((void **)&reslist, hash,
425 if (reslist != NULL) {
426 if (apr_reslist_acquire(reslist, (void**) &sspec) == APR_SUCCESS) {
435 apr_reslist_create(&reslist, spec->vm_min, spec->vm_max, spec->vm_max, 0,
439 == APR_SUCCESS && reslist != NULL) {
440 apr_pool_userdata_set(reslist, hash, NULL,
442 if (apr_reslist_acquire(reslist, (void**) &sspec) == APR_SUCCESS) {
H A Dmod_lua.c126 apr_reslist_t* reslist = NULL; local
132 hash = apr_psprintf(r->pool, "reslist:%s", spec->file);
133 if (apr_pool_userdata_get((void **)&reslist, hash,
136 if (reslist != NULL) {
137 apr_reslist_release(reslist, sspec);
/macosx-10.10.1/apache-793/httpd/modules/database/
H A Dmod_dbd.c62 apr_reslist_t *reslist; member in struct:dbd_group_t
509 * Also use this for opening in non-reslist modes, since it gives
626 /* We create the reslist using a sub-pool of the pool passed to our
630 * reslist calls, which have an internal mutex.
634 * as a cleanup afterwards, so that it will run before the reslist's
640 * then it runs the reslist's cleanup. The cleanup calls dbd_destruct()
644 rv = apr_reslist_create(&group->reslist,
673 "Failed to create reslist cleanup memory pool");
717 * initialize the reslist because dbd_setup_init failed to do so
731 if (!group->reslist) {
859 apr_reslist_t *reslist; member in struct:__anon5874
[all...]
/macosx-10.10.1/apr-32/apr-util/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:__anon6229
113 apr_reslist_t *rl = thread_info->reslist;
242 thread_info[i].reslist = rl;
/macosx-10.10.1/ICU-531.30/icuSources/tools/genrb/
H A DMakefile.in38 OBJECTS = errmsg.o genrb.o parse.o read.o reslist.o ustr.o rbutil.o \
/macosx-10.10.1/Libinfo-459/lookup.subproj/
H A Dsi_module.c70 si_list_t *reslist; member in struct:si_async_workunit_s
999 if (r->reslist != NULL) si_list_release(r->reslist);
1033 if (r->flags & WORKUNIT_RETURNS_LIST) r->reslist = si_list_call(r->si, r->call, r->str1, r->str2, r->str3, r->num1, r->num2, r->num3, r->num4, &(r->err));
1178 if (r->flags & WORKUNIT_RETURNS_LIST) ((list_async_callback)(r->callback))(r->reslist, r->err, r->context);
1181 r->reslist = NULL;
/macosx-10.10.1/ntp-92/ntpdc/
H A Dntpdc_ops.c64 static void reslist (struct parse *, FILE *);
150 { "reslist", reslist, {OPT|IP_VERSION, NO, NO, NO },
1688 * reslist - obtain and print the server's restrict list
1692 reslist( function

Completed in 156 milliseconds