Home
last modified time | relevance | path

Searched refs:g_strstr_len (Results 1 – 25 of 31) sorted by relevance

12

/third_party/gstreamer/gstplugins_base/gst-libs/gst/gl/
Dgstglapi.c109 } else if (g_strstr_len (apis, 7, GST_GL_API_OPENGL3_NAME)) { in gst_gl_api_from_string()
112 } else if (g_strstr_len (apis, 6, GST_GL_API_OPENGL_NAME)) { in gst_gl_api_from_string()
115 } else if (g_strstr_len (apis, 5, GST_GL_API_GLES1_NAME)) { in gst_gl_api_from_string()
118 } else if (g_strstr_len (apis, 5, GST_GL_API_GLES2_NAME)) { in gst_gl_api_from_string()
194 } else if (g_strstr_len (platform, 3, "glx")) { in gst_gl_platform_from_string()
197 } else if (g_strstr_len (platform, 3, "egl")) { in gst_gl_platform_from_string()
200 } else if (g_strstr_len (platform, 3, "wgl")) { in gst_gl_platform_from_string()
203 } else if (g_strstr_len (platform, 3, "cgl")) { in gst_gl_platform_from_string()
Dgstglwindow.c250 if (!window && (!user_choice || g_strstr_len (user_choice, 5, "cocoa"))) in gst_gl_window_new()
254 if (!window && (!user_choice || g_strstr_len (user_choice, 3, "x11"))) in gst_gl_window_new()
258 if (!window && (!user_choice || g_strstr_len (user_choice, 5, "win32"))) in gst_gl_window_new()
262 if (!window && (!user_choice || g_strstr_len (user_choice, 7, "wayland"))) in gst_gl_window_new()
266 if (!window && (!user_choice || g_strstr_len (user_choice, 8, "dispmanx"))) in gst_gl_window_new()
270 if (!window && (!user_choice || g_strstr_len (user_choice, 7, "android"))) in gst_gl_window_new()
274 if (!window && (!user_choice || g_strstr_len (user_choice, 4, "eagl"))) in gst_gl_window_new()
278 if (!window && (!user_choice || g_strstr_len (user_choice, 6, "viv-fb"))) in gst_gl_window_new()
282 if (!window && (!user_choice || g_strstr_len (user_choice, 3, "gbm"))) in gst_gl_window_new()
Dgstgldisplay.c288 if (!display && (!user_choice || g_strstr_len (user_choice, 5, "cocoa"))) { in gst_gl_display_new()
295 if (!display && (!user_choice || g_strstr_len (user_choice, 7, "wayland"))) in gst_gl_display_new()
299 if (!display && (!user_choice || g_strstr_len (user_choice, 3, "x11"))) in gst_gl_display_new()
303 if (!display && (!user_choice || g_strstr_len (user_choice, 6, "viv-fb"))) { in gst_gl_display_new()
316 if (!display && (!user_choice || g_strstr_len (user_choice, 3, "gbm"))) { in gst_gl_display_new()
322 || g_strstr_len (platform_choice, 3, "egl"))) in gst_gl_display_new()
Dgstglcontext.c335 if (!context && (!user_choice || g_strstr_len (user_choice, 3, "cgl"))) in gst_gl_context_new()
339 if (!context && (!user_choice || g_strstr_len (user_choice, 3, "glx"))) in gst_gl_context_new()
343 if (!context && (!user_choice || g_strstr_len (user_choice, 3, "egl"))) in gst_gl_context_new()
347 if (!context && (!user_choice || g_strstr_len (user_choice, 3, "wgl"))) in gst_gl_context_new()
351 if (!context && (!user_choice || g_strstr_len (user_choice, 4, "eagl"))) in gst_gl_context_new()
600 if (g_strstr_len (version, 9, "OpenGL ES")) { in gst_gl_context_get_current_gl_api()
1668 if (g_strstr_len (feature, 3, "GL_")) in gst_gl_context_check_feature()
Dgstglsl.c290 if (g_strstr_len (&str[i], 7, "version")) in _check_valid_version_preprocessor_string()
425 if (g_strstr_len (&str[i], 2, "*/")) { in _gst_glsl_shader_string_find_version()
432 if (g_strstr_len (&str[i], 2, "//")) { in _gst_glsl_shader_string_find_version()
438 if (g_strstr_len (&str[i], 2, "/*")) { in _gst_glsl_shader_string_find_version()
/third_party/gstreamer/gstplugins_bad/ext/vulkan/
Dvkwindow.c182 if (!window && (!user_choice || g_strstr_len (user_choice, 3, "x11"))) in gst_vulkan_window_new()
186 if (!window && (!user_choice || g_strstr_len (user_choice, 3, "xcb"))) in gst_vulkan_window_new()
190 if (!window && (!user_choice || g_strstr_len (user_choice, 7, "wayland"))) in gst_vulkan_window_new()
194 if (!window && (!user_choice || g_strstr_len (user_choice, 5, "cocoa"))) in gst_vulkan_window_new()
198 if (!window && (!user_choice || g_strstr_len (user_choice, 3, "ios"))) in gst_vulkan_window_new()
/third_party/glib/glib/tests/
Dstrfuncs.c1040 res = g_strstr_len (NULL, 0, "xxx"); in test_strstr()
1045 res = g_strstr_len ("xxx", 0, NULL); in test_strstr()
1050 res = g_strstr_len (haystack, 6, "xxx"); in test_strstr()
1053 res = g_strstr_len (haystack, 6, "FooBarFooBarFooBar"); in test_strstr()
1056 res = g_strstr_len (haystack, 3, "Bar"); in test_strstr()
1059 res = g_strstr_len (haystack, 6, ""); in test_strstr()
1063 res = g_strstr_len (haystack, 6, "Bar"); in test_strstr()
1067 res = g_strstr_len (haystack, -1, "Bar"); in test_strstr()
1136 res = g_strstr_len (haystack, 15, "BarFoo"); in test_strstr()
1771 g_assert_null (g_strstr_len (string, 4096, "BUGS")); in test_bounds()
[all …]
/third_party/glib/gio/
Dgtlscertificate.c290 header_end = g_strstr_len (data, data_len, PEM_PRIVKEY_HEADER_END); in parse_private_key()
312 footer_end = g_strstr_len (header_end, data_len - (header_end - data), PEM_PRIVKEY_FOOTER_END); in parse_private_key()
340 start = g_strstr_len (*data, data_end - *data, PEM_CERTIFICATE_HEADER); in parse_next_pem_certificate()
351 end = g_strstr_len (start, data_end - start, PEM_CERTIFICATE_FOOTER); in parse_next_pem_certificate()
Dgunixmounts.c1064 (g_strstr_len (mount_options, -1, "user_xattr") == NULL)) || in _g_get_unix_mount_points()
1065 (g_strstr_len (mount_options, -1, "pamconsole") == NULL) || in _g_get_unix_mount_points()
2919 if (g_strstr_len (mount_path, -1, "/.") != NULL) in g_unix_mount_guess_should_display()
/third_party/gstreamer/gstplugins_good/gst/udp/
Dgstudpnetutils.c54 location = g_strstr_len (location_start, -1, "@"); in gst_udp_parse_uri()
/third_party/glib/gio/tests/
Dfile.c2853 g_assert_null (g_strstr_len (attrs_with_commas, -1, "," G_FILE_ATTRIBUTE_UNIX_MODE ",")); in test_build_attribute_list_for_copy()
2855 g_assert_nonnull (g_strstr_len (attrs_with_commas, -1, "," G_FILE_ATTRIBUTE_UNIX_MODE ",")); in test_build_attribute_list_for_copy()
2859 … g_assert_nonnull (g_strstr_len (attrs_with_commas, -1, "," G_FILE_ATTRIBUTE_UNIX_UID ",")); in test_build_attribute_list_for_copy()
2860 … g_assert_nonnull (g_strstr_len (attrs_with_commas, -1, "," G_FILE_ATTRIBUTE_UNIX_GID ",")); in test_build_attribute_list_for_copy()
2864 g_assert_null (g_strstr_len (attrs_with_commas, -1, "," G_FILE_ATTRIBUTE_UNIX_UID ",")); in test_build_attribute_list_for_copy()
2865 g_assert_null (g_strstr_len (attrs_with_commas, -1, "," G_FILE_ATTRIBUTE_UNIX_GID ",")); in test_build_attribute_list_for_copy()
2869 … g_assert_nonnull (g_strstr_len (attrs_with_commas, -1, "," G_FILE_ATTRIBUTE_TIME_MODIFIED ",")); in test_build_attribute_list_for_copy()
2870 …g_assert_nonnull (g_strstr_len (attrs_with_commas, -1, "," G_FILE_ATTRIBUTE_TIME_MODIFIED_USEC ","… in test_build_attribute_list_for_copy()
2873 … g_assert_nonnull (g_strstr_len (attrs_with_commas, -1, "," G_FILE_ATTRIBUTE_TIME_ACCESS ",")); in test_build_attribute_list_for_copy()
2874 …g_assert_nonnull (g_strstr_len (attrs_with_commas, -1, "," G_FILE_ATTRIBUTE_TIME_ACCESS_USEC ",")); in test_build_attribute_list_for_copy()
[all …]
/third_party/gstreamer/gstreamer/plugins/elements/
Dgstfdsrc.c868 if ((q = g_strstr_len (uri, -1, "?"))) { in gst_fd_src_uri_set_uri()
873 if ((sp = g_strstr_len (q, -1, "size="))) { in gst_fd_src_uri_set_uri()
888 sp = g_strstr_len (q, -1, "offset="); in gst_fd_src_uri_set_uri()
/third_party/gettext/libtextstyle/gnulib-local/lib/glib/
Dgstrfuncs.in.h127 gchar * g_strstr_len (const gchar *haystack,
Dgstrfuncs.c2605 g_strstr_len (const gchar *haystack, in g_strstr_len() function
/third_party/glib/glib/
Dgstrfuncs.h126 gchar * g_strstr_len (const gchar *haystack,
Dgutf8.c536 return g_strstr_len (p, len, ch); in g_utf8_strchr()
Dgstrfuncs.c2740 g_strstr_len (const gchar *haystack, in g_strstr_len() function
/third_party/gstreamer/gstplugins_base/gst-libs/gst/tag/
Dgstxmptag.c1226 xp1 = g_strstr_len (xps, len, "<?xpacket begin"); in gst_tag_list_from_xmp_buffer()
1242 xp2 = g_strstr_len (&xps[len - max_ft_len], max_ft_len, "<?xpacket "); in gst_tag_list_from_xmp_buffer()
/third_party/gstreamer/gstplugins_bad/tests/examples/ipcpipeline/
Dipc-play.c960 if (!g_strstr_len (argv[1], -1, "://")) { in main()
/third_party/gstreamer/gstplugins_bad/ext/webrtc/
Dgstwebrtcice.c287 colon = g_strstr_len (userinfo, -1, ":"); in _parse_userinfo()
/third_party/gstreamer/gstplugins_bad/sys/directsound/
Dgstdirectsoundsrc.c876 if (g_strstr_len (dsoundsrc->device_name, -1, mixer_caps->szPname) != NULL) { in gst_directsound_src_mixer_find()
/third_party/gettext/libtextstyle/gnulib-local/lib/libcroco/
Dcr-sel-eng.c463 if (g_strstr_len in attr_add_sel_matches_node()
/third_party/gstreamer/gstplugins_bad/ext/smoothstreaming/
Dgstmssmanifest.c616 pps_str = g_strstr_len (sps_str, -1, "00000001"); in _gst_mss_stream_add_h264_codec_data()
/third_party/gstreamer/gstplugins_bad/ext/ttml/
Dttmlparse.c297 if (g_strstr_len (strings[2], -1, ".")) { in ttml_parse_timecode()
/third_party/gstreamer/gstreamer/gst/
Dgsturi.c1367 kv_sep_pos = g_strstr_len (part, -1, kv_sep); in _gst_uri_string_to_table()

12