Lines Matching defs:path
30 /* Determine if "url" matches the hostname, scheme and port and path
31 * in "filter". All but the path comparisons are case-insensitive.
39 * /<path>
40 * <scheme>[:://<hostname>[:<port>][/<path>]]
41 * That is, if there is no scheme then there must be only the path,
42 * and we check only the path; if there is a scheme, we check the
44 * and then if present match the port, and finally the path if any.
46 * Note that this means that "/<path>" only matches local paths,
50 /* Is the filter is just for a local path or a proxy URI? */
113 /* For HTTP caching purposes, an empty (NULL) path is equivalent to
114 * a single "/" path. RFCs 3986/2396
116 if (!url->path) {
117 if (*filter->path == '/' && pathlen == 1) {
128 return !strncmp(filter->path, url->path, pathlen);
265 const char *path;
321 path = apr_pstrcat(r->pool, conf->lockpath, dir, NULL);
322 if (APR_SUCCESS != (status = apr_dir_make_recursive(path,
326 path);
329 lockname = apr_pstrcat(r->pool, path, "/", lockname, NULL);
733 * follow the stale path to the backend server. If we fail, oh well,
734 * we follow the fresh path, and avoid being a thundering herd.
749 /* we obtained a lock, follow the stale path */
1308 * a fast path that doesn't allocate any memory. On the second and