HomeSort by relevance Sort by last modified time
    Searched defs:notifiers (Results 1 - 3 of 3) sorted by null

  /external/qemu/
notify.h 29 QTAILQ_HEAD(, Notifier) notifiers; member in struct:NotifierList
33 { QTAILQ_HEAD_INITIALIZER((head).notifiers) }
  /external/bluetooth/glib/gobject/
gclosure.h 46 * Get the total number of notifiers connected with the closure @cl.
47 * The count includes the meta marshaller, the finalize and invalidate notifiers
48 * and the marshal guards. Note that each guard counts as two notifiers.
52 * Returns: number of notifiers
151 volatile guint n_fnotifiers : 2; /* finalization notifiers */
152 volatile guint n_inotifiers : 8; /* invalidation notifiers */
169 /*< private >*/ GClosureNotifyData *notifiers; member in struct:_GClosure
gclosure.c 82 * g_closure_invalidate() and invalidation notifiers allow callbacks to be
213 closure->notifiers = NULL;
231 * - closure->notifiers may be reloacted during callback
251 ndata = closure->notifiers + CLOSURE_N_MFUNCS (closure) + n;
266 ndata = closure->notifiers + CLOSURE_N_MFUNCS (closure) + closure->n_fnotifiers + n;
280 ndata = closure->notifiers + offs + i;
289 ndata = closure->notifiers + offs + i;
323 GClosureNotifyData *notifiers; local
331 notifiers = closure->notifiers;
    [all...]

Completed in 46 milliseconds