HomeSort by: relevance | last modified time | path
    Searched defs:property (Results 1 - 25 of 50) sorted by relevancy

1 2

  /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/external/gpl2/dtc/dist/tests/
property_iterate.c 27 int offset, property; local
32 * This property indicates the number of properties in our
37 FAIL("Missing/invalid test-properties property at '%s'",
47 fdt_for_each_property_offset(property, fdt, offset)
  /src/sys/dev/fdt/
fdt_ddb.c 71 int property; local
73 fdt_for_each_property_offset(property, fdt, node) {
76 fdt_get_property_by_offset(fdt, property, &len);
  /src/usr.sbin/acpitools/aml/
aml_name.h 43 union aml_object *property; member in struct:aml_name
  /src/usr.bin/mkcsmapper/
yacc.y 126 file : property mapping lns
129 property : /* empty */ label
130 | property R_LN
131 | property name
132 | property type
133 | property src_zone
134 | property dst_invalid
135 | property dst_ilseq
136 | property dst_unit_bits
137 | property oob_mod
    [all...]
  /src/crypto/external/cpl/tpm-tools/dist/src/tpm_mgmt/
tpm_clearable.c 46 const TSS_FLAG property; member in struct:physFlag
148 if (tpmGetStatus(hTpm, flags[i].property, &bValue)
185 if (tpmSetStatus(hTpm, flags[i].property, 0)
tpm_present.c 31 TSS_FLAG property; member in struct:physFlag
175 if (tpmGetStatus(hTpm, flags[cmdEnable].property, &bCmd) !=
177 || tpmGetStatus(hTpm, flags[hwdEnable].property,
203 (hTpm, flags[cmdEnable].property,
206 flags[hwdEnable].property,
322 if (tpmGetStatus(hTpm, flags[i].property,
341 if (tpmSetStatus(hTpm, flags[i].property,
  /src/sys/external/bsd/drm2/dist/drm/
drm_mode_config.c 474 struct drm_property *property, *pt; local
501 list_for_each_entry_safe(property, pt, &dev->mode_config.property_list,
503 drm_property_destroy(dev, property);
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
    [all...]
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
173 struct drm_property *property; local
222 struct drm_property *property; local
252 struct drm_property *property; local
342 struct drm_property *property; local
469 struct drm_property *property; local
    [all...]
  /src/usr.sbin/memswitch/
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[];
  /src/external/bsd/kyua-cli/dist/engine/
test_program.cpp 94 const std::string property = state.to_string(-2); local
100 if (property != "name")
101 mdbuilder.set_string(property, value);
kyuafile.cpp 417 "property of test program '%s'") % path);
425 throw std::runtime_error(F("Found non-string metadata property "
428 const std::string property = state.to_string(-2); local
430 if (property != "name" && property != "test_suite") {
433 F("Metadata property '%s' in test program '%s' cannot be "
434 "converted to a string") % property % path);
437 mdbuilder.set_string(property, value);
metadata.cpp 166 /// A leaf node that holds a "required user" property.
308 throw engine::error(F("Unknown metadata property %s") % key);
310 throw engine::error(F("Invalid value for metadata property %s: %s") %
332 throw engine::error(F("Unknown metadata property %s") % key);
334 throw engine::error(F("Invalid value for metadata property %s: %s") %
354 std::string property; local
357 property = "unprivileged_user";
359 property = F("test_suites.%s.%s") % test_suite_name % (*iter);
361 if (!user_config.is_set(property))
362 return F("Required configuration property '%s' not defined")
    [all...]
  /src/external/cddl/osnet/dist/lib/libzfs/common/
libzfs_changelist.c 47 * 'mountpoint' property, we record whether the filesystem was previously
49 * dataset after the property has been changed.
55 * < change property >
92 * If the property is 'mountpoint', go through and unmount filesystems as
125 * Do the property specific processing.
154 * If the property is 'mountpoint' or 'sharenfs', go through and remount and/or
228 * or sharenfs or sharesmb property is set.
324 * Given a gathered changelist for the 'sharenfs' or 'sharesmb' property,
405 char property[ZFS_MAXPROPLEN]; local
415 * property will not affect them. If this is a rename, we iterat
545 char property[ZFS_MAXPROPLEN]; local
    [all...]
  /src/external/gpl3/gcc/dist/gcc/
diagnostic-path.h 101 enum property enum in class:diagnostic_event
113 etc, as per SARIF's threadFlowLocation "kinds" property
127 meaning (enum verb verb, enum property property)
128 : m_verb (verb), m_noun (NOUN_unknown), m_property (property)
136 static const char *maybe_get_property_str (enum property);
140 enum property m_property;
164 properties to the threadFlowLocation object's property bag. */
  /src/external/gpl3/gdb/dist/sim/common/
hw-properties.c 33 /* property entries */
38 struct hw_property *property; member in struct:hw_property_data
58 const char *property)
61 ASSERT (property != NULL);
65 if (strcmp (entry->property->name, property) == 0)
75 const char *property,
91 if (strcmp ((*insertion_point)->property->name, property) == 0)
98 new_value->name = (char *) strdup (property);
    [all...]
hw-tree.c 44 char *property; member in struct:_name_specifier
67 path (and if present) property name and property value. */
138 /* now go back and chop the property off of the path */
141 spec->property = NULL; /*not a property*/
148 spec->property = NULL;
155 spec->property = spec->path;
156 spec->path = strchr (spec->property, '\0');
161 spec->property = chp+1
870 const struct hw_property *property; local
1093 const struct hw_property *property; local
    [all...]
  /src/external/gpl3/gdb.old/dist/sim/common/
hw-properties.c 33 /* property entries */
38 struct hw_property *property; member in struct:hw_property_data
58 const char *property)
61 ASSERT (property != NULL);
65 if (strcmp (entry->property->name, property) == 0)
75 const char *property,
91 if (strcmp ((*insertion_point)->property->name, property) == 0)
98 new_value->name = (char *) strdup (property);
    [all...]
hw-tree.c 44 char *property; member in struct:_name_specifier
67 path (and if present) property name and property value. */
138 /* now go back and chop the property off of the path */
141 spec->property = NULL; /*not a property*/
148 spec->property = NULL;
155 spec->property = spec->path;
156 spec->path = strchr (spec->property, '\0');
161 spec->property = chp+1
870 const struct hw_property *property; local
1093 const struct hw_property *property; local
    [all...]
  /src/sys/external/bsd/libfdt/dist/
fdt_overlay.c 23 * property) instead of a path (target-path property).
26 * the phandle pointed by the target property
85 * target-path property in a node that contains a
108 * @name: Name of the property to modify (phandle or linux,phandle)
353 * @name: Name of the property holding the phandle reference in the overlay
355 * @poffset: Offset within the overlay property where the phandle is stored
415 * @property: Property offset in the overlay holding the list of fixups
418 * to in a __fixups__ property, and updates them to match the phandle
514 int property; local
561 int property; local
    [all...]
  /src/external/bsd/wpa/dist/wpa_supplicant/dbus/
dbus_new_helpers.c 49 /* An error getting a property fails the request entirely */
174 "Property is write-only");
185 "Failed to read property");
208 "Property is read-only");
212 /* Skip the interface name and the property name */
216 /* Iter will now point to the property's new value */
224 "Failed to set property");
238 char *property; local
244 /* Second argument: property name (DBUS_TYPE_STRING) */
250 dbus_message_iter_get_basic(iter, &property);
    [all...]
  /src/external/gpl2/dtc/dist/
dtc.h 139 struct property { struct
144 struct property *next;
153 struct property *proplist;
196 struct property *build_property(char *name, struct data val,
198 struct property *build_property_delete(char *name);
199 struct property *chain_property(struct property *first, struct property *list);
200 struct property *reverse_properties(struct property *first)
    [all...]
  /src/external/gpl3/gdb/dist/sim/ppc/
tree.c 43 char *property; member in struct:_name_specifier
62 path (and if present) property name and property value. */
128 /* now go back and chop the property off of the path */
130 spec->property = NULL; /*not a property*/
136 spec->property = NULL;
141 spec->property = spec->path;
142 spec->path = strchr(spec->property, '\0');
146 spec->property = chp+1
849 const device_property *property; local
1027 const device_property *property; local
    [all...]
  /src/external/gpl3/gdb.old/dist/sim/ppc/
tree.c 43 char *property; member in struct:_name_specifier
62 path (and if present) property name and property value. */
128 /* now go back and chop the property off of the path */
130 spec->property = NULL; /*not a property*/
136 spec->property = NULL;
141 spec->property = spec->path;
142 spec->path = strchr(spec->property, '\0');
146 spec->property = chp+1
849 const device_property *property; local
1027 const device_property *property; local
    [all...]

Completed in 215 milliseconds

1 2