Lines Matching refs:path
49 const char *path, *path_end;
94 /* look for start of optional port, path, query, or fragment */
122 /* check for optional path starting with '/' or '?'. Else must start '#' */
123 path = p;
124 if (*path != '\0' && *path != '/' && *path != '?' && *path != '#') {
128 path_end = query = query_end = frag = frag_end = path + strlen(path);
158 if (*path == '/') {
159 if (!copy_substring(ppath, path, path_end))
162 size_t buflen = 1 + path_end - path + 1;
166 BIO_snprintf(*ppath, buflen, "/%s", path);