/httpd/server/mpm/simple/ |
H A D | simple_event.c | 25 simple_timer_t *elem = (simple_timer_t *)baton; local 26 simple_core_t *sc = elem->sc; 29 APR_RING_REMOVE(elem, link); 42 simple_timer_t *elem = NULL; local 51 elem = (simple_timer_t *) apr_pcalloc(shutdown_pool, sizeof(simple_timer_t)); 53 APR_RING_ELEM_INIT(elem, link); 54 elem->expires = t; 55 elem->cb = cb; 56 elem->baton = baton; 57 elem [all...] |
/httpd/modules/dav/main/ |
H A D | std_liveprop.c | 184 const apr_xml_elem *elem, 183 dav_core_patch_validate(const dav_resource *resource, const apr_xml_elem *elem, int operation, void **context, int *defer_to_dead) argument
|
H A D | props.c | 179 apr_array_header_t *ns_xlate; /* translation of an elem->ns to URI */ 260 static void dav_find_liveprop(dav_propdb *propdb, apr_xml_elem *elem) argument 263 dav_elem_private *priv = elem->priv; 267 if (elem->ns == APR_XML_NS_NONE) 269 else if (elem->ns == APR_XML_NS_DAV_ID) 272 ns_uri = APR_XML_GET_URI_ITEM(propdb->ns_xlate, elem->ns); 274 priv->propid = dav_find_liveprop_provider(propdb, ns_uri, elem->name, 446 const apr_xml_elem *elem, 451 dav_elem_private *priv = elem->priv; 457 return dav_insert_coreprop(propdb, priv->propid, elem 445 dav_insert_liveprop(dav_propdb *propdb, const apr_xml_elem *elem, dav_prop_insert what, apr_text_header *phdr, dav_prop_insert *inserted) argument 704 apr_xml_elem *elem = dav_find_child(doc->root, "prop"); local [all...] |
H A D | util.c | 324 DAV_DECLARE(apr_xml_elem *) dav_find_child(const apr_xml_elem *elem, argument 327 apr_xml_elem *child = elem->first_child; 336 DAV_DECLARE(const char *) dav_xml_get_cdata(const apr_xml_elem *elem, apr_pool_t *pool, argument 348 for (scan = elem->first_cdata.first; scan != NULL; scan = scan->next) { 354 for (child = elem->first_child; child != NULL; child = child->next) { 379 for (scan = elem->first_cdata.first; scan != NULL; scan = scan->next) { 385 for (child = elem->first_child; child != NULL; child = child->next) {
|
H A D | mod_dav.c | 1287 const apr_xml_elem *elem, 1300 if (elem->first_child == NULL) { 1318 for (child = elem->first_child; child != NULL; child = child->next) { 1355 const apr_xml_elem *elem, 1388 if (elem->first_child == NULL) { 1397 for (child = elem->first_child; child != NULL; child = child->next) { 1444 const apr_xml_elem *elem, 1468 if (elem->first_child == NULL) { 1482 for (child = elem->first_child; child != NULL; child = child->next) { 1612 const apr_xml_elem *elem; local 1286 dav_gen_supported_methods(request_rec *r, const apr_xml_elem *elem, const apr_table_t *methods, apr_text_header *body) argument 1353 dav_gen_supported_live_props(request_rec *r, const dav_resource *resource, const apr_xml_elem *elem, apr_text_header *body) argument 1442 dav_gen_supported_reports(request_rec *r, const dav_resource *resource, const apr_xml_elem *elem, const dav_hooks_vsn *vsn_hooks, apr_text_header *body) argument 1929 const apr_xml_elem *elem; local [all...] |
/httpd/server/mpm/worker/ |
H A D | fdqueue.c | 297 fd_queue_elem_t *elem; local 307 elem = &queue->data[queue->in]; 311 elem->sd = sd; 312 elem->p = p; 332 fd_queue_elem_t *elem; local 359 elem = &queue->data[queue->out]; 364 *sd = elem->sd; 365 *p = elem->p; 367 elem->sd = NULL; 368 elem [all...] |
/httpd/server/mpm/event/ |
H A D | fdqueue.c | 366 fd_queue_elem_t *elem; local 376 elem = &queue->data[queue->in]; 380 elem->sd = sd; 381 elem->ecs = ecs; 382 elem->p = p; 425 fd_queue_elem_t *elem; local 459 elem = &queue->data[queue->out]; 464 *sd = elem->sd; 465 *ecs = elem->ecs; 466 *p = elem [all...] |
/httpd/modules/dav/fs/ |
H A D | dbm.c | 611 const apr_xml_elem *elem, 624 apr_xml_quote_elem(db->pool, (apr_xml_elem *)elem); 627 apr_xml_to_text(db->pool, elem, APR_XML_X2T_LANG_INNER, NULL, 610 dav_propdb_store(dav_db *db, const dav_prop_name *name, const apr_xml_elem *elem, dav_namespace_map *mapping) argument
|
H A D | repos.c | 2032 const apr_xml_elem *elem, 2040 dav_elem_private *priv = elem->priv; 2052 cdata = elem->first_cdata.first; 2055 f_cdata = elem->first_child == NULL 2057 : elem->first_child->following_cdata.first; 2059 /* DBG3("name=%s cdata=%s f_cdata=%s",elem->name,cdata ? cdata->text : "[null]",f_cdata ? f_cdata->text : "[null]"); */ 2097 const apr_xml_elem *elem, 2031 dav_fs_patch_validate(const dav_resource *resource, const apr_xml_elem *elem, int operation, void **context, int *defer_to_dead) argument 2096 dav_fs_patch_exec(const dav_resource *resource, const apr_xml_elem *elem, int operation, void *context, dav_liveprop_rollback **rollback_ctx) argument
|
/httpd/server/mpm/motorz/ |
H A D | motorz.c | 295 motorz_timer_t *elem = &scon->timer; local 298 elem->expires = t; 299 elem->cb = cb; 300 elem->baton = scon; 301 elem->pool = scon->pool; 302 elem->mz = mz; 306 ap_assert(apr_skiplist_insert(mz->timer_ring, elem)); 308 apr_skiplist_insert(mz->timer_ring, elem);
|