Lines Matching defs:cond
280 * @cond: condition to be match
283 * @f: operation function that will be called if @cond matches.
293 #define __v4l2_device_call_subdevs_p(v4l2_dev, sd, cond, o, f, args...) \
296 if ((cond) && (sd)->ops->o && (sd)->ops->o->f) \
305 * @cond: condition to be match
308 * @f: operation function that will be called if @cond matches.
318 #define __v4l2_device_call_subdevs(v4l2_dev, cond, o, f, args...) \
322 __v4l2_device_call_subdevs_p(v4l2_dev, __sd, cond, o, \
333 * @cond: condition to be match
336 * @f: operation function that will be called if @cond matches.
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) \
368 * @cond: condition to be match
371 * @f: operation function that will be called if @cond matches.
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, \
402 * @f: operation function that will be called if @cond matches.
431 * @f: operation function that will be called if @cond matches.
462 * @f: operation function that will be called if @cond matches.
490 * @f: operation function that will be called if @cond matches.
522 * @f: operation function that will be called if @cond matches.
550 * @f: operation function that will be called if @cond matches.