Lines Matching defs:f
281 * @o: name of the element at &struct v4l2_subdev_ops that contains @f.
283 * @f: operation function that will be called if @cond matches.
286 * @args: arguments for @f.
293 #define __v4l2_device_call_subdevs_p(v4l2_dev, sd, cond, o, f, args...) \
296 if ((cond) && (sd)->ops->o && (sd)->ops->o->f) \
297 (sd)->ops->o->f((sd) , ##args); \
306 * @o: name of the element at &struct v4l2_subdev_ops that contains @f.
308 * @f: operation function that will be called if @cond matches.
311 * @args: arguments for @f.
318 #define __v4l2_device_call_subdevs(v4l2_dev, cond, o, f, args...) \
323 f , ##args); \
334 * @o: name of the element at &struct v4l2_subdev_ops that contains @f.
336 * @f: operation function that will be called if @cond matches.
339 * @args: arguments for @f.
350 #define __v4l2_device_call_subdevs_until_err_p(v4l2_dev, sd, cond, o, f, args...) \
355 if ((cond) && (sd)->ops->o && (sd)->ops->o->f) \
356 __err = (sd)->ops->o->f((sd) , ##args); \
369 * @o: name of the element at &struct v4l2_subdev_ops that contains @f.
371 * @f: operation function that will be called if @cond matches.
374 * @args: arguments for @f.
385 #define __v4l2_device_call_subdevs_until_err(v4l2_dev, cond, o, f, args...) \
389 f , ##args); \
400 * @o: name of the element at &struct v4l2_subdev_ops that contains @f.
402 * @f: operation function that will be called if @cond matches.
405 * @args: arguments for @f.
412 #define v4l2_device_call_all(v4l2_dev, grpid, o, f, args...) \
417 (grpid) == 0 || __sd->grp_id == (grpid), o, f , \
429 * @o: name of the element at &struct v4l2_subdev_ops that contains @f.
431 * @f: operation function that will be called if @cond matches.
434 * @args: arguments for @f.
445 #define v4l2_device_call_until_err(v4l2_dev, grpid, o, f, args...) \
449 (grpid) == 0 || __sd->grp_id == (grpid), o, f , \
460 * @o: name of the element at &struct v4l2_subdev_ops that contains @f.
462 * @f: operation function that will be called if @cond matches.
465 * @args: arguments for @f.
472 #define v4l2_device_mask_call_all(v4l2_dev, grpmsk, o, f, args...) \
478 f , ##args); \
488 * @o: name of the element at &struct v4l2_subdev_ops that contains @f.
490 * @f: operation function that will be called if @cond matches.
493 * @args: arguments for @f.
504 #define v4l2_device_mask_call_until_err(v4l2_dev, grpmsk, o, f, args...) \
509 f , ##args); \
520 * @o: name of the element at &struct v4l2_subdev_ops that contains @f.
522 * @f: operation function that will be called if @cond matches.
526 #define v4l2_device_has_op(v4l2_dev, grpid, o, f) \
533 if (v4l2_subdev_has_op(__sd, o, f)) { \
548 * @o: name of the element at &struct v4l2_subdev_ops that contains @f.
550 * @f: operation function that will be called if @cond matches.
554 #define v4l2_device_mask_has_op(v4l2_dev, grpmsk, o, f) \
561 if (v4l2_subdev_has_op(__sd, o, f)) { \