Home | History | Annotate | Download | only in libevent

Lines Matching defs:readp

4204 	char *readbuf = NULL, *readp = NULL, *token = NULL, *query = NULL;
4222 readp = readbuf;
4234 token = strchr(readp, ':');
4235 if (token && scheme_ok(readp,token)) {
4237 uri->scheme = mm_strdup(readp);
4242 readp = token+1; /* eat : */
4246 if (readp[0]=='/' && readp[1] == '/') {
4248 readp += 2;
4249 authority = readp;
4250 path = end_of_authority(readp);
4253 readp = path;
4259 path = readp;
4260 readp = end_of_path(path, PART_PATH, flags);
4263 if (*readp == '?') {
4264 *readp = '\0';
4265 ++readp;
4266 query = readp;
4267 readp = end_of_path(readp, PART_QUERY, flags);
4270 if (*readp == '#') {
4271 *readp = '\0';
4272 ++readp;
4273 fragment = readp;
4274 readp = end_of_path(readp, PART_FRAGMENT, flags);
4276 if (*readp != '\0') {