Home | History | Annotate | Download | only in dbus

Lines Matching full:timeouts

256   DBusTimeoutList *timeouts;   /**< Stores active timeouts. */
767 DBusTimeoutList *timeouts;
776 timeouts = connection->timeouts;
777 if (timeouts)
779 connection->timeouts = NULL;
784 retval = (* add_function) (timeouts, timeout);
788 (* remove_function) (timeouts, timeout);
793 (* toggle_function) (timeouts, timeout, enabled);
797 connection->timeouts = timeouts;
1243 connection->timeouts = timeout_list;
2524 _dbus_timeout_list_free (connection->timeouts);
2525 connection->timeouts = NULL;
3859 /* If we have pending calls, queue their timeouts - we want the Disconnected
3860 * to be the last message, after these timeouts.
4573 * responsible for making the application's main loop aware of timeouts.
4613 DBusTimeoutList *timeouts;
4620 if (connection->timeouts == NULL)
4631 timeouts = connection->timeouts;
4632 connection->timeouts = NULL;
4635 retval = _dbus_timeout_list_set_functions (timeouts,
4640 connection->timeouts = timeouts;