Lines Matching full:error
66 GError **error);
71 GError **error);
80 GError **error);
122 * @error: a #GError, %NULL to ignore.
131 * Can fail if the stream was already closed (with @error being set to
132 * %G_IO_ERROR_CLOSED), the stream has pending operations (with @error being
134 * the stream's interface (with @error being set to %G_IO_ERROR_NOT_SUPPORTED). In
139 * was cancelled, the error %G_IO_ERROR_CANCELLED will be set, and %NULL will
142 * Returns: a #GFileInfo for the @stream, or %NULL on error.
148 GError **error)
158 if (!g_output_stream_set_pending (output_stream, error))
168 info = class->query_info (stream, attributes, cancellable, error);
170 g_set_error_literal (error, G_IO_ERROR, G_IO_ERROR_NOT_SUPPORTED,
222 GError *error = NULL;
228 if (!g_output_stream_set_pending (output_stream, &error))
233 error);
234 g_error_free (error);
250 * @error: a #GError, %NULL to ignore.
260 GError **error)
271 if (g_simple_async_result_propagate_error (simple, error))
276 return class->query_info_finish (stream, result, error);
370 GError **error)
383 g_set_error_literal (error, G_IO_ERROR, G_IO_ERROR_NOT_SUPPORTED,
388 if (!g_output_stream_set_pending (output_stream, error))
394 res = class->seek (stream, offset, type, cancellable, error);
409 GError **error)
412 offset, type, cancellable, error);
446 GError **error)
459 g_set_error_literal (error, G_IO_ERROR, G_IO_ERROR_NOT_SUPPORTED,
464 if (!g_output_stream_set_pending (output_stream, error))
470 res = class->truncate_fn (stream, size, cancellable, error);
484 GError **error)
487 size, cancellable, error);
513 GError *error = NULL;
523 info = class->query_info (G_FILE_OUTPUT_STREAM (object), data->attributes, cancellable, &error);
525 g_set_error_literal (&error, G_IO_ERROR, G_IO_ERROR_NOT_SUPPORTED,
530 g_simple_async_result_set_from_error (res, error);
531 g_error_free (error);
561 GError **error)