/src/usr.sbin/memswitch/ |
methods.h | 35 int fill_uchar(struct property*); 36 int fill_ushort(struct property*); 37 int fill_ulong(struct property*); 39 int flush_uchar(struct property*); 40 int flush_ushort(struct property*); 41 int flush_ulong(struct property*); 42 int flush_dummy(struct property*); 44 int parse_dummy(struct property*, const char*); 45 int parse_uchar(struct property*, const char*); 46 int parse_ushort(struct property*, const char*) [all...] |
memswitch.h | 46 struct property; 48 typedef int (*parse_t)(struct property*, const char*); 49 typedef int (*print_t)(struct property*, char*); 50 typedef int (*fill_t)(struct property*); 51 typedef int (*flush_t)(struct property*); 53 struct property { struct 77 extern struct property properties[];
|
methods.c | 98 fill_uchar(struct property *prop) 113 fill_ushort(struct property *prop) 128 fill_ulong(struct property *prop) 143 flush_uchar(struct property *prop) 157 flush_ushort(struct property *prop) 172 flush_ulong(struct property *prop) 189 flush_dummy(struct property *prop) 195 parse_dummy(struct property *prop, const char *value) 203 parse_byte(struct property *prop, const char *value) 239 parse_uchar(struct property *prop, const char *value [all...] |
/src/sys/external/gpl2/dts/dist/arch/arm/boot/dts/ |
imx6ul-tx6ul-0010.dts | 51 /delete-property/ mmc1;
|
imx6dl-tx6dl-comtft.dts | 54 /delete-property/ turn-on-delay-ms;
|
imx6q-tx6q-1010-comtft.dts | 54 /delete-property/ turn-on-delay-ms;
|
sun5i-a13-utoo-p66.dts | 54 /delete-property/serial0; 58 /delete-property/stdout-path;
|
imx6q-tx6q-1020-comtft.dts | 54 /delete-property/ turn-on-delay-ms;
|
imx6ul-tx6ul-mainboard.dts | 53 /delete-property/ mmc1; 143 /delete-property/ cd-gpios; 149 /delete-property/ uart-has-rtscts; 154 /delete-property/ uart-has-rtscts;
|
sun8i-a33-inet-d978-rev2.dts | 58 /delete-property/stdout-path;
|
sun8i-v3.dtsi | 39 /delete-property/ phy-handle; 40 /delete-property/ phy-mode;
|
/src/sys/external/bsd/drm2/dist/drm/ |
drm_property.c | 49 * property types and ranges. 55 * Property values are only 64bit. To support bigger piles of data (like gamma 56 * tables, color correction matrices or large structures) a property can instead 60 * per-object mapping from those names to the property ID used in the atomic 61 * IOCTL and in the get/set property IOCTL. 88 * drm_property_create - create a new property type 90 * @flags: flags specifying the property type 91 * @name: name of the property 94 * This creates a new generic drm property which can then be attached to a drm 95 * object with drm_object_attach_property(). The returned property object mus 106 struct drm_property *property = NULL; local in function:drm_property_create 173 struct drm_property *property; local in function:drm_property_create_enum 222 struct drm_property *property; local in function:drm_property_create_bitmask 252 struct drm_property *property; local in function:property_create_range 342 struct drm_property *property; local in function:drm_property_create_object 469 struct drm_property *property; local in function:drm_mode_getproperty_ioctl [all...] |
drm_atomic_uapi.c | 64 * the enable property. 109 * @blob: pointer to blob property to use for mode 111 * Set a mode (originating from a blob property) on the desired CRTC state. 112 * This function will take a reference on the blob property for the CRTC state, 113 * and release the reference held on the state's existing mode property, if any 425 struct drm_crtc_state *state, struct drm_property *property, 433 if (property == config->prop_active) 435 else if (property == config->prop_mode_id) { 441 } else if (property == config->prop_vrr_enabled) { 443 } else if (property == config->degamma_lut_property) [all...] |
drm_mode_object.c | 226 * drm_object_attach_property - attach a property to a modeset object 228 * @property: property to attach 229 * @init_val: initial value of the property 231 * This attaches the given property to the modeset object with the given initial 239 struct drm_property *property, 243 struct drm_device *dev = property->dev; 256 WARN(1, "Failed to attach object property (type: 0x%x). Please " 263 obj->properties->properties[count] = property; 270 * drm_object_property_set_value - set the value of a property 536 struct drm_property *property; local in function:drm_mode_obj_set_property_ioctl [all...] |
/src/usr.sbin/acpitools/aml/ |
aml_evalobj.c | 80 if (name == NULL || name->property == NULL || 81 name->property->type != aml_t_field) { 86 field = &name->property->field; 96 if (wname == NULL || wname->property == NULL || 97 wname->property->type != aml_t_opregion) { 103 or = &wname->property->opregion; 195 if (aname == NULL || aname->property == NULL) { 205 ret = aname->property; 214 switch (aname->property->type) { 217 aname = aml_search_name(env, aname->property->nstr.dp) [all...] |
aml_store.c | 68 field = &name->property->field; 75 wname->property == NULL || 76 wname->property->type != aml_t_opregion) { 82 or = &wname->property->opregion; 269 r->objref.nameref->property = r->objref.ref; 311 if (name->property == NULL) { 312 name->property = aml_copy_object(env, obj); 316 if (name->property->type == aml_t_namestr) { 317 wname = aml_search_name(env, name->property->nstr.dp); 324 if (name->property == NULL || name->property->type == aml_t_null) [all...] |
/src/sys/external/bsd/drm2/dist/include/drm/ |
drm_property.h | 36 * @value: numeric property value for this enum entry 41 * decoding for each value. This is used for example for the rotation property. 50 * struct drm_property - modeset object property 52 * This structure represent a modeset object property. It combines both the name 53 * of the property with the set of permissible values. This means that when a 54 * driver wants to use a property with the same name on different objects, but 55 * with different value ranges, then it must create property for each one. An 58 * property structure can be instantiated multiple times for the same object. 60 * symbolic property will have the same modeset object ID on all modeset 66 * To actually expose a property it must be attached to each object usin [all...] |
drm_mode_object.h | 67 * struct drm_object_properties - property tracking for &drm_mode_object 81 * a better job of detaching property from mode objects to avoid 82 * dangling property pointers: 87 * @values: Array to store the property values, matching @properties. Do 126 struct drm_property *property, 129 struct drm_property *property, 133 struct drm_property *property,
|
/src/sys/external/gpl2/dts/dist/arch/arm64/boot/dts/renesas/ |
rzg2ul-smarc.dtsi | 14 /delete-property/ pinctrl-0; 15 /delete-property/ pinctrl-names; 139 /delete-property/ pinctrl-0; 140 /delete-property/ pinctrl-names; 145 /delete-property/ pinctrl-0; 146 /delete-property/ pinctrl-names;
|
/src/sys/external/bsd/drm2/dist/drm/i915/display/ |
intel_atomic.h | 28 struct drm_property *property, 32 struct drm_property *property,
|
/src/usr.bin/mkesdb/ |
yacc.y | 84 file : property 87 property : /* empty */ label 88 | property R_LN 89 | property name R_LN 90 | property encoding R_LN 91 | property variable R_LN 92 | property defcsid R_LN 93 | property invalid R_LN
|
/src/usr.sbin/acpitools/amldb/ |
debug.c | 145 if (tmp == NULL || tmp->property == NULL) { 149 aml_showobject(tmp->property); 155 if (tmp == NULL || tmp->property == NULL) { 159 aml_showobject(tmp->property); 202 if (name->property == NULL || 203 name->property->type != aml_t_method) { 208 aml_showobject(name->property); 211 argnum = name->property->meth.argnum & 0x07;
|
amldb.c | 70 newname->property = aml_alloc_object(aml_t_string, NULL); 71 newname->property->str.needfree = 0; 72 newname->property->str.string = __UNCONST("Microsoft Windows NT");
|
/src/sys/dev/fdt/ |
fdt_ddb.c | 71 int property; variable in typeref:typename:int 73 fdt_for_each_property_offset(property, fdt, node) { 76 fdt_get_property_by_offset(fdt, property, &len);
|
/src/sys/external/bsd/libfdt/dist/ |
libfdt.h | 19 /* FDT_ERR_NOTFOUND: The requested node or property does not exist */ 21 /* FDT_ERR_EXISTS: Attempted to create a node or property which 40 * This can be caused either by an invalid phandle property 82 * or similar property with a bad format or value */ 85 /* FDT_ERR_BADVALUE: Device tree has a property with an unexpected 86 * value. For example: a property expected to contain a string list 92 * unexpected or missing value, property or node. */ 139 static inline void fdt32_st(void *property, uint32_t value) 141 uint8_t *bp = property; 163 static inline void fdt64_st(void *property, uint64_t value [all...] |