Searched refs:props (Results 1 - 7 of 7) sorted by relevance

/hardware/interfaces/automotive/vehicle/2.0/
H A DIVehicle.hal35 getPropConfigs(vec<int32_t> props)
/hardware/interfaces/automotive/vehicle/2.0/default/common/src/
H A DSubscriptionManager.cpp78 std::vector<int32_t> props; local
81 props.push_back(subscription.first);
83 return props;
278 std::vector<int32_t> props; local
286 props = halClient->getSubscribedProperties();
289 for (int32_t propId : props) {
/hardware/intel/img/hwcomposer/merrifield/common/base/
H A DDrm.cpp493 drmModePropertyPtr props; local
495 props = drmModeGetProperty(mDrmFd, out->connector->props[i]);
496 if (!props) {
500 if (strcmp(props->name, "DPMS") == 0) {
504 props->prop_id,
508 drmModeFreeProperty(props);
516 drmModeFreeProperty(props);
/hardware/intel/img/hwcomposer/moorefield_hdmi/common/base/
H A DDrm.cpp534 drmModePropertyPtr props; local
536 props = drmModeGetProperty(mDrmFd, out->connector->props[i]);
537 if (!props) {
541 if (strcmp(props->name, "DPMS") == 0) {
545 props->prop_id,
549 drmModeFreeProperty(props);
557 drmModeFreeProperty(props);
/hardware/interfaces/audio/effect/2.0/vts/functional/
H A DVtsHalAudioEffectV2_0TargetTest.cpp765 AllProperties props; local
766 props.bandLevels.resize(numBands);
768 props.bandLevels[i] = 0;
775 props.curPreset = -1;
776 Return<Result> ret = equalizer->setAllProperties(props);
788 EXPECT_EQ(props.bandLevels, actualProps.bandLevels);
791 props.curPreset = 0; // Assuming there is at least one preset.
792 ret = equalizer->setAllProperties(props);
803 EXPECT_EQ(props.curPreset, actualProps.curPreset);
/hardware/interfaces/audio/effect/4.0/vts/functional/
H A DVtsHalAudioEffectV4_0TargetTest.cpp768 AllProperties props; local
769 props.bandLevels.resize(numBands);
771 props.bandLevels[i] = 0;
778 props.curPreset = -1;
779 Return<Result> ret = equalizer->setAllProperties(props);
791 EXPECT_EQ(props.bandLevels, actualProps.bandLevels);
794 props.curPreset = 0; // Assuming there is at least one preset.
795 ret = equalizer->setAllProperties(props);
806 EXPECT_EQ(props.curPreset, actualProps.curPreset);
/hardware/intel/img/psb_video/src/x11/
H A Dpsb_xrandr.c98 Atom *props; local
107 props = XRRListOutputProperties(psb_xrandr_info->dpy, psb_xrandr_info->extend_output->output_id, &nprop);
108 if (!props) {
116 XRRGetOutputProperty(psb_xrandr_info->dpy, psb_xrandr_info->extend_output->output_id, props[i],
120 propinfo = XRRQueryOutputProperty(psb_xrandr_info->dpy, psb_xrandr_info->extend_output->output_id, props[i]);
122 drv_debug_msg(VIDEO_DEBUG_ERROR, "Xrandr: get output %08x prop %08x failed\n", psb_xrandr_info->extend_output->output_id, props[i]);
126 prop_name = XGetAtomName(psb_xrandr_info->dpy, props[i]);

Completed in 317 milliseconds