Searched refs:tmp_error (Results 1 – 6 of 6) sorted by relevance
/third_party/glib/glib/tests/ |
D | markup-subparser.c | 111 GError *tmp_error = NULL; in replay_parser_start() local 119 user_data, &tmp_error); in replay_parser_start() 121 if (tmp_error) in replay_parser_start() 123 g_propagate_error (error, tmp_error); in replay_parser_start() 139 GError *tmp_error = NULL; in replay_parser_end() local 146 string, &tmp_error); in replay_parser_end() 148 if (tmp_error) in replay_parser_end() 150 g_propagate_error (error, tmp_error); in replay_parser_end()
|
/third_party/glib/gio/ |
D | gsocketclient.c | 974 GError *tmp_error; member 988 g_assert (info->tmp_error == NULL); in socket_client_error_info_free() 997 if (info->tmp_error == NULL) in consider_tmp_error() 1012 info->best_error = info->tmp_error; in consider_tmp_error() 1013 info->tmp_error = NULL; in consider_tmp_error() 1018 g_clear_error (&info->tmp_error); in consider_tmp_error() 1099 &error_info->tmp_error); in g_socket_client_connect() 1118 socket = create_socket (client, address, &error_info->tmp_error); in g_socket_client_connect() 1131 address, cancellable, &error_info->tmp_error)) in g_socket_client_connect() 1138 clarify_connect_error (error_info->tmp_error, connectable, address); in g_socket_client_connect() [all …]
|
D | gsocketconnection.c | 193 GError *tmp_error = NULL; in g_socket_connection_connect_async() local 204 cancellable, &tmp_error)) in g_socket_connection_connect_async() 209 else if (g_error_matches (tmp_error, G_IO_ERROR, G_IO_ERROR_PENDING)) in g_socket_connection_connect_async() 213 g_error_free (tmp_error); in g_socket_connection_connect_async() 222 g_task_return_error (task, tmp_error); in g_socket_connection_connect_async()
|
D | gfile.c | 3195 GError *tmp_error = NULL; in file_copy_fallback() local 3249 cancellable, &tmp_error); in file_copy_fallback() 3256 if (g_error_matches (tmp_error, G_IO_ERROR, G_IO_ERROR_NOT_SUPPORTED)) in file_copy_fallback() 3258 g_clear_error (&tmp_error); in file_copy_fallback() 3265 g_propagate_error (error, tmp_error); in file_copy_fallback()
|
/third_party/glib/glib/ |
D | gmarkup.c | 393 GError *tmp_error; in set_error_literal() local 395 tmp_error = g_error_new_literal (G_MARKUP_ERROR, code, message); in set_error_literal() 397 g_prefix_error (&tmp_error, in set_error_literal() 402 mark_error (context, tmp_error); in set_error_literal() 404 g_propagate_error (error, tmp_error); in set_error_literal() 592 GError *tmp_error; in set_unescape_error() local 611 tmp_error = g_error_new (G_MARKUP_ERROR, in set_unescape_error() 619 mark_error (context, tmp_error); in set_unescape_error() 621 g_propagate_error (error, tmp_error); in set_unescape_error() 1025 GError *tmp_error; in emit_start_element() local [all …]
|
D | gregex.c | 1240 GError *tmp_error = NULL; in g_match_info_expand_references() local 1245 list = split_replacement (string_to_expand, &tmp_error); in g_match_info_expand_references() 1246 if (tmp_error != NULL) in g_match_info_expand_references() 1248 g_propagate_error (error, tmp_error); in g_match_info_expand_references() 1704 GError *tmp_error; in regex_compile() local 1713 tmp_error = g_error_new (G_REGEX_ERROR, errcode, in regex_compile() 1717 g_propagate_error (error, tmp_error); in regex_compile() 2472 GError *tmp_error = NULL; in g_regex_split_full() local 2517 match_options, &match_info, &tmp_error); in g_regex_split_full() 2519 while (tmp_error == NULL) in g_regex_split_full() [all …]
|