Lines Matching refs:range
290 const char *range, *colon, *colon2;
296 range = MHD_lookup_connection_value(connection, MHD_HEADER_KIND, "Range");
297 if (!range)
300 if (!startswith(range, "entries="))
303 range += 8;
304 range += strspn(range, WHITESPACE);
306 colon = strchr(range, ':');
308 m->cursor = strdup(range);
337 m->cursor = strndup(range, colon - range);