Lines Matching refs:comps
91 gchar **comps = NULL; in GST_START_TEST() local
97 comps = gst_rtsp_url_decode_path_components (url); in GST_START_TEST()
98 fail_unless (comps != NULL); in GST_START_TEST()
99 fail_unless (g_strv_length (comps) == 3); in GST_START_TEST()
100 fail_unless (!strcmp (comps[0], "")); in GST_START_TEST()
101 fail_unless (!strcmp (comps[1], "foo")); in GST_START_TEST()
102 fail_unless (!strcmp (comps[2], "bar")); in GST_START_TEST()
104 g_strfreev (comps); in GST_START_TEST()
114 gchar **comps = NULL; in GST_START_TEST() local
120 comps = gst_rtsp_url_decode_path_components (url); in GST_START_TEST()
121 fail_unless (comps != NULL); in GST_START_TEST()
122 fail_unless (g_strv_length (comps) == 3); in GST_START_TEST()
123 fail_unless (!strcmp (comps[0], "")); in GST_START_TEST()
124 fail_unless (!strcmp (comps[1], "foo/bar")); in GST_START_TEST()
125 fail_unless (!strcmp (comps[2], "qux baz")); in GST_START_TEST()
127 g_strfreev (comps); in GST_START_TEST()
137 gchar **comps = NULL; in GST_START_TEST() local
143 comps = gst_rtsp_url_decode_path_components (url); in GST_START_TEST()
144 fail_unless (comps != NULL); in GST_START_TEST()
145 fail_unless (g_strv_length (comps) == 3); in GST_START_TEST()
146 fail_unless (!strcmp (comps[0], "")); in GST_START_TEST()
147 fail_unless (!strcmp (comps[1], "foo%00bar")); in GST_START_TEST()
148 fail_unless (!strcmp (comps[2], "qux baz")); in GST_START_TEST()
150 g_strfreev (comps); in GST_START_TEST()