Home
last modified time | relevance | path

Searched refs:property (Results 1 – 25 of 142) sorted by relevance

123456

/dragonfly/sys/dev/drm/
H A Ddrm_property.c82 if (!property) in drm_property_create()
111 return property; in drm_property_create()
114 kfree(property); in drm_property_create()
149 if (!property) in drm_property_create_enum()
162 return property; in drm_property_create_enum()
199 if (!property) in drm_property_create_bitmask()
219 return property; in drm_property_create_bitmask()
230 if (!property) in property_create_range()
236 return property; in property_create_range()
325 if (!property) in drm_property_create_object()
[all …]
H A Ddrm_atomic.c458 if (property == config->prop_active) in drm_atomic_crtc_set_property()
532 if (property == config->prop_active) in drm_atomic_crtc_get_property()
717 if (property == config->prop_fb_id) { in drm_atomic_plane_set_property()
760 property, val); in drm_atomic_plane_set_property()
791 if (property == config->prop_fb_id) { in drm_atomic_plane_get_property()
1150 if (property == config->prop_crtc_id) { in drm_atomic_connector_set_property()
1203 state, property, val); in drm_atomic_connector_set_property()
1282 state, property, val); in drm_atomic_connector_get_property()
1301 connector->state, property, val); in drm_atomic_get_property()
1308 crtc->state, property, val); in drm_atomic_get_property()
[all …]
H A Ddrm_mode_object.c221 struct drm_property *property, in drm_object_attach_property() argument
234 obj->properties->properties[count] = property; in drm_object_attach_property()
260 struct drm_property *property, uint64_t val) in drm_object_property_set_value() argument
265 !(property->flags & DRM_MODE_PROP_IMMUTABLE)); in drm_object_property_set_value()
268 if (obj->properties->properties[i] == property) { in drm_object_property_set_value()
279 struct drm_property *property, in __drm_object_property_get_value() argument
288 if (drm_drv_uses_atomic_modeset(property->dev) && in __drm_object_property_get_value()
289 !(property->flags & DRM_MODE_PROP_IMMUTABLE)) in __drm_object_property_get_value()
506 struct drm_property *property; in drm_mode_obj_set_property_ioctl() local
520 if (!property) in drm_mode_obj_set_property_ioctl()
[all …]
H A Ddrm_crtc_internal.h37 struct drm_property *property,
84 bool drm_property_change_valid_get(struct drm_property *property,
87 void drm_property_change_valid_put(struct drm_property *property,
141 struct drm_property *property,
191 struct drm_property *property, uint64_t *val);
/dragonfly/contrib/binutils-2.34/bfd/
H A Delf-properties.c56 return &p->property; in _bfd_elf_get_property()
70 p->property.pr_type = type; in _bfd_elf_get_property()
71 p->property.pr_datasz = datasz; in _bfd_elf_get_property()
74 return &p->property; in _bfd_elf_get_property()
255 return &list->property; in elf_find_and_remove_property()
339 (bfd_vma) p->property.pr_type, p->property.u.number, in elf_merge_gnu_property_list()
348 (bfd_vma) p->property.pr_type, p->property.u.number, in elf_merge_gnu_property_list()
361 number = p->property.u.number; in elf_merge_gnu_property_list()
372 p->property.pr_datasz); in elf_merge_gnu_property_list()
377 *pr = p->property; in elf_merge_gnu_property_list()
[all …]
/dragonfly/contrib/gcc-4.7/gcc/objc/
H A Dobjc-encoding.c881 objc_v2_encode_prop_attr (tree property) in objc_v2_encode_prop_attr() argument
884 tree type = TREE_TYPE (property); in objc_v2_encode_prop_attr()
890 if (PROPERTY_READONLY (property)) in objc_v2_encode_prop_attr()
893 switch (PROPERTY_ASSIGN_SEMANTICS (property)) in objc_v2_encode_prop_attr()
906 if (PROPERTY_DYNAMIC (property)) in objc_v2_encode_prop_attr()
909 if (PROPERTY_NONATOMIC (property)) in objc_v2_encode_prop_attr()
914 if (PROPERTY_GETTER_NAME (property) != PROPERTY_NAME (property)) in objc_v2_encode_prop_attr()
921 if (!PROPERTY_READONLY (property)) in objc_v2_encode_prop_attr()
936 if (!PROPERTY_DYNAMIC (property)) in objc_v2_encode_prop_attr()
939 if (PROPERTY_IVAR_NAME (property)) in objc_v2_encode_prop_attr()
[all …]
H A Dobjc-act.c6496 if (property) in check_methods()
7529 tree property; in objc_add_synthesize_declaration_for_property() local
7534 …for (property = IMPL_PROPERTY_DECL (objc_implementation_context); property; property = TREE_CHAIN … in objc_add_synthesize_declaration_for_property()
7539 if (PROPERTY_DYNAMIC (property)) in objc_add_synthesize_declaration_for_property()
7555 if (!property) in objc_add_synthesize_declaration_for_property()
7567 property = copy_node (property); in objc_add_synthesize_declaration_for_property()
7745 tree property; in objc_add_dynamic_declaration_for_property() local
7749 …for (property = IMPL_PROPERTY_DECL (objc_implementation_context); property; property = TREE_CHAIN … in objc_add_dynamic_declaration_for_property()
7754 if (PROPERTY_DYNAMIC (property)) in objc_add_dynamic_declaration_for_property()
7770 if (!property) in objc_add_dynamic_declaration_for_property()
[all …]
H A Dobjc-tree.def43 /* This tree is used to represent the expression 'object.property',
44 where 'object' is an Objective-C object and 'property' is an
45 Objective-C property. Operand 0 is the object (the tree
46 representing the expression), and Operand 1 is the property (the
68 is encountered, where 'component' is not a property but there are valid
/dragonfly/lib/libc/locale/
H A Dwctype.c58 wctype_l(const char *property, locale_t locale __unused) in wctype_l() argument
101 len1 = strlen(property); in wctype_l()
104 if (len1 == len2 && memcmp(property, p, len1) == 0) in wctype_l()
112 wctype_t wctype(const char *property) in wctype() argument
114 return wctype_l(property, 0); in wctype()
/dragonfly/usr.bin/mkesdb/
H A Dyacc.y81 file : property
84 property : /* empty */
85 | property R_LN
86 | property name R_LN
87 | property encoding R_LN
88 | property variable R_LN
89 | property defcsid R_LN
90 | property invalid R_LN
/dragonfly/sys/dev/drm/include/drm/
H A Ddrm_property.h231 static inline bool drm_property_type_is(struct drm_property *property, in drm_property_type_is() argument
235 if (property->flags & DRM_MODE_PROP_EXTENDED_TYPE) in drm_property_type_is()
236 return (property->flags & DRM_MODE_PROP_EXTENDED_TYPE) == type; in drm_property_type_is()
237 return property->flags & type; in drm_property_type_is()
261 int drm_property_add_enum(struct drm_property *property, int index,
263 void drm_property_destroy(struct drm_device *dev, struct drm_property *property);
H A Ddrm_mode_object.h148 struct drm_property *property,
151 struct drm_property *property,
155 struct drm_property *property,
H A Ddrm_plane.h253 struct drm_property *property, uint64_t val);
339 struct drm_property *property,
362 struct drm_property *property,
587 struct drm_property *property,
H A Ddrm_crtc.h494 struct drm_property *property, uint64_t val);
580 struct drm_property *property,
602 struct drm_property *property,
/dragonfly/sys/dev/drm/i915/
H A Dintel_atomic.c49 struct drm_property *property, in intel_digital_connector_atomic_get_property() argument
57 if (property == dev_priv->force_audio_property) in intel_digital_connector_atomic_get_property()
59 else if (property == dev_priv->broadcast_rgb_property) in intel_digital_connector_atomic_get_property()
62 DRM_DEBUG_ATOMIC("Unknown property %s\n", property->name); in intel_digital_connector_atomic_get_property()
80 struct drm_property *property, in intel_digital_connector_atomic_set_property() argument
88 if (property == dev_priv->force_audio_property) { in intel_digital_connector_atomic_set_property()
93 if (property == dev_priv->broadcast_rgb_property) { in intel_digital_connector_atomic_set_property()
98 DRM_DEBUG_ATOMIC("Unknown property %s\n", property->name); in intel_digital_connector_atomic_set_property()
H A Dintel_sdvo.c2058 struct drm_property *property, in intel_sdvo_connector_atomic_get_property() argument
2077 property == intel_sdvo_connector->bottom) in intel_sdvo_connector_atomic_get_property()
2080 property == intel_sdvo_connector->right) in intel_sdvo_connector_atomic_get_property()
2082 else if (property == intel_sdvo_connector->hpos) in intel_sdvo_connector_atomic_get_property()
2084 else if (property == intel_sdvo_connector->vpos) in intel_sdvo_connector_atomic_get_property()
2090 else if (property == intel_sdvo_connector->hue) in intel_sdvo_connector_atomic_get_property()
2117 struct drm_property *property, in intel_sdvo_connector_atomic_set_property() argument
2133 property == intel_sdvo_connector->bottom) in intel_sdvo_connector_atomic_set_property()
2137 property == intel_sdvo_connector->right) in intel_sdvo_connector_atomic_set_property()
2140 else if (property == intel_sdvo_connector->hpos) in intel_sdvo_connector_atomic_set_property()
[all …]
H A Dintel_atomic_plane.c280 struct drm_property *property, in intel_plane_atomic_get_property() argument
283 DRM_DEBUG_KMS("Unknown plane property '%s'\n", property->name); in intel_plane_atomic_get_property()
302 struct drm_property *property, in intel_plane_atomic_set_property() argument
305 DRM_DEBUG_KMS("Unknown plane property '%s'\n", property->name); in intel_plane_atomic_set_property()
/dragonfly/usr.bin/mkcsmapper/
H A Dyacc.y125 file : property mapping lns
128 property : /* empty */
129 | property R_LN
130 | property name
131 | property type
132 | property src_zone
133 | property dst_invalid
134 | property dst_ilseq
135 | property dst_unit_bits
136 | property oob_mode
/dragonfly/lib/libutil/
H A DMakefile30 property.c \
64 property.3 \
123 MLINKS+=property.3 properties_free.3 \
124 property.3 properties_read.3 \
125 property.3 property_find.3
/dragonfly/contrib/gcc-4.7/gcc/doc/
H A Doptions.texi35 has been declared in this way, it can be used as an option property.
113 This property is required; @var{name} says which @samp{Enum} record
121 This property is required; it says what value (representable as
147 contains the @code{Undocumented} property).
154 property to reject it.
218 property is used.
223 propagate through the @code{Negative} property of the option to be
271 indicated by any @code{Enum} property.
277 via @option{-Wp,}; new options should not have this property.
300 If the option takes an argument and has the @code{Enum} property,
[all …]
/dragonfly/contrib/gcc-8.0/gcc/objc/
H A Dobjc-tree.def42 /* This tree is used to represent the expression 'object.property',
43 where 'object' is an Objective-C object and 'property' is an
44 Objective-C property. Operand 0 is the object (the tree
45 representing the expression), and Operand 1 is the property (the
67 is encountered, where 'component' is not a property but there are valid
/dragonfly/contrib/wpa_supplicant/wpa_supplicant/dbus/
H A Ddbus_new_helpers.c237 char *property; in properties_get_or_set() local
249 dbus_message_iter_get_basic(iter, &property); in properties_get_or_set()
254 if (!os_strncmp(property_dsc->dbus_property, property, in properties_get_or_set()
264 interface, property, in properties_get_or_set()
272 wpa_printf(MSG_MSGDUMP, "%s: Get(%s)", __func__, property); in properties_get_or_set()
277 wpa_printf(MSG_MSGDUMP, "%s: Set(%s)", __func__, property); in properties_get_or_set()
846 const char *property) in wpa_dbus_mark_property_changed() argument
865 if (os_strcmp(property, dsc->dbus_property) == 0 && in wpa_dbus_mark_property_changed()
875 property, path); in wpa_dbus_mark_property_changed()
/dragonfly/contrib/gcc-4.7/libobjc/
H A Divars.c300 property_getName (struct objc_property * property __attribute__ ((__unused__))) in property_getName() argument
302 if (property == NULL) in property_getName()
311 property_getAttributes (struct objc_property * property __attribute__ ((__unused__))) in property_getAttributes() argument
313 if (property == NULL) in property_getAttributes()
H A Daccessors.m39 lock for each property, so we'll go with a small pool of locks.
40 Any time a property is accessed in an "atomic" way, we pick a
42 same property of the same object) and use it to protect access to
43 the property.
66 /* The property accessors automatically call various methods from the
252 /* We don't know which one is the property, so we have to lock
/dragonfly/gnu/usr.bin/binutils227/block3/
H A DMakefile.gld43 arm-reloc-property.cc \
47 aarch64-reloc-property.cc

123456