/openbmc/linux/drivers/thunderbolt/ |
H A D | property.c | 82 struct tb_property *property; in tb_property_alloc() local 84 property = kzalloc(sizeof(*property), GFP_KERNEL); in tb_property_alloc() 85 if (!property) in tb_property_alloc() 88 strcpy(property->key, key); in tb_property_alloc() 89 property->type = type; in tb_property_alloc() 90 INIT_LIST_HEAD(&property->list); in tb_property_alloc() 92 return property; in tb_property_alloc() 99 struct tb_property *property; in tb_property_parse() local 108 property = tb_property_alloc(key, entry->type); in tb_property_parse() 109 if (!property) in tb_property_parse() [all …]
|
/openbmc/openbmc/meta-openembedded/meta-oe/recipes-graphics/lxdm/lxdm/ |
H A D | 0006-themes-Industrial-add-info-label-in-ui.patch | 24 <property name="xscale">0</property> 25 <property name="yscale">0</property> 29 + <property name="visible">True</property> 30 + <property name="orientation">vertical</property> 31 + <property name="spacing">12</property> 34 <property name="visible">True</property> 35 <property name="spacing">12</property> 44 + <property name="visible">True</property> 45 + <property name="spacing">12</property> 48 + <property name="visible">True</property> [all …]
|
/openbmc/linux/drivers/gpu/drm/ |
H A D | drm_property.c | 100 struct drm_property *property = NULL; in drm_property_create() local 109 property = kzalloc(sizeof(struct drm_property), GFP_KERNEL); in drm_property_create() 110 if (!property) in drm_property_create() 113 property->dev = dev; in drm_property_create() 116 property->values = kcalloc(num_values, sizeof(uint64_t), in drm_property_create() 118 if (!property->values) in drm_property_create() 122 ret = drm_mode_object_add(dev, &property->base, DRM_MODE_OBJECT_PROPERTY); in drm_property_create() 126 property->flags = flags; in drm_property_create() 127 property->num_values = num_values; in drm_property_create() 128 INIT_LIST_HEAD(&property->enum_list); in drm_property_create() [all …]
|
H A D | drm_atomic_uapi.c | 408 struct drm_crtc_state *state, struct drm_property *property, in drm_atomic_crtc_set_property() argument 416 if (property == config->prop_active) in drm_atomic_crtc_set_property() 418 else if (property == config->prop_mode_id) { in drm_atomic_crtc_set_property() 424 } else if (property == config->prop_vrr_enabled) { in drm_atomic_crtc_set_property() 426 } else if (property == config->degamma_lut_property) { in drm_atomic_crtc_set_property() 434 } else if (property == config->ctm_property) { in drm_atomic_crtc_set_property() 442 } else if (property == config->gamma_lut_property) { in drm_atomic_crtc_set_property() 450 } else if (property == config->prop_out_fence_ptr) { in drm_atomic_crtc_set_property() 460 } else if (property == crtc->scaling_filter_property) { in drm_atomic_crtc_set_property() 463 return crtc->funcs->atomic_set_property(crtc, state, property, val); in drm_atomic_crtc_set_property() [all …]
|
H A D | drm_mode_object.c | 234 struct drm_property *property, in drm_object_attach_property() argument 238 struct drm_device *dev = property->dev; in drm_object_attach_property() 258 obj->properties->properties[count] = property; in drm_object_attach_property() 284 struct drm_property *property, uint64_t val) in drm_object_property_set_value() argument 288 WARN_ON(drm_drv_uses_atomic_modeset(property->dev) && in drm_object_property_set_value() 289 !(property->flags & DRM_MODE_PROP_IMMUTABLE)); in drm_object_property_set_value() 292 if (obj->properties->properties[i] == property) { in drm_object_property_set_value() 303 struct drm_property *property, in __drm_object_property_get_prop_value() argument 309 if (obj->properties->properties[i] == property) { in __drm_object_property_get_prop_value() 319 struct drm_property *property, in __drm_object_property_get_value() argument [all …]
|
/openbmc/sdbusplus/tools/sdbusplus/templates/ |
H A D | property.server.cpp.mako | 1 auto ${interface.classname}::${property.camelCase}() const -> 2 ${property.cppTypeParam(interface.name)} 4 return _${property.camelCase}; 7 int ${interface.classname}::_callback_get_${property.name}( 9 const char* /*property*/, sd_bus_message* reply, void* context, 21 return o->${property.camelCase}(); 25 % for e in property.errors: 38 auto ${interface.classname}::${property.camelCase}(${property.cppTypeParam(interface.name)} value, 40 ${property.cppTypeParam(interface.name)} 42 if (_${property.camelCase} != value) [all …]
|
H A D | property.client.hpp.mako | 1 /** Get value of ${property.name} 2 * ${property.description.strip()} 4 auto ${property.snake_case}() 7 ${property.cppTypeParam(interface.name)}>(context(), "${property.name}"); 10 % if 'const' not in property.flags and 'readonly' not in property.flags: 11 /** Set value of ${property.name} 12 * ${property.description.strip()} 14 auto ${property.snake_case}(auto value) 17 ${property.cppTypeParam(interface.name)}>( 18 context(), "${property.name}", std::forward<decltype(value)>(value));
|
H A D | property.aserver.vtable.hpp.mako | 1 vtable::property("${property.name}", 2 _property_typeid_${property.snake_case}.data(), 3 _callback_get_${property.snake_case}, 4 % if 'const' not in property.flags and 'readonly' not in property.flags: 5 _callback_set_${property.snake_case}, 7 % if not property.cpp_flags: 10 ${property.cpp_flags}\
|
H A D | property.server.vtable.cpp.mako | 1 vtable::property("${property.name}", 2 details::${interface.classname}::_property_${property.name}.data(), 3 _callback_get_${property.name}, 4 % if 'const' not in property.flags and 'readonly' not in property.flags: 5 _callback_set_${property.name}, 7 % if not property.cpp_flags: 10 ${property.cpp_flags}\
|
/openbmc/linux/arch/arm/boot/dts/broadcom/ |
H A D | bcm-nsp-ax.dtsi | 13 /delete-property/ dma-coherent; 17 /delete-property/ dma-coherent; 21 /delete-property/ dma-coherent; 25 /delete-property/ dma-coherent; 29 /delete-property/ dma-coherent; 33 /delete-property/ dma-coherent; 37 /delete-property/ dma-coherent; 41 /delete-property/ dma-coherent; 45 /delete-property/ dma-coherent; 49 /delete-property/ dma-coherent; [all …]
|
/openbmc/linux/drivers/of/ |
H A D | of_private.h | 47 struct property *prop, struct property *old_prop); 57 struct property *prop, struct property *old_prop) in of_property_notify() 71 int __of_add_property_sysfs(struct device_node *np, struct property *pp); 72 void __of_remove_property_sysfs(struct device_node *np, struct property *prop); 73 void __of_update_property_sysfs(struct device_node *np, struct property *newprop, 74 struct property *oldprop); 78 static inline int __of_add_property_sysfs(struct device_node *np, struct property *pp) in __of_add_property_sysfs() 82 static inline void __of_remove_property_sysfs(struct device_node *np, struct property *prop) {} in __of_remove_property_sysfs() 84 struct property *newprop, struct property *oldprop) {} in __of_update_property_sysfs() 125 struct property *__of_prop_dup(const struct property *prop, gfp_t allocflags); [all …]
|
/openbmc/linux/drivers/mfd/ |
H A D | si476x-prop.c | 46 u16 property) in si476x_core_is_valid_property_a10() argument 80 return si476x_core_element_is_in_range(property, valid_ranges, in si476x_core_is_valid_property_a10() 82 si476x_core_element_is_in_array(property, valid_properties, in si476x_core_is_valid_property_a10() 87 u16 property) in si476x_core_is_valid_property_a20() argument 100 return si476x_core_is_valid_property_a10(core, property) || in si476x_core_is_valid_property_a20() 101 si476x_core_element_is_in_range(property, valid_ranges, in si476x_core_is_valid_property_a20() 103 si476x_core_element_is_in_array(property, valid_properties, in si476x_core_is_valid_property_a20() 108 u16 property) in si476x_core_is_valid_property_a30() argument 126 return si476x_core_is_valid_property_a20(core, property) || in si476x_core_is_valid_property_a30() 127 si476x_core_element_is_in_range(property, valid_ranges, in si476x_core_is_valid_property_a30() [all …]
|
/openbmc/linux/arch/arm64/boot/dts/qcom/ |
H A D | sc7180-firmware-tfa.dtsi | 10 /delete-property/ power-domains; 11 /delete-property/ power-domain-names; 19 /delete-property/ power-domains; 20 /delete-property/ power-domain-names; 28 /delete-property/ power-domains; 29 /delete-property/ power-domain-names; 37 /delete-property/ power-domains; 38 /delete-property/ power-domain-names; 46 /delete-property/ power-domains; 47 /delete-property/ power-domain-names; [all …]
|
/openbmc/openbmc/meta-fii/meta-mori/recipes-extended/rsyslog/rsyslog/ |
H A D | rsyslog.conf | 20 property(name="timereported" dateFormat="rfc3339") 22 property(name="$!IPMI_SEL_RECORD_ID") 24 property(name="$!IPMI_SEL_RECORD_TYPE") 26 property(name="$!IPMI_SEL_DATA") 28 property(name="$!IPMI_SEL_GENERATOR_ID") 30 property(name="$!IPMI_SEL_SENSOR_PATH") 32 property(name="$!IPMI_SEL_EVENT_DIR") 39 property(name="timereported" dateFormat="rfc3339") 41 property(name="$!REDFISH_MESSAGE_ID") 43 property(name="$!REDFISH_MESSAGE_ARGS") [all …]
|
/openbmc/openbmc/meta-ampere/meta-common/recipes-extended/rsyslog/rsyslog/ |
H A D | rsyslog.conf | 20 property(name="timereported" dateFormat="rfc3339") 22 property(name="$!IPMI_SEL_RECORD_ID") 24 property(name="$!IPMI_SEL_RECORD_TYPE") 26 property(name="$!IPMI_SEL_DATA") 28 property(name="$!IPMI_SEL_GENERATOR_ID") 30 property(name="$!IPMI_SEL_SENSOR_PATH") 32 property(name="$!IPMI_SEL_EVENT_DIR") 39 property(name="timereported" dateFormat="rfc3339") 41 property(name="$!REDFISH_MESSAGE_ID") 43 property(name="$!REDFISH_MESSAGE_ARGS") [all …]
|
/openbmc/openbmc/meta-fii/meta-kudo/recipes-extended/rsyslog/rsyslog/ |
H A D | rsyslog.conf | 20 property(name="timereported" dateFormat="rfc3339") 22 property(name="$!IPMI_SEL_RECORD_ID") 24 property(name="$!IPMI_SEL_RECORD_TYPE") 26 property(name="$!IPMI_SEL_DATA") 28 property(name="$!IPMI_SEL_GENERATOR_ID") 30 property(name="$!IPMI_SEL_SENSOR_PATH") 32 property(name="$!IPMI_SEL_EVENT_DIR") 39 property(name="timereported" dateFormat="rfc3339") 41 property(name="$!REDFISH_MESSAGE_ID") 43 property(name="$!REDFISH_MESSAGE_ARGS") [all …]
|
/openbmc/openbmc/meta-intel-openbmc/meta-common/recipes-extended/rsyslog/rsyslog/ |
H A D | rsyslog.conf | 20 property(name="timereported" dateFormat="rfc3339") 22 property(name="$!IPMI_SEL_RECORD_ID") 24 property(name="$!IPMI_SEL_RECORD_TYPE") 26 property(name="$!IPMI_SEL_DATA") 28 property(name="$!IPMI_SEL_GENERATOR_ID") 30 property(name="$!IPMI_SEL_SENSOR_PATH") 32 property(name="$!IPMI_SEL_EVENT_DIR") 39 property(name="timereported" dateFormat="rfc3339") 41 property(name="$!REDFISH_MESSAGE_ID") 43 property(name="$!REDFISH_MESSAGE_ARGS") [all …]
|
/openbmc/openbmc/meta-supermicro/meta-common/recipes-extended/rsyslog/rsyslog/ |
H A D | rsyslog.conf | 20 property(name="timereported" dateFormat="rfc3339") 22 property(name="$!IPMI_SEL_RECORD_ID") 24 property(name="$!IPMI_SEL_RECORD_TYPE") 26 property(name="$!IPMI_SEL_DATA") 28 property(name="$!IPMI_SEL_GENERATOR_ID") 30 property(name="$!IPMI_SEL_SENSOR_PATH") 32 property(name="$!IPMI_SEL_EVENT_DIR") 39 property(name="timereported" dateFormat="rfc3339") 41 property(name="$!REDFISH_MESSAGE_ID") 43 property(name="$!REDFISH_MESSAGE_ARGS") [all …]
|
/openbmc/linux/drivers/gpu/drm/logicvc/ |
H A D | logicvc_of.c | 129 struct logicvc_of_property *property; in logicvc_of_property_parse_u32() local 137 property = &logicvc_of_properties[index]; in logicvc_of_property_parse_u32() 139 if (!property->optional && in logicvc_of_property_parse_u32() 140 !of_property_read_bool(of_node, property->name)) in logicvc_of_property_parse_u32() 143 if (property->sv) { in logicvc_of_property_parse_u32() 144 ret = of_property_read_string(of_node, property->name, &string); in logicvc_of_property_parse_u32() 148 ret = logicvc_of_property_sv_value(property->sv, string, in logicvc_of_property_parse_u32() 153 ret = of_property_read_u32(of_node, property->name, &value); in logicvc_of_property_parse_u32() 158 if (property->range[0] || property->range[1]) in logicvc_of_property_parse_u32() 159 if (value < property->range[0] || value > property->range[1]) in logicvc_of_property_parse_u32() [all …]
|
/openbmc/openbmc/meta-facebook/meta-ventura/recipes-phosphor/gpio/phosphor-gpio-monitor/ |
H A D | frontled | 16 …busctl set-property "xyz.openbmc_project.LED.GroupManager" "/xyz/openbmc_project/led/groups/comput… 17 …busctl set-property "xyz.openbmc_project.LED.GroupManager" "/xyz/openbmc_project/led/groups/comput… 19 …busctl set-property "xyz.openbmc_project.LED.GroupManager" "/xyz/openbmc_project/led/groups/comput… 25 …busctl set-property "xyz.openbmc_project.LED.GroupManager" "/xyz/openbmc_project/led/groups/nvs""$… 26 …busctl set-property "xyz.openbmc_project.LED.GroupManager" "/xyz/openbmc_project/led/groups/nvs""$… 28 …busctl set-property "xyz.openbmc_project.LED.GroupManager" "/xyz/openbmc_project/led/groups/nvs""$… 36 …busctl set-property "xyz.openbmc_project.LED.GroupManager" "/xyz/openbmc_project/led/groups/comput… 37 …busctl set-property "xyz.openbmc_project.LED.GroupManager" "/xyz/openbmc_project/led/groups/comput… 39 …busctl set-property "xyz.openbmc_project.LED.GroupManager" "/xyz/openbmc_project/led/groups/comput… 45 …busctl set-property "xyz.openbmc_project.LED.GroupManager" "/xyz/openbmc_project/led/groups/nvs""$… [all …]
|
/openbmc/qemu/include/sysemu/ |
H A D | device_tree.h | 66 const char *property, const void *val, int size); 68 const char *property, uint32_t val); 70 const char *property, uint64_t val); 72 const char *property, const char *string); 91 const char *property, 104 const char *property, int *lenp, 118 const char *property, int *lenp, 126 #define qemu_fdt_setprop_cells(fdt, node_path, property, ...) \ argument 132 qemu_fdt_setprop(fdt, node_path, property, qdt_tmp, \ 167 const char *property, [all …]
|
/openbmc/linux/arch/arm/boot/dts/nxp/imx/ |
H A D | imx6ulz.dtsi | 9 /delete-property/ ethernet0; 10 /delete-property/ ethernet1; 11 /delete-property/ i2c2; 12 /delete-property/ i2c3; 13 /delete-property/ serial4; 14 /delete-property/ serial5; 15 /delete-property/ serial6; 16 /delete-property/ serial7; 17 /delete-property/ spi2; 18 /delete-property/ spi3;
|
/openbmc/linux/drivers/bus/ |
H A D | tegra-gmi.c | 97 u32 property, ranges[4]; in tegra_gmi_parse_dt() local 150 err = of_property_read_u32(child, "reg", &property); in tegra_gmi_parse_dt() 157 property = ranges[1]; in tegra_gmi_parse_dt() 161 if (property >= TEGRA_GMI_MAX_CHIP_SELECT) { in tegra_gmi_parse_dt() 162 dev_err(gmi->dev, "invalid chip select: %d", property); in tegra_gmi_parse_dt() 167 gmi->snor_config |= TEGRA_GMI_CS_SELECT(property); in tegra_gmi_parse_dt() 170 if (!of_property_read_u32(child, "nvidia,snor-muxed-width", &property)) in tegra_gmi_parse_dt() 171 gmi->snor_timing0 |= TEGRA_GMI_MUXED_WIDTH(property); in tegra_gmi_parse_dt() 175 if (!of_property_read_u32(child, "nvidia,snor-hold-width", &property)) in tegra_gmi_parse_dt() 176 gmi->snor_timing0 |= TEGRA_GMI_HOLD_WIDTH(property); in tegra_gmi_parse_dt() [all …]
|
/openbmc/sdbusplus/test/vtable/ |
H A D | vtable.cpp | 9 const char* property, sd_bus_message* reply, void* userdata, 12 const char* property, sd_bus_message* value, void* userdata, 23 sdbusplus::vtable::property("7", "8", &test_get, 25 sdbusplus::vtable::property("10", "11", &test_get, &test_set), 71 return strcmp(t1.x.property.member, t2.x.property.member) == 0 && in operator ==() 72 strcmp(t1.x.property.signature, t2.x.property.signature) == in operator ==() 74 t1.x.property.get == t2.x.property.get && in operator ==() 75 t1.x.property.set == t2.x.property.set && in operator ==() 76 t1.x.property.offset == t2.x.property.offset; in operator ==()
|
/openbmc/phosphor-fan-presence/ |
H A D | sdbusplus.hpp | 90 const std::string& property) : in DBusPropertyError() argument 92 property)), in DBusPropertyError() 93 busName(busName), path(path), interface(interface), property(property) in DBusPropertyError() 99 const std::string property; member in phosphor::fan::util::DBusPropertyError 341 const std::string& property) in getProperty() argument 348 "Get"s, interface, property); in getProperty() 352 interface, property}; in getProperty() 363 const std::string& property) in getProperty() argument 365 return getProperty<Property>(getBus(), path, interface, property); in getProperty() 372 const std::string& interface, const std::string& property) in getPropertyVariant() argument [all …]
|