Searched refs:notifiers (Results 1 – 9 of 9) sorted by relevance
/external/bluetooth/glib/gobject/ |
D | gclosure.c | 213 closure->notifiers = NULL; in g_closure_new_simple() 251 ndata = closure->notifiers + CLOSURE_N_MFUNCS (closure) + n; in closure_invoke_notifiers() 266 ndata = closure->notifiers + CLOSURE_N_MFUNCS (closure) + closure->n_fnotifiers + n; in closure_invoke_notifiers() 280 ndata = closure->notifiers + offs + i; in closure_invoke_notifiers() 289 ndata = closure->notifiers + offs + i; in closure_invoke_notifiers() 323 GClosureNotifyData *notifiers; in g_closure_set_meta_marshal() local 331 notifiers = closure->notifiers; in g_closure_set_meta_marshal() 332 closure->notifiers = g_renew (GClosureNotifyData, NULL, CLOSURE_N_NOTIFIERS (closure) + 1); in g_closure_set_meta_marshal() 333 if (notifiers) in g_closure_set_meta_marshal() 338 …g_memmove (closure->notifiers + 1, notifiers, CLOSURE_N_NOTIFIERS (closure) * sizeof (notifiers[0]… in g_closure_set_meta_marshal() [all …]
|
D | gclosure.h | 169 /*< private >*/ GClosureNotifyData *notifiers; member
|
D | ChangeLog | 3248 Don't leak closure->notifiers. 3661 GClosure provides destroy notifiers for arbitrary data pointers,
|
/external/qemu/ |
D | notify.c | 19 QTAILQ_INIT(&list->notifiers); in notifier_list_init() 24 QTAILQ_INSERT_HEAD(&list->notifiers, notifier, node); in notifier_list_add() 29 QTAILQ_REMOVE(&list->notifiers, notifier, node); in notifier_list_remove() 36 QTAILQ_FOREACH_SAFE(notifier, &list->notifiers, node, next) { in notifier_list_notify()
|
D | notify.h | 29 QTAILQ_HEAD(, Notifier) notifiers; 33 { QTAILQ_HEAD_INITIALIZER((head).notifiers) }
|
/external/webkit/Source/WebCore/page/ |
D | Geolocation.cpp | 476 void Geolocation::sendError(GeoNotifierVector& notifiers, PositionError* error) in sendError() argument 478 GeoNotifierVector::const_iterator end = notifiers.end(); in sendError() 479 for (GeoNotifierVector::const_iterator it = notifiers.begin(); it != end; ++it) { in sendError() 487 void Geolocation::sendPosition(GeoNotifierVector& notifiers, Geoposition* position) in sendPosition() argument 489 GeoNotifierVector::const_iterator end = notifiers.end(); in sendPosition() 490 for (GeoNotifierVector::const_iterator it = notifiers.begin(); it != end; ++it) { in sendPosition() 498 void Geolocation::stopTimer(GeoNotifierVector& notifiers) in stopTimer() argument 500 GeoNotifierVector::const_iterator end = notifiers.end(); in stopTimer() 501 for (GeoNotifierVector::const_iterator it = notifiers.begin(); it != end; ++it) { in stopTimer() 529 void Geolocation::cancelRequests(GeoNotifierVector& notifiers) in cancelRequests() argument [all …]
|
D | Geolocation.h | 156 …static void extractNotifiersWithCachedPosition(GeoNotifierVector& notifiers, GeoNotifierVector* ca…
|
/external/bluetooth/glib/ |
D | ChangeLog.pre-1-2 | 466 we always invoke the destroy notifiers for user_data and source_data 485 function, use that to marshal hook destruction notifiers. 1890 can be called from within destroy notifiers as well).
|
/external/webkit/Source/WebCore/ |
D | ChangeLog-2010-01-29 | 60232 (WebCore::Geolocation::stopTimer): Added. Stops the timers for a vector of notifiers.
|