Home
last modified time | relevance | path

Searched refs:stderr_str (Results 1 – 4 of 4) sorted by relevance

/third_party/glib/gio/
Dgunixmount.c252 gchar *stderr_str; in eject_unmount_done() local
254 if (!g_subprocess_communicate_utf8_finish (subprocess, result, NULL, &stderr_str, &error)) in eject_unmount_done()
263 g_task_return_new_error (task, G_IO_ERROR, G_IO_ERROR_FAILED, "%s", stderr_str); in eject_unmount_done()
268 g_free (stderr_str); in eject_unmount_done()
Dgunixvolume.c276 gchar *stderr_str; in eject_mount_done() local
279 if (!g_subprocess_communicate_utf8_finish (subprocess, result, NULL, &stderr_str, &error)) in eject_mount_done()
288 g_task_return_new_error (task, G_IO_ERROR, G_IO_ERROR_FAILED, "%s", stderr_str); in eject_mount_done()
297 g_free (stderr_str); in eject_mount_done()
/third_party/glib/gio/tests/
Dgsubprocess.c715 char *stdout_str = NULL, *stderr_str = NULL; in on_communicate_complete() local
722 &stdout_str, &stderr_str, &data->error); in on_communicate_complete()
750 g_assert_nonnull (stderr_str); in on_communicate_complete()
756 g_assert_null (stderr_str); in on_communicate_complete()
763 g_free (stderr_str); in on_communicate_complete()
948 char *stdout_str = NULL, *stderr_str = NULL; in on_communicate_cancelled_complete() local
953 &stdout_str, &stderr_str, &data->error); in on_communicate_cancelled_complete()
961 g_assert_null (stderr_str); in on_communicate_cancelled_complete()
1238 gchar *stdout_str = NULL, *stderr_str = NULL; in test_communicate_utf8_invalid() local
1249 &stdout_str, &stderr_str, &local_error); in test_communicate_utf8_invalid()
[all …]
/third_party/glib/glib/
Dgtestutils.c3269 GString *stderr_str; member
3338 g_string_append_len (data->stderr_str, buf, nread); in child_read()
3392 data.stderr_str = g_string_new (NULL); in wait_for_child()
3418 test_trap_last_stderr = g_string_free (data.stderr_str, FALSE); in wait_for_child()