Home | History | Annotate | Download | only in linux

Lines Matching refs:delayed_work

80 struct delayed_work {
83 TAILQ_ENTRY(delayed_work) dw_entry;
105 static inline struct delayed_work *
108 return container_of(work, struct delayed_work, work);
140 void INIT_DELAYED_WORK(struct delayed_work *,
142 bool schedule_delayed_work(struct delayed_work *, unsigned long);
143 bool queue_delayed_work(struct workqueue_struct *, struct delayed_work *,
145 bool mod_delayed_work(struct workqueue_struct *, struct delayed_work *,
147 bool cancel_delayed_work(struct delayed_work *);
148 bool cancel_delayed_work_sync(struct delayed_work *);
149 bool flush_delayed_work(struct delayed_work *);
150 bool delayed_work_pending(const struct delayed_work *);