Lines Matching refs:delim
104 gchar *p, *delim, *at, *col; in gst_rtsp_url_parse() local
130 delim = strpbrk (p, "/?"); in gst_rtsp_url_parse()
133 if (at && delim && at > delim) in gst_rtsp_url_parse()
157 if (!host_end || (delim && host_end >= delim)) in gst_rtsp_url_parse()
169 if (col && delim && col >= delim) in gst_rtsp_url_parse()
172 host_end = col ? col : delim; in gst_rtsp_url_parse()
188 p = delim; in gst_rtsp_url_parse()
191 delim = strchr (p, '?'); in gst_rtsp_url_parse()
192 if (!delim) in gst_rtsp_url_parse()
195 res->abspath = g_strndup (p, delim - p); in gst_rtsp_url_parse()
196 p = delim; in gst_rtsp_url_parse()