Home
last modified time | relevance | path

Searched refs:notifications (Results 1 – 25 of 241) sorted by relevance

12345678910

/third_party/glib/gio/tests/
Dgnotification-server.c92 GHashTable *notifications; in g_notification_server_notification_added() local
94 notifications = g_hash_table_lookup (server->applications, app_id); in g_notification_server_notification_added()
95 if (notifications == NULL) in g_notification_server_notification_added()
97 notifications = g_hash_table_new_full (g_str_hash, g_str_equal, in g_notification_server_notification_added()
99 g_hash_table_insert (server->applications, g_strdup (app_id), notifications); in g_notification_server_notification_added()
102 g_hash_table_replace (notifications, g_strdup (notification_id), g_variant_ref (notification)); in g_notification_server_notification_added()
112 GHashTable *notifications; in g_notification_server_notification_removed() local
114 notifications = g_hash_table_lookup (server->applications, app_id); in g_notification_server_notification_removed()
115 if (notifications) in g_notification_server_notification_removed()
117 g_hash_table_remove (notifications, notification_id); in g_notification_server_notification_removed()
[all …]
/third_party/glib/gio/
Dgfdonotificationbackend.c49 GSList *notifications; member
106 for (it = backend->notifications; it != NULL; it = it->next) in g_fdo_notification_backend_find_notification()
122 for (it = backend->notifications; it != NULL; it = it->next) in g_fdo_notification_backend_find_notification_by_notify_id()
206 backend->notifications = g_slist_remove (backend->notifications, n); in notify_signal()
218 if (backend->notifications) in name_vanished_handler_cb()
220 g_slist_free_full (backend->notifications, freedesktop_notification_free); in name_vanished_handler_cb()
221 backend->notifications = NULL; in name_vanished_handler_cb()
366 backend->notifications = g_slist_remove (backend->notifications, match); in notification_sent()
369 backend->notifications = g_slist_prepend (backend->notifications, n); in notification_sent()
405 if (backend->notifications) in g_fdo_notification_backend_dispose()
[all …]
Dgapplication.c245 GNotificationBackend *notifications; member
1404 if (application->priv->notifications) in g_application_finalize()
1405 g_object_unref (application->priv->notifications); in g_application_finalize()
2935 if (application->priv->notifications == NULL) in g_application_send_notification()
2936 application->priv->notifications = g_notification_backend_new_default (application); in g_application_send_notification()
2944 g_notification_backend_send_notification (application->priv->notifications, id, notification); in g_application_send_notification()
2977 if (application->priv->notifications == NULL) in g_application_withdraw_notification()
2978 application->priv->notifications = g_notification_backend_new_default (application); in g_application_withdraw_notification()
2980 g_notification_backend_withdraw_notification (application->priv->notifications, id); in g_application_withdraw_notification()
Dgcocoanotificationbackend.m249 NSArray *notifications = [center deliveredNotifications];
252 for (NSUserNotification *notification in notifications)
/third_party/flutter/flutter/packages/flutter/lib/src/widgets/
Dinherited_notifier.dart15 /// Dependents are notified whenever the [notifier] sends notifications, or
18 /// Multiple notifications are coalesced, so that dependents only rebuild once
43 /// sends notifications.
55 /// Whenever this object sends change notifications, the dependents of this
60 /// determined by the `==` operator), notifications are sent. This behavior
63 /// While the [notifier] is null, no notifications are sent, since the null
64 /// object cannot itself send notifications.
Dnotification_listener.dart20 /// To listen for notifications in a subtree, use a [NotificationListener].
90 /// To dispatch notifications, use the [Notification.dispatch] method.
92 /// Creates a widget that listens for notifications.
118 /// For notifications that dispatch during layout, such as those that inherit
121 /// descendant, by definition, since notifications bubble up the tree). For
143 /// To listen for notifications in a subtree, use a
158 /// ancestors when appropriate, or alternatively, dispatch the notifications
Dscroll_notification.dart19 /// Typically listeners only respond to notifications with a [depth] of zero.
44 /// The notifications have the following lifecycle:
63 /// [NotificationListener] will receive notifications for all descendant
64 /// [Scrollable] widgets. To focus on notifications from the nearest
73 /// notifications are therefore primarily useful for paint effects (since paint
75 /// widgets are examples of paint effects that use scroll notifications.
282 /// listen to notifications from their children.
Dsize_changed_layout_notifier.dart25 /// notifications such as this one.
50 /// * [Notification], the base class for notifications that bubble through the
54 /// notifications when [child] changes layout size.
Droute_notification_messages.dart10 /// Messages for route change notifications.
/third_party/flutter/flutter/packages/flutter/lib/src/foundation/
Dchange_notifier.dart32 /// a mutable value that triggers the notifications when modified.
34 /// The terms "notify clients", "send notifications", "trigger notifications",
35 /// and "fire notifications" are used interchangeably.
40 /// whenever a given [Listenable] triggers its notifications. This widget is
45 /// rebuild whenever a [ValueListenable] object triggers its notifications,
48 /// [Listenable]'s notifications to trigger rebuilds in descendant widgets
51 /// notifications whenever any of a list of other [Listenable]s trigger their
52 /// notifications.
90 /// API using [VoidCallback] for notifications.
94 /// notifications (where N is the number of listeners).
[all …]
/third_party/node/test/parallel/
Dtest-inspector-connect-main-thread.js157 const notifications = [];
158 session.on('NodeWorker.attachedToWorker', (n) => notifications.push(n));
162 assert.strictEqual(notifications.length, 2);
/third_party/flutter/flutter/packages/flutter/lib/src/material/
Dscrollbar.dart34 /// The [child] should be a source of [ScrollNotification] notifications,
44 /// subtree) should include a source of [ScrollNotification] notifications.
118 // scroll notifications here.
/third_party/node/deps/npm/docs/content/cli-commands/
Dnpm-hook.md59 …e [npm hooks](https://blog.npmjs.org/post/145260155635/introducing-hooks-get-notifications-of-npm),
80 …ks" blog post](https://blog.npmjs.org/post/145260155635/introducing-hooks-get-notifications-of-npm)
/third_party/flutter/flutter/packages/flutter/test/foundation/
Dchange_notifier_test.dart305 int notifications = 0;
307 notifications += 1;
310 expect(notifications, 0);
313 expect(notifications, 1);
/third_party/flutter/skia/third_party/externals/angle2/doc/
DExtensionSupport.md31 * reset notifications and sized queries only, no robust buffer access
53 * only reset notifications supported
/third_party/libinput/doc/user/
Dswitches.rst33 This handling of lid switches is transparent to the user, no notifications
59 notifications are sent and the device appears as enabled at all times.
/third_party/flutter/flutter/packages/flutter_tools/test/general.shard/
Dbase_utils_test.dart13 test('sends notifications', () async {
/third_party/libcoap/
Dcoap_config.h.contiki104 * Number of notifications that may be sent non-confirmable before a
113 * Number of confirmable notifications that may fail (i.e. time out
/third_party/wpa_supplicant/
DCOPYING20 terms. However, such copyright and license notifications are maintained
/third_party/wpa_supplicant/wpa_supplicant-2.9/
DCOPYING20 terms. However, such copyright and license notifications are maintained
/third_party/wpa_supplicant/wpa_supplicant-2.9_standard/
DCOPYING20 terms. However, such copyright and license notifications are maintained
/third_party/node/doc/api/
Dperf_hooks.md421 `PerformanceObserver` objects provide notifications when new
440 performance overhead, instances should not be left subscribed to notifications
453 Disconnects the `PerformanceObserver` instance from all notifications.
466 notifications will be buffered internally. If `false`, notifications will
469 Subscribes the `PerformanceObserver` instance to notifications of new
/third_party/boost/boost/asio/detail/impl/
Dsignal_set_service.ipp39 // The read end of the pipe used for signal notifications.
42 // The write end of the pipe used for signal notifications.
539 // Register for pipe readiness notifications.
559 // Disable the pipe readiness notifications.
/third_party/boost/libs/asio/include/boost/asio/detail/impl/
Dsignal_set_service.ipp39 // The read end of the pipe used for signal notifications.
42 // The write end of the pipe used for signal notifications.
539 // Register for pipe readiness notifications.
559 // Disable the pipe readiness notifications.
/third_party/gstreamer/gstreamer/docs/random/wtay/
Dautoplug338 - all new_pad signals and caps notifications trigger the above actions.

12345678910