Home
last modified time | relevance | path

Searched refs:controls (Results 1 – 25 of 412) sorted by relevance

12345678910>>...17

/external/ltp/testcases/kernel/device-drivers/v4l/user_space/
Dtest_VIDIOC_EXT_CTRLS.c31 struct v4l2_ext_controls controls; in test_VIDIOC_G_EXT_CTRLS_zero() local
34 memset(&controls, 0xff, sizeof(controls)); in test_VIDIOC_G_EXT_CTRLS_zero()
35 controls.ctrl_class = V4L2_CTRL_CLASS_USER; in test_VIDIOC_G_EXT_CTRLS_zero()
36 controls.count = 0; in test_VIDIOC_G_EXT_CTRLS_zero()
37 controls.controls = NULL; in test_VIDIOC_G_EXT_CTRLS_zero()
39 ret_get = ioctl(get_video_fd(), VIDIOC_G_EXT_CTRLS, &controls); in test_VIDIOC_G_EXT_CTRLS_zero()
48 CU_ASSERT_EQUAL(controls.ctrl_class, V4L2_CTRL_CLASS_USER); in test_VIDIOC_G_EXT_CTRLS_zero()
49 CU_ASSERT_EQUAL(controls.count, 0); in test_VIDIOC_G_EXT_CTRLS_zero()
51 CU_ASSERT_EQUAL(controls.reserved[0], 0); in test_VIDIOC_G_EXT_CTRLS_zero()
52 CU_ASSERT_EQUAL(controls.reserved[1], 0); in test_VIDIOC_G_EXT_CTRLS_zero()
[all …]
/external/strace/xlat/
Dv4l2_control_classes.in2 V4L2_CTRL_CLASS_USER 0x00980000 /* Old-style 'user' controls */
3 V4L2_CTRL_CLASS_MPEG 0x00990000 /* MPEG-compression controls */
4 V4L2_CTRL_CLASS_CAMERA 0x009a0000 /* Camera class controls */
5 V4L2_CTRL_CLASS_FM_TX 0x009b0000 /* FM Modulator controls */
6 V4L2_CTRL_CLASS_FLASH 0x009c0000 /* Camera flash controls */
7 V4L2_CTRL_CLASS_JPEG 0x009d0000 /* JPEG-compression controls */
8 V4L2_CTRL_CLASS_IMAGE_SOURCE 0x009e0000 /* Image source controls */
9 V4L2_CTRL_CLASS_IMAGE_PROC 0x009f0000 /* Image processing controls */
10 V4L2_CTRL_CLASS_DV 0x00a00000 /* Digital Video controls */
11 V4L2_CTRL_CLASS_FM_RX 0x00a10000 /* FM Receiver controls */
[all …]
Dv4l2_control_ids.in54 /* MPEG audio controls specific to multiplexed streams */
69 /* MPEG video controls specific to multiplexed streams */
296 /* Flash and privacy (indicator) light controls */
309 /* Image source controls */
317 /* Image processing controls */
/external/libxkbcommon/xkbcommon/test/data/compat/
Daccessx3 action= LockControls(controls=AccessXKeys);
10 action= LockControls(controls=AccessXKeys);
14 action= LockControls(controls=AccessXFeedback);
18 action= LockControls(controls=RepeatKeys);
22 action= LockControls(controls=SlowKeys);
26 action= LockControls(controls=BounceKeys);
30 action= LockControls(controls=StickyKeys);
34 action= LockControls(controls=MouseKeys);
38 action= LockControls(controls=MouseKeysAccel);
42 action= LockControls(controls=Overlay1);
[all …]
/external/deqp-deps/glslang/gtests/
DTestFixture.h186 const std::string& entryPointName, EShMessages controls,
194 if ((controls & EShMsgDebugInfo) && shaderName != nullptr) {
203 defaultVersion, isForwardCompatible, controls);
213 const std::string& entryPointName, EShMessages controls,
231 if (controls & EShMsgSpvRules) {
232 if (controls & EShMsgVulkanRules) {
233 shader.setEnvInput((controls & EShMsgReadHlsl) ? glslang::EShSourceHlsl
241 shader.setEnvInput((controls & EShMsgReadHlsl) ? glslang::EShSourceHlsl
250 &shader, code, entryPointName, controls, nullptr, &shaderName);
254 success &= program.link(controls);
[all …]
DLink.FromFile.Vk.cpp51 const EShMessages controls = DeriveOptions(Source::GLSL, Semantics::Vulkan, Target::AST); in TEST_P() local
65 success &= compile(shader, contents, "", controls); in TEST_P()
73 success &= program.link(controls); in TEST_P()
77 if (success && (controls & EShMsgSpvRules)) { in TEST_P()
93 outputResultToStream(&stream, result, controls); in TEST_P()
DLink.FromFile.cpp51 const EShMessages controls = DeriveOptions(Source::GLSL, Semantics::OpenGL, Target::AST); in TEST_P() local
64 compile(shader, contents, "", controls); in TEST_P()
72 program.link(controls); in TEST_P()
77 outputResultToStream(&stream, result, controls); in TEST_P()
DConfig.FromFile.cpp45 EShMessages controls; member
74 compile(&shader, shaderContents, "", testCase.controls, &resources); in TEST_P()
81 program.link(testCase.controls); in TEST_P()
86 outputResultToStream(&stream, result, testCase.controls); in TEST_P()
/external/easymock/src/org/easymock/
DEasyMockSupport.java28 protected final List<IMocksControl> controls = new ArrayList<IMocksControl>( field in EasyMockSupport
144 controls.add(ctrl); in createStrictControl()
155 controls.add(ctrl); in createControl()
168 controls.add(ctrl); in createNiceControl()
178 for (IMocksControl c : controls) { in replayAll()
188 for (IMocksControl c : controls) { in resetAll()
198 for (IMocksControl c : controls) { in verifyAll()
209 for (IMocksControl c : controls) { in resetAllToNice()
220 for (IMocksControl c : controls) { in resetAllToDefault()
231 for (IMocksControl c : controls) { in resetAllToStrict()
/external/ltp/testcases/open_posix_testsuite/conformance/interfaces/pthread_atfork/
D3-2.c80 int controls[3] = { 0, 0, 0 }; variable
85 controls[0]++; in prepare()
90 controls[1]++; in parent()
95 controls[2]++; in child()
126 if (controls[0] != 10000) { in threaded()
130 if (controls[2] != 10000) { in threaded()
138 if (controls[0] != 10000) { in threaded()
142 if (controls[1] != 10000) { in threaded()
/external/strace/tests/
Dioctl_v4l2.c841 p_ext_controls->controls = (void *) -2UL; in main()
851 p_ext_controls->count, p_ext_controls->controls); in main()
859 p_ext_controls->count, p_ext_controls->controls); in main()
866 p_ext_controls->count, p_ext_controls->controls); in main()
870 p_ext_controls->controls = in main()
871 tail_alloc(sizeof(*p_ext_controls->controls) * p_ext_controls->count); in main()
872 p_ext_controls->controls[0].id = V4L2_CID_BRIGHTNESS; in main()
873 p_ext_controls->controls[0].size = 0; in main()
874 p_ext_controls->controls[0].value64 = 0xfacefeeddeadbeefULL; in main()
875 p_ext_controls->controls[1].id = V4L2_CID_CONTRAST; in main()
[all …]
/external/strace/tests-m32/
Dioctl_v4l2.c841 p_ext_controls->controls = (void *) -2UL; in main()
851 p_ext_controls->count, p_ext_controls->controls); in main()
859 p_ext_controls->count, p_ext_controls->controls); in main()
866 p_ext_controls->count, p_ext_controls->controls); in main()
870 p_ext_controls->controls = in main()
871 tail_alloc(sizeof(*p_ext_controls->controls) * p_ext_controls->count); in main()
872 p_ext_controls->controls[0].id = V4L2_CID_BRIGHTNESS; in main()
873 p_ext_controls->controls[0].size = 0; in main()
874 p_ext_controls->controls[0].value64 = 0xfacefeeddeadbeefULL; in main()
875 p_ext_controls->controls[1].id = V4L2_CID_CONTRAST; in main()
[all …]
/external/strace/tests-mx32/
Dioctl_v4l2.c841 p_ext_controls->controls = (void *) -2UL; in main()
851 p_ext_controls->count, p_ext_controls->controls); in main()
859 p_ext_controls->count, p_ext_controls->controls); in main()
866 p_ext_controls->count, p_ext_controls->controls); in main()
870 p_ext_controls->controls = in main()
871 tail_alloc(sizeof(*p_ext_controls->controls) * p_ext_controls->count); in main()
872 p_ext_controls->controls[0].id = V4L2_CID_BRIGHTNESS; in main()
873 p_ext_controls->controls[0].size = 0; in main()
874 p_ext_controls->controls[0].value64 = 0xfacefeeddeadbeefULL; in main()
875 p_ext_controls->controls[1].id = V4L2_CID_CONTRAST; in main()
[all …]
/external/skqp/tools/viewer/
DGMSlide.cpp38 bool GMSlide::onGetControls(SkMetaData* controls) { in onGetControls() argument
39 return fGM->getControls(controls); in onGetControls()
42 void GMSlide::onSetControls(const SkMetaData& controls) { in onSetControls() argument
43 fGM->setControls(controls); in onSetControls()
/external/skia/tools/viewer/
DGMSlide.cpp38 bool GMSlide::onGetControls(SkMetaData* controls) { in onGetControls() argument
39 return fGM->getControls(controls); in onGetControls()
42 void GMSlide::onSetControls(const SkMetaData& controls) { in onSetControls() argument
43 fGM->setControls(controls); in onSetControls()
/external/skqp/gm/
Dgm.h94 bool getControls(SkMetaData* controls) { return this->onGetControls(controls); } in getControls() argument
95 void setControls(const SkMetaData& controls) { this->onSetControls(controls); } in setControls() argument
/external/grpc-grpc/doc/
Dkeepalive.md9 …* This channel argument controls the period (in milliseconds) after which a keepalive ping is sent…
11 …* This channel argument controls the amount of time (in milliseconds), the sender of the keepalive…
17 …* This channel argument controls the maximum number of pings that can be sent when there is no oth…
19 …* If there is no data being sent on the transport, this channel argument controls the minimum time…
21 …a being sent on the transport, this channel argument on the server side controls the minimum time …
24 …* This arg controls the maximum number of bad pings that the server will tolerate before sending a…
/external/libxkbcommon/xkbcommon/test/data/keymaps/
Dno-types.xkb605 action= LockControls(controls=mouseKeys);
608 action= LockControls(controls=mouseKeysAccel);
617 action= LockControls(controls=accessXKeys);
620 action= LockControls(controls=accessXFeedback);
623 action= LockControls(controls=repeatKeys);
626 action= LockControls(controls=slowKeys);
629 action= LockControls(controls=bounceKeys);
632 action= LockControls(controls=stickyKeys);
635 action= LockControls(controls=mouseKeys);
638 action= LockControls(controls=mouseKeysAccel);
[all …]
Dquartz.xkb607 action= LockControls(controls=MouseKeys);
610 action= LockControls(controls=MouseKeysAccel);
619 action= LockControls(controls=AccessXKeys);
622 action= LockControls(controls=AccessXFeedback);
625 action= LockControls(controls=RepeatKeys);
628 action= LockControls(controls=SlowKeys);
631 action= LockControls(controls=BounceKeys);
634 action= LockControls(controls=StickyKeys);
637 action= LockControls(controls=MouseKeys);
640 action= LockControls(controls=MouseKeysAccel);
[all …]
/external/skia/gm/
Dgm.h150 bool getControls(SkMetaData* controls) { return this->onGetControls(controls); } in getControls() argument
151 void setControls(const SkMetaData& controls) { this->onSetControls(controls); } in setControls() argument
/external/python/cpython3/Doc/library/
Dossaudiodev.rst375 .. method:: oss_mixer_device.controls()
377 This method returns a bitmask specifying the available mixer controls ("Control"
380 mixer controls---the :const:`SOUND_MIXER_\*` constants defined at module level.
385 if mixer.controls() & (1 << ossaudiodev.SOUND_MIXER_PCM):
390 :const:`SOUND_MIXER_PCM` controls should suffice---but code that uses the mixer
391 should be flexible when it comes to choosing mixer controls. On the Gravis
397 Returns a bitmask indicating stereo mixer controls. If a bit is set, the
400 :meth:`controls` to determine which).
402 See the code example for the :meth:`controls` function for an example of getting
408 Returns a bitmask specifying the mixer controls that may be used to record. See
[all …]
/external/python/cpython2/Doc/library/
Dossaudiodev.rst356 .. method:: oss_mixer_device.controls()
358 This method returns a bitmask specifying the available mixer controls ("Control"
361 mixer controls---the :const:`SOUND_MIXER_\*` constants defined at module level.
366 if mixer.controls() & (1 << ossaudiodev.SOUND_MIXER_PCM):
371 :const:`SOUND_MIXER_PCM` controls should suffice---but code that uses the mixer
372 should be flexible when it comes to choosing mixer controls. On the Gravis
378 Returns a bitmask indicating stereo mixer controls. If a bit is set, the
381 :meth:`controls` to determine which).
383 See the code example for the :meth:`controls` function for an example of getting
389 Returns a bitmask specifying the mixer controls that may be used to record. See
[all …]
/external/swiftshader/third_party/llvm-7.0/llvm/docs/
DAMDGPUOperandSyntax.rst612 row_mask:{0..15} Each of 4 bits in the mask controls one
628 bank_mask:{0..15} Each of 4 bits in the mask controls one
785 operands (both source and destination). First value controls src0, second value controls src1
786 and so on, except that the last value controls destination.
905 operands. First value controls src0, second value controls src1 and so on.
926 operands. First value controls src0, second value controls src1 and so on.
947 operands. First value controls src0, second value controls src1 and so on.
974 operands. First value controls src0, second value controls src1 and so on.
/external/skqp/src/core/
DSkScan_Hairline.cpp460 int controls = ptCount - 1; in extend_pts() local
464 } while (tangent.isZero() && --controls > 0); in extend_pts()
467 controls = ptCount - 1; // If all points are equal, move all but one in extend_pts()
475 } while (++controls < ptCount); in extend_pts()
481 int controls = ptCount - 1; in extend_pts() local
485 } while (tangent.isZero() && --controls > 0); in extend_pts()
488 controls = ptCount - 1; in extend_pts()
496 } while (++controls < ptCount); in extend_pts()
/external/skia/src/core/
DSkScan_Hairline.cpp460 int controls = ptCount - 1; in extend_pts() local
464 } while (tangent.isZero() && --controls > 0); in extend_pts()
467 controls = ptCount - 1; // If all points are equal, move all but one in extend_pts()
475 } while (++controls < ptCount); in extend_pts()
481 int controls = ptCount - 1; in extend_pts() local
485 } while (tangent.isZero() && --controls > 0); in extend_pts()
488 controls = ptCount - 1; in extend_pts()
496 } while (++controls < ptCount); in extend_pts()

12345678910>>...17