Lines Matching refs:start
938 const char *start, *end; in Curl_rtsp_parseheader() local
942 start = header + 8; in Curl_rtsp_parseheader()
943 while(*start && ISBLANK(*start)) in Curl_rtsp_parseheader()
944 start++; in Curl_rtsp_parseheader()
946 if(!*start) { in Curl_rtsp_parseheader()
957 end = start; in Curl_rtsp_parseheader()
960 idlen = end - start; in Curl_rtsp_parseheader()
966 strncmp(start, data->set.str[STRING_RTSP_SESSION_ID], idlen)) { in Curl_rtsp_parseheader()
968 start, data->set.str[STRING_RTSP_SESSION_ID]); in Curl_rtsp_parseheader()
978 data->set.str[STRING_RTSP_SESSION_ID] = Curl_memdup0(start, idlen); in Curl_rtsp_parseheader()
999 const char *start, *end; in rtsp_parse_transport() local
1000 start = transport; in rtsp_parse_transport()
1001 while(start && *start) { in rtsp_parse_transport()
1002 while(*start && ISBLANK(*start) ) in rtsp_parse_transport()
1003 start++; in rtsp_parse_transport()
1004 end = strchr(start, ';'); in rtsp_parse_transport()
1005 if(checkprefix("interleaved=", start)) { in rtsp_parse_transport()
1008 const char *p = start + 12; in rtsp_parse_transport()
1035 start = (!end) ? end : (end + 1); in rtsp_parse_transport()