Searched refs:root (Results 1 - 22 of 22) sorted by relevance

/httpd/modules/core/test/conf/
H A Dtest41.conf4 DocumentRoot /foo/document/root/directory
H A Dtest40.conf5 DocumentRoot /foo/document/root/directory
/httpd/test/
H A Dmake_sni.sh127 -keyout ${DIR}/root.key -out ${DIR}/root.pem \
137 -keyout ${CDIR}/xs-root-1.key -out ${CDIR}/xs-root-1.pem \
143 -keyout ${CDIR}/xs-root-2.key -out ${CDIR}/xs-root-2.pem \
147 cat ${CDIR}/xs-root-2.pem ${CDIR}/xs-root-1.pem > ${CDIR}/xs-root-chain.pem
152 mkdir -p ${CDIR}/xs-root
[all...]
/httpd/modules/metadata/
H A Dmod_unique_id.c38 char root[ROOT_SIZE]; member in struct:__anon269
64 * The root is assumed to absolutely uniquely identify this one child
70 * particular root. The stamp is updated using r->request_time,
97 * in place of the PRNG output in the "root" field. This was
144 unique_id_rec_offset[1] = APR_OFFSETOF(unique_id_rec, root);
145 unique_id_rec_size[1] = sizeof(cur_unique_id.root);
163 ap_random_insecure_bytes(&cur_unique_id.root,
164 sizeof(cur_unique_id.root));
204 memcpy(&new_unique_id.root, &cur_unique_id.root, ROOT_SIZ
[all...]
/httpd/modules/cache/
H A Dmod_cache_disk.h41 const char *root; /* the location of the cache directory */ member in struct:disk_cache_object
H A Dmod_cache_disk.c383 /* Save the cache root */
384 dobj->root = apr_pstrmemdup(r->pool, conf->cache_root, conf->cache_root_len);
443 /* Save the cache root */
444 dobj->root = apr_pstrmemdup(r->pool, conf->cache_root, conf->cache_root_len);
670 /* now delete directories as far as possible up to our cache root */
671 if (dobj->root) {
685 * now walk our way back to the cache root, delete everything
692 * we won't either delete or go above our cache root.
/httpd/build/rpm/
H A Dhtcacheclean.init53 cachepath=${CACHEPATH-/var/cache/httpd/cache-root}
/httpd/modules/dav/main/
H A Dutil_lock.c184 "XML root element.");
203 for (child = doc->root->first_child; child; child = child->next) {
267 ctx->w.root))
341 ctx.w.root = resource;
542 * the root of a depth > 0 lock, or locktoken is null.
548 ctx.w.root = lock_resource;
572 ctx->w.root)) {
662 ctx.w.root = resource;
H A Dmod_dav.c1878 for (elem = doc->root->first_child; elem != NULL; elem = elem->next) {
1941 elem = dav_find_child(ctx->doc->root, "prop");
2073 if (doc == NULL || dav_find_child(doc->root, "allprop") != NULL) {
2077 else if (dav_find_child(doc->root, "propname") != NULL) {
2080 else if (dav_find_child(doc->root, "prop") != NULL) {
2097 ctx.w.root = resource;
2362 for (child = doc->root->first_child; child; child = child->next) {
3283 * resource has to be the root of an infinte lock. Thus, an UNLOCK
3339 if ((child = dav_find_child(doc->root, "version")) == NULL) {
3515 if (dav_find_child(doc->root, "appl
[all...]
H A Dutil.c314 /* validate that the root element uses a given DAV: tagname (TRUE==valid) */
318 return doc->root &&
319 doc->root->ns == APR_XML_NS_DAV_ID &&
320 strcmp(doc->root->name, tagname) == 0;
1437 ctx->w.root)) {
1607 ctx.w.root = resource;
1637 "Cannot access parent of repository root.");
H A Dprops.c704 apr_xml_elem *elem = dav_find_child(doc->root, "prop");
H A Dmod_dav.h1661 /* beginning root of the walk */
1662 const dav_resource *root; member in struct:__anon135
1759 * the root of the directory for which this repository is configured.
1784 * is the root collection.
1944 * Iterates over the resource hierarchy specified by params->root.
/httpd/build/pkg/
H A Dbuildpkg.sh24 TEMPDIR=/var/tmp/$USER/httpd-root
85 find . -print | grep -v ./prototype | grep -v ./pkginfo | pkgproto | awk '{print $1" "$2" "$3" "$4" root bin"}' >> prototype
/httpd/build/aix/
H A Daixproto.ksh28 files=./httpd-root
/httpd/build/
H A Dbinbuild.sh75 make install root="bindist/" && \
133 echo "to user \"root\" before you execute the script." && \
/httpd/support/
H A Dhtcacheclean.c113 static APR_RING_ENTRY(_entry) root; /* ENTRY ring anchor */
777 APR_RING_INSERT_TAIL(&root, e, _entry, link);
893 APR_RING_INSERT_TAIL(&root, e, _entry, link);
980 for (e = APR_RING_FIRST(&root);
981 e != APR_RING_SENTINEL(&root, _entry, link);
1000 for (e = APR_RING_FIRST(&root);
1001 e != APR_RING_SENTINEL(&root, _entry, link) && !interrupted;) {
1025 for (e = APR_RING_FIRST(&root);
1026 e != APR_RING_SENTINEL(&root, _entry, link) && !interrupted;) {
1055 && !interrupted && !APR_RING_EMPTY(&root, _entr
[all...]
/httpd/modules/filters/
H A Dmod_include.c276 static void debug_dump_tree(include_ctx_t *ctx, parse_node_t *root) argument
281 if (!root) {
287 current = root;
345 root->dump_done = 0;
346 if (root->left) root->left->dump_done = 0;
347 if (root->right) root->right->dump_done = 0;
419 #define DEBUG_DUMP_TREE(ctx, root) debug_dump_tree(ctx, root)
1170 parse_node_t *new, *root = NULL, *current = NULL; local
[all...]
/httpd/modules/dav/fs/
H A Drepos.c82 const dav_resource *root; member in struct:__anon108
260 /* remove trailing slash from dirpath, unless it's a root path
271 * APR_SUCCESS here tells us the dir is a root
272 * APR_ERELATIVE told us we had no root (ok)
783 /* If we're at the root of the URL space, then there is no parent. */
789 /* If given resource is root, then there is no parent.
790 * Unless we can retrieve the filepath root, this is
791 * intendend to fail. If we split the root and
1188 ** that everything has been moved *except* for the root. Using a
1192 ** For a COPY, we are traversing in a prefix fashion. If the root fail
[all...]
/httpd/server/
H A Dutil_expr_parse.y112 root : T_EXPR_BOOL expr { ctx->expr = $2; } label
/httpd/modules/lua/
H A Dlua_request.c1416 * root for the request
1421 const char *root; local
1426 root = lua_tostring(L, 2);
1427 ap_set_document_root(r, root);
1543 * executable filename, server root, mpm etc
H A Dmod_lua.c1672 const char *root)
1678 cfg->root_path = root;
1671 register_lua_root(cmd_parms *cmd, void *_cfg, const char *root) argument
/httpd/modules/mappers/
H A Dmod_rewrite.c900 const char *root; local
905 rv = apr_filepath_root(&root, &curpath, APR_FILEPATH_TRUENAME, pool);
915 rv = apr_filepath_merge(&statpath, root,
922 rv = apr_filepath_merge(&statpath, root, curpath,
4739 * add the document root
4979 * root this will never match, so we skip the / after the
5111 * or, r->filename wasn't still under the document root.
5112 * If there's a context document root AND a context prefix, and
5113 * the context document root is a prefix of r->filename, replace.

Completed in 6894 milliseconds