Searched defs:control (Results 1 - 10 of 10) sorted by relevance

/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Demo/sockets/
H A Dftp.py41 control(hostname)
46 def control(hostname): function
48 # Create control connection
/device/google/marlin/camera/QCamera2/stack/mm-camera-interface/src/
H A Dmm_camera_sock.c124 char control[CMSG_SPACE(sizeof(int))]; local
144 /* if sendfd is valid, we need to pass it through control msg */
146 msgh.msg_control = control;
147 msgh.msg_controllen = sizeof(control);
186 char control[CMSG_SPACE(sizeof(int) * numfds)]; local
207 /* if numfds is valid, we need to pass it through control msg */
209 msgh.msg_control = control;
210 msgh.msg_controllen = sizeof(control);
249 char control[CMSG_SPACE(sizeof(int))]; local
261 msgh.msg_control = control;
[all...]
H A Dmm_camera.c297 LOGE("cannot open control fd of '%s' (%s)\n",
2050 * @id : control id
2064 struct v4l2_control control; local
2065 memset(&control, 0, sizeof(control));
2066 control.id = id;
2068 control.value = *value;
2070 rc = ioctl(fd, VIDIOC_S_CTRL, &control);
2076 *value = control.value;
2105 * @id : control i
2116 struct v4l2_control control; local
2343 struct v4l2_control control; local
[all...]
/device/huawei/angler/camera/QCamera2/stack/mm-camera-interface/src/
H A Dmm_camera_sock.c124 char control[CMSG_SPACE(sizeof(int))]; local
144 /* if sendfd is valid, we need to pass it through control msg */
146 msgh.msg_control = control;
147 msgh.msg_controllen = sizeof(control);
186 char control[CMSG_SPACE(sizeof(int))]; local
198 msgh.msg_control = control;
199 msgh.msg_controllen = sizeof(control);
H A Dmm_camera.c310 CDBG_ERROR("%s: cannot open control fd of '%s' (%s)\n",
1844 * @id : control id
1854 struct v4l2_control control; local
1856 memset(&control, 0, sizeof(control));
1857 control.id = id;
1859 control.value = *value;
1861 rc = ioctl(fd, VIDIOC_S_CTRL, &control);
1866 *value = control.value;
1878 * @id : control i
1888 struct v4l2_control control; local
[all...]
/device/lge/bullhead/camera/QCamera2/stack/mm-camera-interface/src/
H A Dmm_camera_sock.c124 char control[CMSG_SPACE(sizeof(int))]; local
144 /* if sendfd is valid, we need to pass it through control msg */
146 msgh.msg_control = control;
147 msgh.msg_controllen = sizeof(control);
186 char control[CMSG_SPACE(sizeof(int))]; local
198 msgh.msg_control = control;
199 msgh.msg_controllen = sizeof(control);
H A Dmm_camera.c310 CDBG_ERROR("%s: cannot open control fd of '%s' (%s)\n",
1844 * @id : control id
1854 struct v4l2_control control; local
1856 memset(&control, 0, sizeof(control));
1857 control.id = id;
1859 control.value = *value;
1861 rc = ioctl(fd, VIDIOC_S_CTRL, &control);
1866 *value = control.value;
1878 * @id : control i
1888 struct v4l2_control control; local
[all...]
/device/google/contexthub/firmware/os/cpu/cortexm4/inc/cpu/cmsis/
H A Dcore_cmFunc.h66 register uint32_t __regControl __ASM("control");
75 \param [in] control Control Register value to set
77 __STATIC_INLINE void __set_CONTROL(uint32_t control) argument
79 register uint32_t __regControl __ASM("control");
80 __regControl = control;
344 __ASM volatile ("MRS %0, control" : "=r" (result) );
353 \param [in] control Control Register value to set
355 __attribute__( ( always_inline ) ) __STATIC_INLINE void __set_CONTROL(uint32_t control) argument
357 __ASM volatile ("MSR control, %0" : : "r" (control)
[all...]
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Tools/msi/
H A Dmsilib.py637 def control(self, name, type, x, y, w, h, attr, prop, text, next, help): member in class:Dialog
643 return self.control(name, "Text", x, y, w, h, attr, None,
647 return self.control(name, "Bitmap", x, y, w, h, 1, None, text, None, None)
650 return self.control(name, "Line", x, y, w, h, 1, None, None, None, None)
653 return self.control(name, "PushButton", x, y, w, h, attr, None, text, next, None)
662 return self.control(name, "CheckBox", x, y, w, h, attr, prop, text, next, None)
/device/generic/goldfish/gps/
H A Dgps_qemu.c594 int control[2]; member in struct:__anon58
606 write( s->control[0], &cmd, 1 );
609 // close the control socket pair
610 close( s->control[0] ); s->control[0] = -1;
611 close( s->control[1] ); s->control[1] = -1;
625 do { ret=write( s->control[0], &cmd, 1 ); }
640 do { ret=write( s->control[0], &cmd, 1 ); }
690 int control_fd = state->control[
[all...]

Completed in 276 milliseconds