Lines Matching defs:o

281  * @o: name of the element at &struct v4l2_subdev_ops that contains @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.
318 #define __v4l2_device_call_subdevs(v4l2_dev, cond, o, f, args...) \
322 __v4l2_device_call_subdevs_p(v4l2_dev, __sd, cond, o, \
334 * @o: name of the element at &struct v4l2_subdev_ops that contains @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.
385 #define __v4l2_device_call_subdevs_until_err(v4l2_dev, cond, o, f, args...) \
388 __v4l2_device_call_subdevs_until_err_p(v4l2_dev, __sd, cond, o, \
400 * @o: name of the element at &struct v4l2_subdev_ops that contains @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.
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.
472 #define v4l2_device_mask_call_all(v4l2_dev, grpmsk, o, f, args...) \
477 (grpmsk) == 0 || (__sd->grp_id & (grpmsk)), o, \
488 * @o: name of the element at &struct v4l2_subdev_ops that contains @f.
504 #define v4l2_device_mask_call_until_err(v4l2_dev, grpmsk, o, f, args...) \
508 (grpmsk) == 0 || (__sd->grp_id & (grpmsk)), o, \
520 * @o: name of the element at &struct v4l2_subdev_ops that contains @f.
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.
554 #define v4l2_device_mask_has_op(v4l2_dev, grpmsk, o, f) \
561 if (v4l2_subdev_has_op(__sd, o, f)) { \