Searched refs:notifiers (Results 1 - 6 of 6) sorted by relevance

/external/qemu/
H A Dnotify.c19 QTAILQ_INIT(&list->notifiers);
24 QTAILQ_INSERT_HEAD(&list->notifiers, notifier, node);
29 QTAILQ_REMOVE(&list->notifiers, notifier, node);
36 QTAILQ_FOREACH_SAFE(notifier, &list->notifiers, node, next) {
H A Dnotify.h29 QTAILQ_HEAD(, Notifier) notifiers; member in struct:NotifierList
33 { QTAILQ_HEAD_INITIALIZER((head).notifiers) }
/external/bluetooth/glib/gobject/
H A Dgclosure.c82 * 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...]
H A Dgclosure.h46 * 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
/external/webkit/Source/WebCore/page/
H A DGeolocation.cpp476 void Geolocation::sendError(GeoNotifierVector& notifiers, PositionError* error) argument
478 GeoNotifierVector::const_iterator end = notifiers.end();
479 for (GeoNotifierVector::const_iterator it = notifiers.begin(); it != end; ++it) {
487 void Geolocation::sendPosition(GeoNotifierVector& notifiers, Geoposition* position) argument
489 GeoNotifierVector::const_iterator end = notifiers.end();
490 for (GeoNotifierVector::const_iterator it = notifiers.begin(); it != end; ++it) {
498 void Geolocation::stopTimer(GeoNotifierVector& notifiers) argument
500 GeoNotifierVector::const_iterator end = notifiers.end();
501 for (GeoNotifierVector::const_iterator it = notifiers.begin(); it != end; ++it) {
529 void Geolocation::cancelRequests(GeoNotifierVector& notifiers) argument
545 extractNotifiersWithCachedPosition(GeoNotifierVector& notifiers, GeoNotifierVector* cached) argument
[all...]
H A DGeolocation.h156 static void extractNotifiersWithCachedPosition(GeoNotifierVector& notifiers, GeoNotifierVector* cached);

Completed in 114 milliseconds