Searched refs:g_shell_quote (Results 1 – 7 of 7) sorted by relevance
255 CHECK_STRING_RESULT (g_shell_quote (""), "''"); in main()256 CHECK_STRING_RESULT (g_shell_quote ("a"), "'a'"); in main()257 CHECK_STRING_RESULT (g_shell_quote ("("), "'('"); in main()258 CHECK_STRING_RESULT (g_shell_quote ("'"), "''\\'''"); in main()259 CHECK_STRING_RESULT (g_shell_quote ("'a"), "''\\''a'"); in main()260 CHECK_STRING_RESULT (g_shell_quote ("a'"), "'a'\\'''"); in main()261 CHECK_STRING_RESULT (g_shell_quote ("a'a"), "'a'\\''a'"); in main()
45 gchar* g_shell_quote (const gchar *unquoted_string);
2500 #undef g_shell_quote 2501 extern __typeof (g_shell_quote) g_shell_quote __attribute((alias("IA__g_shell_quote"), visibility("…
2493 extern __typeof (g_shell_quote) IA__g_shell_quote __attribute((visibility("hidden")));2494 #define g_shell_quote IA__g_shell_quote macro
529 result = g_shell_quote (uri); in expand_macro_single()534 result = g_shell_quote (path); in expand_macro_single()541 result = g_shell_quote (name); in expand_macro_single()550 result = g_shell_quote (name); in expand_macro_single()
1031 g_shell_quote
1998 * glib/gshell.c: (g_shell_quote): Added missing \ character.2001 (main): Added tests for g_shell_quote and g_shell_unquote.