• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/iserver/dbus-1.6.8/dbus/

Lines Matching refs:watch

30 #include "dbus-watch.h"
134 * all the details of dispatch and watch/timeout monitoring.
161 * handle the details here for you by setting up watch functions.
678 DBusWatch *watch);
681 DBusWatch *watch);
684 DBusWatch *watch,
689 DBusWatch *watch,
707 * watch function or they will deadlock.
720 retval = (* add_function) (connection->watches, watch);
724 (* remove_function) (connection->watches, watch);
729 (* toggle_function) (connection->watches, watch, enabled);
739 * Adds a watch using the connection's DBusAddWatchFunction if
740 * available. Otherwise records the watch to be added when said
741 * function is available. Also re-adds the watch if the
746 * @param watch the watch to add.
751 DBusWatch *watch)
753 return protected_change_watch (connection, watch,
759 * Removes a watch using the connection's DBusRemoveWatchFunction
760 * if available. It's an error to call this function on a watch
765 * @param watch the watch to remove.
769 DBusWatch *watch)
771 protected_change_watch (connection, watch,
778 * Toggles a watch and notifies app via connection's
780 * function on a watch that was not previously added.
784 * @param watch the watch to toggle.
789 DBusWatch *watch,
792 _dbus_assert (watch != NULL);
794 protected_change_watch (connection, watch,
1487 * @param watch the watch.
1493 _dbus_connection_handle_watch (DBusWatch *watch,
1516 watch, condition);
4819 * Sets the watch functions for the connection. These functions are
4825 * elaborate GSource. Note that when a watch is added, it may
4829 * watch has been enabled or disabled. Call dbus_watch_get_enabled()
4830 * to check this. A disabled watch should have no effect, and enabled
4831 * watch should be added to the main loop. This feature is used
4832 * instead of simply adding/removing the watch because
4837 * The DBusWatch can be queried for the file descriptor to watch using
4839 * events to watch for using dbus_watch_get_flags(). The flags
4843 * include a watch for hangups, errors, and other exceptional
4852 * that watch yet.
4866 * watch functions are invoked, so inside these functions you
5908 * used from inside watch and timeout functions. (See the
5959 * used from inside watch and timeout functions. (See the