Lines Matching refs:props

446   drmModeObjectProperties *props =  in ParseProperties()  local
448 if (!props || !props->props || !props->prop_values) { in ParseProperties()
449 drmModeFreeObjectProperties(props); in ParseProperties()
453 for (uint32_t j = 0; j < props->count_props; j++) { in ParseProperties()
454 drmModePropertyRes *info = drmModeGetProperty(fd_, props->props[j]); in ParseProperties()
487 drmModeFreeObjectProperties(props); in ParseProperties()
731 drmModeObjectProperties *props = in GetInfo() local
733 if (!props || !props->props || !props->prop_values) { in GetInfo()
734 drmModeFreeObjectProperties(props); in GetInfo()
741 index = std::distance(props->props, in GetInfo()
742 std::find(props->props, props->props + props->count_props, in GetInfo()
744 if (index < props->count_props) in GetInfo()
745 ParseCapabilities(props->prop_values[index], &info->panel_hdr_prop); in GetInfo()
749 index = std::distance(props->props, in GetInfo()
750 std::find(props->props, props->props + props->count_props, in GetInfo()
752 if (index < props->count_props) in GetInfo()
753 ParseCapabilities(props->prop_values[index], info); in GetInfo()
757 index = std::distance(props->props, in GetInfo()
758 std::find(props->props, props->props + props->count_props, in GetInfo()
760 if (index < props->count_props) in GetInfo()
761 ParseModeProperties(props->prop_values[index], info); in GetInfo()
765 index = std::distance(props->props, in GetInfo()
766 std::find(props->props, props->props + props->count_props, in GetInfo()
768 if (index < props->count_props) in GetInfo()
769 ParseCapabilities(props->prop_values[index], &info->ext_hdr_prop); in GetInfo()
773 index = std::distance(props->props, in GetInfo()
774 std::find(props->props, props->props + props->count_props, in GetInfo()
776 info->topology_control = props->prop_values[index]; in GetInfo()
779 index = std::distance(props->props, in GetInfo()
780 std::find(props->props, props->props + props->count_props, in GetInfo()
782 ParseCapabilities(props->prop_values[index], &info->edid); in GetInfo()
786 index = std::distance(props->props, in GetInfo()
787 std::find(props->props, props->props + props->count_props, in GetInfo()
789 info->supported_colorspaces = props->prop_values[index]; in GetInfo()
792 drmModeFreeObjectProperties(props); in GetInfo()