Home | History | Annotate | Download | only in gio

Lines Matching refs:func

300   GSourceFunc func;
314 proxy->ret_val = proxy->func (proxy->data);
344 * @func: a #GSourceFunc callback that will be called in the main thread
345 * @user_data: data to pass to @func
352 * Returns: The return value of @func
356 GSourceFunc func,
366 g_return_val_if_fail (func != NULL, FALSE);
373 ret_val = func (user_data);
380 proxy->func = func;
407 * @func: a #GSourceFunc callback that will be called in the main thread
408 * @user_data: data to pass to @func
418 * @func is called, either by passing %NULL as @notify to
423 GSourceFunc func,
432 g_return_if_fail (func != NULL);
439 func (user_data);
446 proxy->func = func;