/device/generic/goldfish/qemud/ |
D | qemud.c | 396 struct epoll_event ev; in looper_grow() local 399 ev.events = hook->wanted; in looper_grow() 400 ev.data.ptr = hook; in looper_grow() 401 epoll_ctl( l->epoll_fd, EPOLL_CTL_MOD, hook->fd, &ev ); in looper_grow() 411 struct epoll_event ev; in looper_add() local 428 ev.events = 0; in looper_add() 429 ev.data.ptr = hook; in looper_add() 430 epoll_ctl( l->epoll_fd, EPOLL_CTL_ADD, fd, &ev ); in looper_add() 467 struct epoll_event ev; in looper_enable() local 470 ev.events = hook->wanted; in looper_enable() [all …]
|
/device/asus/fugu/original-kernel-headers/linux/ |
D | kct.h | 102 extern int kct_add_attchmt(struct ct_event **ev, 106 extern void kct_free_event(struct ct_event *ev) __weak; 107 extern int kct_log_event(struct ct_event *ev, gfp_t flags) __weak;
|
/device/moto/shamu/camera/QCamera/stack/mm-camera-test/src/ |
D | mm_qcamera_main_menu.c | 1079 int32_t ev = 0; in increase_EV() local 1081 ev = (ev_num << 16) | 6; in increase_EV() 1085 ev = ev_num; in increase_EV() 1107 control.value = ev; in increase_EV() 1124 int32_t ev = 0; in decrease_EV() local 1126 ev = (ev_num << 16) | 6; in decrease_EV() 1130 ev = ev_num; in decrease_EV() 1152 control.value = ev; in decrease_EV()
|
/device/generic/goldfish/opengl/ |
D | common.mk | 206 emugl-gen-wrapper-generic = $(eval $(emugl-gen-wrapper-generic-ev)) 208 define emugl-gen-wrapper-generic-ev
|
/device/asus/flo/camera/QCamera2/stack/mm-camera-interface/src/ |
D | mm_camera.c | 152 struct v4l2_event ev; in mm_camera_event_notify() local 161 memset(&ev, 0, sizeof(ev)); in mm_camera_event_notify() 162 rc = ioctl(my_obj->ctrl_fd, VIDIOC_DQEVENT, &ev); in mm_camera_event_notify() 164 if (rc >= 0 && ev.id == MSM_CAMERA_MSM_NOTIFY) { in mm_camera_event_notify() 165 msm_evt = (struct msm_v4l2_event_data *)ev.u.data; in mm_camera_event_notify()
|
/device/lge/hammerhead/camera/QCamera2/stack/mm-camera-interface/src/ |
D | mm_camera.c | 153 struct v4l2_event ev; in mm_camera_event_notify() local 162 memset(&ev, 0, sizeof(ev)); in mm_camera_event_notify() 163 rc = ioctl(my_obj->ctrl_fd, VIDIOC_DQEVENT, &ev); in mm_camera_event_notify() 165 if (rc >= 0 && ev.id == MSM_CAMERA_MSM_NOTIFY) { in mm_camera_event_notify() 166 msm_evt = (struct msm_v4l2_event_data *)ev.u.data; in mm_camera_event_notify()
|
/device/moto/shamu/camera/QCamera2/stack/mm-camera-interface/src/ |
D | mm_camera.c | 148 struct v4l2_event ev; in mm_camera_event_notify() local 157 memset(&ev, 0, sizeof(ev)); in mm_camera_event_notify() 158 rc = ioctl(my_obj->ctrl_fd, VIDIOC_DQEVENT, &ev); in mm_camera_event_notify() 160 if (rc >= 0 && ev.id == MSM_CAMERA_MSM_NOTIFY) { in mm_camera_event_notify() 161 msm_evt = (struct msm_v4l2_event_data *)ev.u.data; in mm_camera_event_notify()
|
/device/generic/goldfish/camera/ |
D | EmulatedCameraDevice.cpp | 114 void EmulatedCameraDevice::setExposureCompensation(const float ev) { in setExposureCompensation() argument 121 mExposureCompensation = std::pow(2.0f, ev / GAMMA_CORRECTION); in setExposureCompensation()
|
D | EmulatedCameraDevice.h | 166 void setExposureCompensation(const float ev);
|
/device/generic/goldfish/gps/ |
D | gps_qemu.c | 647 struct epoll_event ev; in epoll_register() local 654 ev.events = EPOLLIN; in epoll_register() 655 ev.data.fd = fd; in epoll_register() 657 ret = epoll_ctl( epoll_fd, EPOLL_CTL_ADD, fd, &ev ); in epoll_register()
|
/device/moto/shamu/camera/QCamera/stack/mm-camera-interface/src/ |
D | mm_camera.c | 134 struct v4l2_event ev; in mm_camera_event_notify() local 142 memset(&ev, 0, sizeof(ev)); in mm_camera_event_notify() 143 rc = ioctl(my_obj->ctrl_fd, VIDIOC_DQEVENT, &ev); in mm_camera_event_notify() 144 evt = (mm_camera_event_t *)ev.u.data; in mm_camera_event_notify() 147 if(ev.type == V4L2_EVENT_PRIVATE_START+MSM_CAM_APP_NOTIFY_ERROR_EVENT) { in mm_camera_event_notify()
|
/device/moto/shamu/camera/QCamera2/stack/mm-camera-test/src/ |
D | mm_qcamera_app.c | 1282 int setEVCompensation(mm_camera_test_obj_t *test_obj, int ev) in setEVCompensation() argument 1289 if ( (ev >= camera_cap->exposure_compensation_min) && in setEVCompensation() 1290 (ev <= camera_cap->exposure_compensation_max) ) { in setEVCompensation() 1298 uint32_t value = ev; in setEVCompensation() 2261 int ev = *(( int * )in_data); in mm_camera_lib_send_command() local 2262 rc = setEVCompensation(&handle->test_obj, ev); in mm_camera_lib_send_command()
|