Lines Matching defs:fmt
328 const char *fmt,
337 va_start(vargs, fmt);
338 pf->name = kvasprintf(GFP_KERNEL, fmt, vargs);
520 struct iio_trigger *viio_trigger_alloc(const char *fmt, va_list vargs)
540 trig->name = kvasprintf(GFP_KERNEL, fmt, vargs);
563 struct iio_trigger *iio_trigger_alloc(const char *fmt, ...)
568 va_start(vargs, fmt);
569 trig = viio_trigger_alloc(fmt, vargs);
591 * @fmt: trigger name format. If it includes format
603 const char *fmt, ...)
614 va_start(vargs, fmt);
615 trig = viio_trigger_alloc(fmt, vargs);