Home | History | Annotate | Download | only in gio

Lines Matching refs:format

250  * @format: a string with format characters.
251 * @...: a list of values to insert into @format.
263 const char *format,
271 g_return_val_if_fail (format != NULL, NULL);
277 va_start (args, format);
278 g_simple_async_result_set_error_va (simple, domain, code, format, args);
482 const char *format,
488 message = g_strdup_vprintf (format, args);
501 * @format: a formatted error reporting string.
511 const char *format,
516 g_return_if_fail (format != NULL);
520 simple->error = _g_error_new_valist (domain, code, format, args);
529 * @format: a formatted error reporting string.
530 format.
538 const char *format,
545 g_return_if_fail (format != NULL);
547 va_start (args, format);
548 g_simple_async_result_set_error_va (simple, domain, code, format, args);
748 * @format: a formatted error reporting string.
749 * @...: a list of variables to fill in @format.
761 const char *format,
769 g_return_if_fail (format != NULL);
775 va_start (args, format);
776 g_simple_async_result_set_error_va (simple, domain, code, format, args);