Lines Matching refs:stream
29 struct uvc_streaming *stream = inode->i_private;
36 buf->count = uvc_video_stats_dump(stream, buf->data, sizeof(buf->data));
68 * Global and stream initialization/cleanup
73 void uvc_debugfs_init_stream(struct uvc_streaming *stream)
75 struct usb_device *udev = stream->dev->udev;
82 udev->devnum, stream->intfnum);
84 stream->debugfs_dir = debugfs_create_dir(dir_name,
87 debugfs_create_file("stats", 0444, stream->debugfs_dir, stream,
91 void uvc_debugfs_cleanup_stream(struct uvc_streaming *stream)
93 debugfs_remove_recursive(stream->debugfs_dir);
94 stream->debugfs_dir = NULL;