Lines Matching defs:timeout
302 struct sbus_timeout_ctx *timeout;
303 timeout = talloc_get_type(data, struct sbus_timeout_ctx);
305 dbus_timeout_handle(timeout->dbus_timeout);
315 struct sbus_timeout_ctx *timeout;
326 timeout = talloc_zero(conn, struct sbus_timeout_ctx);
327 if (!timeout) {
331 timeout->dbus_timeout = dbus_timeout;
334 timeout->te = tevent_add_timer(conn->ev, timeout, tv,
335 sbus_timeout_handler, timeout);
336 if (!timeout->te) {
337 DEBUG(SSSDBG_FATAL_FAILURE, "Failed to set up timeout event!\n");
342 dbus_timeout_set_data(timeout->dbus_timeout, timeout, NULL);
369 void *timeout;
373 timeout = dbus_timeout_get_data(dbus_timeout);
375 /* remove dbus timeout data */
379 talloc_free(timeout);