Home
last modified time | relevance | path

Searched refs:v4l2_event (Results 1 – 25 of 76) sorted by relevance

1234

/OK3568_Linux_fs/kernel/drivers/usb/gadget/function/
H A Df_uvc.c275 struct v4l2_event v4l2_event; in uvc_function_ep0_complete() local
276 struct uvc_event *uvc_event = (void *)&v4l2_event.u.data; in uvc_function_ep0_complete()
285 memset(&v4l2_event, 0, sizeof(v4l2_event)); in uvc_function_ep0_complete()
286 v4l2_event.type = UVC_EVENT_DATA; in uvc_function_ep0_complete()
290 v4l2_event_queue(&uvc->vdev, &v4l2_event); in uvc_function_ep0_complete()
298 struct v4l2_event v4l2_event; in uvc_function_setup() local
299 struct uvc_event *uvc_event = (void *)&v4l2_event.u.data; in uvc_function_setup()
321 memset(&v4l2_event, 0, sizeof(v4l2_event)); in uvc_function_setup()
322 v4l2_event.type = UVC_EVENT_SETUP; in uvc_function_setup()
324 v4l2_event_queue(&uvc->vdev, &v4l2_event); in uvc_function_setup()
[all …]
/OK3568_Linux_fs/kernel/include/media/
H A Dv4l2-event.h34 struct v4l2_event event;
49 void (*replace)(struct v4l2_event *old, const struct v4l2_event *new);
50 void (*merge)(const struct v4l2_event *old, struct v4l2_event *new);
91 int v4l2_event_dequeue(struct v4l2_fh *fh, struct v4l2_event *event,
106 void v4l2_event_queue(struct video_device *vdev, const struct v4l2_event *ev);
121 void v4l2_event_queue_fh(struct v4l2_fh *fh, const struct v4l2_event *ev);
H A Dv4l2-ctrls.h1203 void v4l2_ctrl_replace(struct v4l2_event *old, const struct v4l2_event *new);
1214 void v4l2_ctrl_merge(const struct v4l2_event *old, struct v4l2_event *new);
H A Dv4l2-subdev.h30 #define V4L2_DEVICE_NOTIFY_EVENT _IOW('v', 2, struct v4l2_event)
34 struct v4l2_event;
1175 const struct v4l2_event *ev);
/OK3568_Linux_fs/kernel/drivers/media/v4l2-core/
H A Dv4l2-event.c27 static int __v4l2_event_dequeue(struct v4l2_fh *fh, struct v4l2_event *event) in __v4l2_event_dequeue()
59 int v4l2_event_dequeue(struct v4l2_fh *fh, struct v4l2_event *event, in v4l2_event_dequeue()
103 const struct v4l2_event *ev, u64 ts) in __v4l2_event_queue_fh()
153 void v4l2_event_queue(struct video_device *vdev, const struct v4l2_event *ev) in v4l2_event_queue()
173 void v4l2_event_queue_fh(struct v4l2_fh *fh, const struct v4l2_event *ev) in v4l2_event_queue_fh()
322 static void v4l2_event_src_replace(struct v4l2_event *old, in v4l2_event_src_replace()
323 const struct v4l2_event *new) in v4l2_event_src_replace()
331 static void v4l2_event_src_merge(const struct v4l2_event *old, in v4l2_event_src_merge()
332 struct v4l2_event *new) in v4l2_event_src_merge()
H A Dv4l2-ctrls.c1621 static void fill_event(struct v4l2_event *ev, struct v4l2_ctrl *ctrl, u32 changes) in fill_event()
1645 struct v4l2_event ev; in send_event()
4723 struct v4l2_event ev; in v4l2_ctrl_add_event()
4750 void v4l2_ctrl_replace(struct v4l2_event *old, const struct v4l2_event *new) in v4l2_ctrl_replace()
4759 void v4l2_ctrl_merge(const struct v4l2_event *old, struct v4l2_event *new) in v4l2_ctrl_merge()
/OK3568_Linux_fs/external/camera_engine_rkaiq/rkaiq/xcore/
H A Dpoll_thread.h81 virtual XCamReturn handle_events (struct v4l2_event &event);
82 XCamReturn handle_frame_sync_event (struct v4l2_event &event);
H A Dv4l2_device.h32 struct v4l2_event;
139 virtual XCamReturn dequeue_event (struct v4l2_event &event);
H A Dpoll_thread.cpp481 PollThread::handle_events (struct v4l2_event &event) in handle_events()
497 PollThread::handle_frame_sync_event (struct v4l2_event &event) in handle_frame_sync_event()
512 struct v4l2_event event; in poll_subdev_event_loop()
/OK3568_Linux_fs/external/camera_engine_rkaiq/rk_stream/stream_cfg/
H A DStream.h56 new_video_buffer(struct v4l2_event &event, SmartPtr<V4l2Device> dev) { return NULL; } in new_video_buffer()
123 struct v4l2_event _event;
/OK3568_Linux_fs/external/camera_engine_rkaiq/rkaiq/hwi/isp20/
H A DStream.h84 struct v4l2_event _event;
123 new_video_buffer(struct v4l2_event &event, SmartPtr<V4l2Device> dev) { return NULL; } in new_video_buffer()
178 new_video_buffer (struct v4l2_event &event, SmartPtr<V4l2Device> dev);
H A DStream.cpp597 RKSofEventStream::new_video_buffer(struct v4l2_event &event, in new_video_buffer()
/OK3568_Linux_fs/kernel/Documentation/userspace-api/media/v4l/
H A Dvidioc-dqevent.rst20 ``int ioctl(int fd, VIDIOC_DQEVENT, struct v4l2_event *argp)``
29 Pointer to struct :c:type:`v4l2_event`.
35 ioctl. All the fields of the struct :c:type:`v4l2_event`
42 .. c:type:: v4l2_event
46 .. flat-table:: struct v4l2_event
/OK3568_Linux_fs/kernel/drivers/staging/media/meson/vdec/
H A Dvdec_helpers.c300 const struct v4l2_event ev = { .type = V4L2_EVENT_EOS }; in dst_buf_done()
445 static const struct v4l2_event ev = { in amvdec_src_change()
/OK3568_Linux_fs/external/camera_engine_rkaiq/rkaiq_3A_server/
H A Drkaiq_3A_server.cpp183 struct v4l2_event event; in wait_stream_event()
/OK3568_Linux_fs/kernel/drivers/staging/media/imx/
H A Dimx-media-fim.c130 static const struct v4l2_event ev = { in send_fim_event()
/OK3568_Linux_fs/kernel/drivers/media/platform/rockchip/isp1/
H A Drkisp1.c654 struct v4l2_event ev = {
681 struct v4l2_event ev = {
1548 struct v4l2_event event = {
/OK3568_Linux_fs/kernel/drivers/media/pci/ivtv/
H A Divtv-irq.c857 static const struct v4l2_event evtop = { in ivtv_irq_vsync()
861 static const struct v4l2_event evbottom = { in ivtv_irq_vsync()
/OK3568_Linux_fs/kernel/drivers/media/platform/rockchip/cif/
H A Dmipi-csi2.c537 struct v4l2_event event = { in rkcif_csi2_event_reset_pipe()
548 struct v4l2_event event = { in rkcif_csi2_event_inc_sof()
/OK3568_Linux_fs/prebuilts/gcc/linux-x86/aarch64/gcc-arm-10.3-2021.07-x86_64-aarch64-none-linux-gnu/aarch64-none-linux-gnu/libc/usr/include/linux/
H A Dvideodev2.h2255 struct v4l2_event { struct
2423 #define VIDIOC_DQEVENT _IOR('V', 89, struct v4l2_event)
/OK3568_Linux_fs/prebuilts/gcc/linux-x86/arm/gcc-arm-10.3-2021.07-x86_64-arm-none-linux-gnueabihf/arm-none-linux-gnueabihf/libc/usr/include/linux/
H A Dvideodev2.h2255 struct v4l2_event { struct
2423 #define VIDIOC_DQEVENT _IOR('V', 89, struct v4l2_event)
/OK3568_Linux_fs/kernel/drivers/media/usb/uvc/
H A Duvc_ctrl.c1205 struct v4l2_event *ev, in uvc_ctrl_fill_event()
1240 struct v4l2_event ev; in uvc_ctrl_send_event()
1425 struct v4l2_event ev; in uvc_ctrl_add_event()
/OK3568_Linux_fs/kernel/drivers/staging/media/atomisp/pci/
H A Datomisp_acc.c326 struct v4l2_event event = { 0 }; in atomisp_acc_done()
/OK3568_Linux_fs/kernel/Documentation/driver-api/media/
H A Dv4l2-event.rst85 (:c:type:`vdev <video_device>`, :c:type:`ev <v4l2_event>`)
/OK3568_Linux_fs/kernel/include/uapi/linux/
H A Dvideodev2.h2391 struct v4l2_event { struct
2563 #define VIDIOC_DQEVENT _IOR('V', 89, struct v4l2_event)

1234