/openbmc/linux/arch/mips/kernel/ |
H A D | watch.c | 20 struct mips3264_watch_reg_state *watches = &t->thread.watch.mips3264; in mips_install_watch_registers() local 28 write_c0_watchlo3(watches->watchlo[3]); in mips_install_watch_registers() 29 write_c0_watchhi3(watchhi | watches->watchhi[3]); in mips_install_watch_registers() 32 write_c0_watchlo2(watches->watchlo[2]); in mips_install_watch_registers() 33 write_c0_watchhi2(watchhi | watches->watchhi[2]); in mips_install_watch_registers() 36 write_c0_watchlo1(watches->watchlo[1]); in mips_install_watch_registers() 37 write_c0_watchhi1(watchhi | watches->watchhi[1]); in mips_install_watch_registers() 40 write_c0_watchlo0(watches->watchlo[0]); in mips_install_watch_registers() 41 write_c0_watchhi0(watchhi | watches->watchhi[0]); in mips_install_watch_registers() 52 struct mips3264_watch_reg_state *watches = in mips_read_watch_registers() local [all …]
|
/openbmc/qemu/tests/unit/ |
H A D | test-xs-node.c | 69 g_hash_table_unref(s->watches); in xs_impl_delete() 497 GString *watches = g_string_new(NULL); in do_test_xs_node_tx() local 506 watch_cb, watches); in do_test_xs_node_tx() 508 g_assert(watches->len == strlen("somewatch")); in do_test_xs_node_tx() 509 g_assert(!strcmp(watches->str, "somewatch")); in do_test_xs_node_tx() 510 g_string_truncate(watches, 0); in do_test_xs_node_tx() 517 g_assert(!strcmp(watches->str, in do_test_xs_node_tx() 519 g_string_truncate(watches, 0); in do_test_xs_node_tx() 531 g_assert(!strcmp(watches->str, in do_test_xs_node_tx() 533 g_string_truncate(watches, 0); in do_test_xs_node_tx() [all …]
|
/openbmc/qemu/util/ |
H A D | filemonitor-inotify.c | 50 GArray *watches; /* QFileMonitorWatch elements */ member 140 for (i = 0; i < dir->watches->len; i++) { in qemu_file_monitor_watch() 141 QFileMonitorWatch *watch = &g_array_index(dir->watches, in qemu_file_monitor_watch() 166 for (i = 0; i < dir->watches->len; i++) { in qemu_file_monitor_dir_free() 167 QFileMonitorWatch *watch = &g_array_index(dir->watches, in qemu_file_monitor_dir_free() 171 g_array_unref(dir->watches); in qemu_file_monitor_dir_free() 279 dir->watches = g_array_new(FALSE, TRUE, sizeof(QFileMonitorWatch)); in qemu_file_monitor_add_watch() 294 g_array_append_val(dir->watches, watch); in qemu_file_monitor_add_watch() 324 for (i = 0; i < dir->watches->len; i++) { in qemu_file_monitor_remove_watch() 325 QFileMonitorWatch *watch = &g_array_index(dir->watches, in qemu_file_monitor_remove_watch() [all …]
|
/openbmc/phosphor-dbus-monitor/src/test/templates/ |
H A D | propertywatchgentest.mako.hpp | 13 const std::array<std::tuple<std::string, size_t>, ${len(watches)}> watches = {{ variable 14 % for w in watches:
|
/openbmc/qemu/hw/i386/kvm/ |
H A D | xenstore_impl.c | 66 GHashTable *watches; member 267 GList *watches; member 303 l = op->watches; in fire_watches() 306 w = g_hash_table_lookup(op->s->watches, op->path); in fire_watches() 598 watch = g_hash_table_lookup(op->s->watches, op->path); in xs_node_walk() 687 op->watches = g_list_append(op->watches, watch); in xs_node_walk() 697 op->watches = g_list_remove(op->watches, watch); in xs_node_walk() 746 assert(!op->watches); in xs_node_walk() 842 op->watches = NULL; in init_walk_op() 993 watch = g_hash_table_lookup(op->s->watches, op->path); in tx_commit_walk() [all …]
|
H A D | xen_xenstore.c | 1501 GList *watches; member 1628 for (l = h->watches; l; l = l->next) { in be_watch_bh() 1673 h->watches = g_list_append(h->watches, w); in xs_be_watch() 1681 h->watches = g_list_remove(h->watches, w); in xs_be_unwatch() 1729 while (h->watches) { in xs_be_close() 1730 struct qemu_xs_watch *w = h->watches->data; in xs_be_close()
|
/openbmc/linux/kernel/ |
H A D | audit_watch.c | 47 struct list_head watches; /* anchor for audit_watch->wlist */ member 60 WARN_ON(!list_empty(&parent->watches)); in audit_free_parent() 146 INIT_LIST_HEAD(&parent->watches); in audit_init_parent() 256 list_for_each_entry_safe(owatch, nextw, &parent->watches, wlist) { in audit_update_watch() 316 list_add(&nwatch->wlist, &parent->watches); in audit_update_watch() 329 list_for_each_entry_safe(w, nextw, &parent->watches, wlist) { in audit_remove_parent_watches() 373 list_for_each_entry(w, &parent->watches, wlist) { in audit_add_to_parent() 393 list_add(&watch->wlist, &parent->watches); in audit_add_to_parent() 461 if (list_empty(&parent->watches)) in audit_remove_watch_rule()
|
H A D | watch_queue.c | 476 hlist_add_head(&watch->queue_node, &wqueue->watches); in add_one_watch() 609 while (!hlist_empty(&wqueue->watches)) { in watch_queue_clear() 610 watch = hlist_entry(wqueue->watches.first, struct watch, queue_node); in watch_queue_clear() 696 INIT_HLIST_HEAD(&wqueue->watches); in watch_queue_init()
|
/openbmc/linux/tools/counter/ |
H A D | counter_example.c | 19 static struct counter_watch watches[2] = { variable 56 ret = ioctl(fd, COUNTER_ADD_WATCH_IOCTL, watches + i); in main()
|
/openbmc/phosphor-dbus-monitor/src/test/ |
H A D | propertywatchgentest.cpp | 66 ASSERT_EQ(sizeof(expectedWatches), sizeof(watches)); in TEST() 74 ASSERT_EQ(watches[i], expectedWatches[i]); in TEST()
|
/openbmc/phosphor-dbus-monitor/src/ |
H A D | sdbusplus.hpp | 29 static std::vector<sdbusplus::bus::match_t> watches; in getWatches() local 30 return watches; in getWatches()
|
H A D | pdmgen.py | 1244 self.watches = kw.pop("watch", []) 1275 watches=self.watches,
|
/openbmc/linux/drivers/xen/xenbus/ |
H A D | xenbus_dev_frontend.c | 105 struct list_head watches; member 326 list_for_each_entry_safe(watch, tmp_watch, &u->watches, list) { in xenbus_worker() 530 list_add(&watch->list, &u->watches); in xenbus_write_watch() 532 list_for_each_entry(watch, &u->watches, list) { in xenbus_write_watch() 665 INIT_LIST_HEAD(&u->watches); in xenbus_file_open()
|
H A D | xenbus_xs.c | 78 static LIST_HEAD(watches); 690 list_for_each_entry(i, &watches, list) in find_watch() 778 list_add(&watch->list, &watches); in register_xenbus_watch() 859 list_for_each_entry(watch, &watches, list) { in xs_resume()
|
/openbmc/linux/Documentation/core-api/ |
H A D | watch_queue.rst | 81 and 255. Multiple watches may share a queue, and this provides a means to 118 This removes all of the watches subscribed to a watch_list and frees them 171 The following functions are provided to manage watches: 197 Remove all the watches from a watch list. It is expected that this will be 199 inaccessible to new watches by this point. A notification 207 To post a notification to watch list so that the subscribed watches can see it, 225 Only watches that have the same ID set in them will see this notification.
|
/openbmc/phosphor-dbus-monitor/src/templates/ |
H A D | generated.mako.hpp | 249 using PropertyWatches = std::array<std::unique_ptr<Watch>, ${len(watches)}>; 255 % for w in watches: in get()
|
/openbmc/openbmc/meta-phosphor/recipes-phosphor/dbus/ |
H A D | phosphor-dbus-monitor_git.bb | 3 that watches DBus traffic for events and takes actions based on those events."
|
/openbmc/linux/include/linux/ |
H A D | watch_queue.h | 42 struct hlist_head watches; /* Contributory watches */ member
|
/openbmc/linux/Documentation/filesystems/ |
H A D | inotify.rst | 39 want: Users initialize inotify, once, and add n watches, requiring but one 85 Obtaining the fd and managing the watches could have been done either via a
|
/openbmc/qemu/tests/ |
H A D | vhost-user-bridge.c | 401 static WatchData watches[FD_SETSIZE]; in vubr_set_watch() local 402 struct WatchData *wd = &watches[fd]; in vubr_set_watch()
|
/openbmc/phosphor-webui/app/common/styles/elements/ |
H A D | paginate.scss | 136 @media only screen and ( max-width: 15.063em ) { /* For watches? */
|
/openbmc/linux/drivers/watchdog/ |
H A D | Kconfig | 1058 simply watches your kernel to make sure it doesn't freeze, and if 1160 processors. This watchdog watches your kernel to make sure 1173 This watchdog simply watches your kernel to make sure it doesn't 1219 watchdog simply watches your kernel to make sure it doesn't freeze, 1345 This watchdog simply watches your kernel to make sure it doesn't 1411 This watchdog simply watches your kernel to make sure it doesn't 1482 watchdog simply watches your kernel to make sure it doesn't freeze, 1517 This watchdog simply watches your kernel to make sure it doesn't 1576 This watchdog simply watches your kernel to make sure it doesn't 1591 watchdog simply watches your kernel to make sure it doesn't freeze, [all …]
|
/openbmc/linux/Documentation/maintainer/ |
H A D | maintainer-entry-profile.rst | 28 - Any bots or CI infrastructure that watches the list, or automated
|
/openbmc/linux/security/keys/ |
H A D | Kconfig | 135 provides KEYCTL_WATCH_KEY to enable/disable watches.
|
/openbmc/linux/Documentation/driver-api/ |
H A D | generic-counter.rst | 568 watches. When ready, the ``COUNTER_ENABLE_EVENTS_IOCTL`` ioctl command 569 may be used to activate these Counter watches.
|