Lines Matching defs:work
182 struct work_struct work;
384 static void delayed_work_cb(struct work_struct *work)
386 struct hidpp_device *hidpp = container_of(work, struct hidpp_device,
387 work);
1918 struct work_struct work;
1976 struct hidpp_ff_work_data *wd = container_of(w, struct hidpp_ff_work_data, work);
2050 INIT_WORK(&wd->work, hidpp_ff_work_handler);
2059 queue_work(data->wq, &wd->work);
3344 if (schedule_work(&hidpp->work) == 0)
3862 INIT_WORK(&hidpp->work, delayed_work_cb);
3921 schedule_work(&hidpp->work);
3922 flush_work(&hidpp->work);
3955 cancel_work_sync(&hidpp->work);
3970 cancel_work_sync(&hidpp->work);