Searched defs:root (Results 1 - 9 of 9) sorted by relevance
/httpd/server/ |
H A D | util_expr_parse.y | 112 root : T_EXPR_BOOL expr { ctx->expr = $2; } label
|
/httpd/modules/metadata/ |
H A D | mod_unique_id.c | 38 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 D | mod_cache_disk.h | 41 const char *root; /* the location of the cache directory */ member in struct:disk_cache_object
|
/httpd/modules/dav/fs/ |
H A D | repos.c | 82 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/modules/lua/ |
H A D | mod_lua.c | 1672 const char *root) 1678 cfg->root_path = root; 1671 register_lua_root(cmd_parms *cmd, void *_cfg, const char *root) argument
|
H A D | lua_request.c | 1416 * 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
|
/httpd/modules/filters/ |
H A D | mod_include.c | 276 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/main/ |
H A D | mod_dav.h | 1661 /* 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/modules/mappers/ |
H A D | mod_rewrite.c | 900 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 2585 milliseconds