Searched refs:property (Results 1 - 25 of 59) sorted by relevance

123

/freebsd-10.0-release/contrib/llvm/tools/lldb/source/Interpreter/
H A DOptionValueProperties.cpp43 // find all non-global settings and copy the property values so that
73 Property property(defs[i]);
74 assert(property.IsValid());
75 m_name_to_index.Append(property.GetName().GetCString(),m_properties.size());
76 property.GetValue()->SetParent(shared_from_this());
77 m_properties.push_back(property);
88 Property property(name, desc, is_global, value_sp);
90 m_properties.push_back(property);
231 const Property *property = GetPropertyAtIndex(NULL, false, idx); local
232 if (property)
241 const Property *property = GetPropertyAtIndex(NULL, false, idx); local
297 const Property *property = GetPropertyAtIndex (exe_ctx, false, idx); local
306 const Property *property = GetPropertyAtIndex (exe_ctx, false, idx); local
329 const Property *property = GetPropertyAtIndex (exe_ctx, true, idx); local
352 const Property *property = GetPropertyAtIndex (exe_ctx, false, idx); local
365 const Property *property = GetPropertyAtIndex (exe_ctx, true, idx); local
381 const Property *property = GetPropertyAtIndex (exe_ctx, false, idx); local
390 const Property *property = GetPropertyAtIndex (exe_ctx, false, idx); local
403 const Property *property = GetPropertyAtIndex (exe_ctx, true, idx); local
417 const Property *property = GetPropertyAtIndex (exe_ctx, false, idx); local
431 const Property *property = GetPropertyAtIndex (exe_ctx, false, idx); local
445 const Property *property = GetPropertyAtIndex (exe_ctx, true, idx); local
458 const Property *property = GetPropertyAtIndex (exe_ctx, false, idx); local
471 const Property *property = GetPropertyAtIndex (exe_ctx, false, idx); local
484 const Property *property = GetPropertyAtIndex (exe_ctx, false, idx); local
497 const Property *property = GetPropertyAtIndex (exe_ctx, true, idx); local
510 const Property *property = GetPropertyAtIndex (exe_ctx, false, idx); local
523 const Property *property = GetPropertyAtIndex (exe_ctx, true, idx); local
546 const Property *property = GetPropertyAtIndex (exe_ctx, false, idx); local
559 const Property *property = GetPropertyAtIndex (exe_ctx, true, idx); local
612 const Property *property = GetPropertyAtIndex(exe_ctx, false, i); local
661 const Property *property = NULL; local
699 const Property *property = ProtectedGetPropertyAtIndex(i); local
705 const Property *property = ProtectedGetPropertyAtIndex(i); local
718 const Property *property = ProtectedGetPropertyAtIndex(i); local
[all...]
/freebsd-10.0-release/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/java_api/src/
H A DTestMaxConsumers.java43 String property = System.getProperty(name);
44 if (property != null && property.length() != 0) {
46 value = Integer.parseInt(property);
57 Integer property = getIntegerProperty(MAX_CONSUMERS_PROPERTY_NAME);
58 int max = (property == null ? 0 : property);
59 int n = (property == null ? 11 : (max < 1 ? 1 : max));
/freebsd-10.0-release/lib/libc/locale/
H A Dwctype.c58 wctype_l(const char *property, locale_t locale) argument
99 len1 = strlen(property);
102 if (len1 == len2 && memcmp(property, p, len1) == 0)
110 wctype_t wctype(const char *property) argument
112 return wctype_l(property, 0);
/freebsd-10.0-release/usr.bin/dtc/
H A Dfdt.hh51 class property;
52 typedef std::map<string, property*> define_map;
74 * property-coded arrays will appear simply as binary (or possibly
82 * lists become one property value for each string, however
83 * when read from binary we have a single property value
89 * This property contains a single string.
101 * resolved and the property value will be a string containing
109 * property of the target node.
113 * An empty property value. This will never appear on a real
114 * property valu
227 class property class in namespace:dtc::fdt
290 property(string k, string l=string()) : key(k), label(l), valid(true) function in class:dtc::fdt::property
295 property(property &p) : key(p.key), label(p.label), values(p.values), function in class:dtc::fdt::property
[all...]
H A Dchecking.hh94 * Method for checking that a property is valid. The root class
97 virtual bool check_property(device_tree *tree, node *n, property *p)
111 * Abstract base class for simple property checks. This class defines a check
112 * method for subclasses, which is invoked only when it finds a property with
113 * the matching name. To define simple property checkers, just subclass this
119 * The name of the property that this checker is looking for.
124 * Implementation of the generic property-checking method that checks
125 * for a property with the name specified in the constructor
127 virtual bool check_property(device_tree *tree, node *n, property *p);
130 * property t
[all...]
H A Dfdt.cc217 property::parse_string(input_buffer &input)
239 property::parse_cells(input_buffer &input)
304 property::parse_bytes(input_buffer &input)
331 property::parse_reference(input_buffer &input)
348 property::property(input_buffer &structs, input_buffer &strings) function in class:dtc::fdt::property
356 fprintf(stderr, "Failed to read property\n");
377 fprintf(stderr, "Failed to read property value\n");
385 void property::parse_define(input_buffer &input, define_map *defines)
399 input.parse_error("Undefined property nam
406 property::property(input_buffer &input, function in class:dtc::fdt::property
[all...]
/freebsd-10.0-release/contrib/dtc/
H A Ddtc.h135 struct property { struct
139 struct property *next;
146 struct property *proplist;
172 struct property *build_property(char *name, struct data val);
173 struct property *chain_property(struct property *first, struct property *list);
174 struct property *reverse_properties(struct property *first);
176 struct node *build_node(struct property *proplis
[all...]
H A Dlivetree.c42 struct property *build_property(char *name, struct data val)
44 struct property *new = xmalloc(sizeof(*new));
54 struct property *chain_property(struct property *first, struct property *list)
62 struct property *reverse_properties(struct property *first)
64 struct property *p = first;
65 struct property *head = NULL;
66 struct property *nex
[all...]
H A Dchecks.c46 struct node *node, struct property *prop);
128 struct property *prop;
200 struct property *prop;
208 FAIL(c, "\"%s\" property in %s is not a string",
219 struct property *prop;
227 FAIL(c, "\"%s\" property in %s is not a single cell",
257 struct property *prop, *prop2;
262 FAIL(c, "Duplicate property name %s in %s",
293 struct node *node, struct property *prop)
298 FAIL(c, "Bad character '%c' in property nam
[all...]
H A Dfdtget.c48 const char *default_val; /* default value if node/property not found */
197 * Show the data for a given node (and perhaps property) according to the
203 * @param property Name of property to display, or NULL if none
207 int node, const char *property)
222 assert(property);
223 value = fdt_getprop(blob, node, property, &len);
232 report_error(property, len);
285 " fdtget <options> <dt file> [<node> <property>]...\n"
291 "\t-d\t\tDefault value to display when the property i
206 show_data_for_item(const void *blob, struct display_info *disp, int node, const char *property) argument
[all...]
H A Dfstree.c52 struct property *prop;
H A Dfdtput.c33 OPER_WRITE_PROP, /* Write a property in a node */
62 * Encode a series of arguments in a property value.
135 const char *property, const char *buf, int len)
146 err = fdt_setprop(blob, node, property, buf, len);
148 report_error(property, -1, err);
250 * store them into the property.
276 "fdtput - write a property value to a device tree\n"
281 " fdtput <options> <dt file> <node> <property> [<value>...]\n"
315 * - delete property
356 usage("Missing property");
134 store_key_value(void *blob, const char *node_name, const char *property, const char *buf, int len) argument
[all...]
/freebsd-10.0-release/contrib/llvm/tools/clang/lib/Sema/
H A DSemaObjCProperty.cpp1 //===--- SemaObjCProperty.cpp - Semantic Analysis for ObjC @property ------===//
10 // This file implements semantic analysis for Objective C @property and
33 /// getImpliedARCOwnership - Given a set of property attributes and a
55 // property type.
64 /// Check the internal consistency of a property declaration.
65 static void checkARCPropertyDecl(Sema &S, ObjCPropertyDecl *property) { argument
66 if (property->isInvalidDecl()) return;
69 = property->getPropertyAttributes();
71 = property->getType().getObjCLifetime();
77 = getImpliedARCOwnership(propertyKind, property
616 checkARCPropertyImpl(Sema &S, SourceLocation propertyImplLoc, ObjCPropertyDecl *property, ObjCIvarDecl *ivar) argument
694 setImpliedPropertyAttributeForReadOnlyProperty( ObjCPropertyDecl *property, ObjCIvarDecl *ivar) argument
721 DiagnoseClassAndClassExtPropertyMismatch(Sema &S, ObjCInterfaceDecl *ClassDecl, ObjCPropertyDecl *property) argument
809 ObjCPropertyDecl *property = 0; local
1339 DiagnosePropertyAccessorMismatch(ObjCPropertyDecl *property, ObjCMethodDecl *GetterMethod, SourceLocation Loc) argument
1566 ObjCPropertyDecl *property = *P; local
1904 ProcessPropertyDecl(ObjCPropertyDecl *property, ObjCContainerDecl *CD, ObjCPropertyDecl *redeclaredProperty, ObjCContainerDecl *lexicalDC) argument
[all...]
/freebsd-10.0-release/usr.bin/mkesdb/
H A Dyacc.y78 file : property
81 property : /* empty */ label
82 | property R_LN
83 | property name R_LN
84 | property encoding R_LN
85 | property variable R_LN
86 | property defcsid R_LN
87 | property invalid R_LN
/freebsd-10.0-release/lib/libutil/
H A DMakefile16 pidfile.c property.c pty.c pw_util.c quotafile.c realhostname.c \
32 property.3 pty.3 quotafile.3 realhostname.3 realhostname_sa.3 \
57 MLINKS+= property.3 property_find.3 property.3 properties_free.3
58 MLINKS+= property.3 properties_read.3
/freebsd-10.0-release/sys/dev/drm2/
H A Ddrm_crtc.c804 * drm_mode_create_scaling_mode_property - create scaling mode property
828 * drm_mode_create_dithering_property - create dithering property
851 * drm_mode_create_dirty_property - create dirty property
968 struct drm_property *property, *pt; local
981 list_for_each_entry_safe(property, pt, &dev->mode_config.property_list,
983 drm_property_destroy(dev, property);
2616 struct drm_property *property = NULL; local
2619 property = malloc(sizeof(struct drm_property), DRM_MEM_KMS,
2623 property->values = malloc(sizeof(uint64_t)*num_values, DRM_MEM_KMS,
2627 ret = drm_mode_object_get(dev, &property
2653 struct drm_property *property; local
2679 struct drm_property *property; local
2693 drm_property_add_enum(struct drm_property *property, int index, uint64_t value, const char *name) argument
2723 drm_property_destroy(struct drm_device *dev, struct drm_property *property) argument
2739 drm_connector_attach_property(struct drm_connector *connector, struct drm_property *property, uint64_t init_val) argument
2757 drm_connector_property_set_value(struct drm_connector *connector, struct drm_property *property, uint64_t value) argument
2774 drm_connector_property_get_value(struct drm_connector *connector, struct drm_property *property, uint64_t *val) argument
2796 struct drm_property *property; local
2996 struct drm_property *property; local
[all...]
/freebsd-10.0-release/cddl/contrib/opensolaris/lib/libzfs/common/
H A Dlibzfs_changelist.c46 * 'mountpoint' property, we record whether the filesystem was previously
48 * dataset after the property has been changed.
54 * < change property >
91 * If the property is 'mountpoint', go through and unmount filesystems as
124 * Do the property specific processing.
150 * If the property is 'mountpoint' or 'sharenfs', go through and remount and/or
224 * or sharenfs or sharesmb property is set.
320 * Given a gathered changelist for the 'sharenfs' or 'sharesmb' property,
401 char property[ZFS_MAXPROPLEN]; local
411 * property wil
541 char property[ZFS_MAXPROPLEN]; local
[all...]
/freebsd-10.0-release/crypto/openssh/
H A Daudit-bsm.c185 scf_property_t *property = NULL; local
203 property = scf_property_create(handle);
204 if (property == NULL)
209 NULL, NULL, NULL, NULL, property, 0);
217 ret = scf_property_get_value(property, value);
226 scf_property_destroy(property);
/freebsd-10.0-release/contrib/unbound/libunbound/python/
H A Dlibunbound.i701 raw = property(as_raw_data, doc="Returns RAW data (a list of binary encoded strings). See :meth:`as_raw_data`")
710 mx_list = property(as_mx_list, doc="Returns a list of tuples containing priority and domain names. See :meth:`as_mx_list`")
719 mx_list_idn = property(as_idn_mx_list, doc="Returns a list of tuples containing priority and IDN domain names. See :meth:`as_idn_mx_list`")
728 address_list = property(as_address_list, doc="Returns a list of IP addresses. See :meth:`as_address_list`")
737 domain_list = property(as_domain_list, doc="Returns a list of domain names. See :meth:`as_domain_list`")
746 domain_list_idn = property(as_idn_domain_list, doc="Returns a list of IDN domain names. See :meth:`as_idn_domain_list`")
783 #havedata = property(_unbound.ub_result_havedata_get, _unbound.ub_result_havedata_set, "Havedata property")
805 rawdata = property(_get_raw_data, doc="Returns raw data, a list of rdata items. To decode RAW data use the :attr:`data` attribute which returns an instance of :class:`ub_data` containing the conversion functions.")
813 data = property(_get_dat
[all...]
/freebsd-10.0-release/usr.bin/svn/lib/libsvn_ra_serf/
H A DMakefile13 property.c replay.c sb_bucket.c serf.c update.c util.c \
/freebsd-10.0-release/usr.bin/mkcsmapper/
H A Dyacc.y121 file : property mapping lns
124 property : /* empty */ label
125 | property R_LN
126 | property name
127 | property type
128 | property src_zone
129 | property dst_invalid
130 | property dst_ilseq
131 | property dst_unit_bits
132 | property oob_mod
[all...]
/freebsd-10.0-release/contrib/subversion/subversion/libsvn_client/
H A Dadd.c98 const char *property,
107 new_prop = apr_palloc(pool, strlen(property)+1);
109 for (i = 0; property[i] != '\0'; i++)
111 if (property[i] != ';')
113 new_prop[j] = property[i];
116 else if (property[i] == ';')
119 if (property[i+1] == ';')
139 /* PROPVALS is a hash mapping char * property names to const char * property
340 * property name
95 split_props(apr_array_header_t **props, const char *property, apr_pool_t *pool) argument
526 char *property = APR_ARRAY_IDX(autoprops, i, char *); local
[all...]
/freebsd-10.0-release/contrib/dtc/Documentation/
H A Ddtc-paper.tex236 Each property, after the \dtprop, has a 32-bit value giving an offset
237 from the beginning of the strings block at which the property name is
241 property value (as a 32-bit value) and then the data itself padded to
283 generally have an \texttt{interrupt-parent} property giving the
291 \phandle property. When the kernel generates a flattened tree from
292 OF, it adds a \phandle property to each node, containing the phandle
295 property.
305 node's \texttt{reg} property. In addition, nodes have a property,
312 \texttt{name} property fro
[all...]
/freebsd-10.0-release/contrib/wpa/wpa_supplicant/dbus/
H A Ddbus_new.h134 enum wpas_dbus_prop property);
136 enum wpas_dbus_bss_prop property,
241 enum wpas_dbus_prop property)
246 struct wpa_supplicant *wpa_s, enum wpas_dbus_bss_prop property,
240 wpas_dbus_signal_prop_changed(struct wpa_supplicant *wpa_s, enum wpas_dbus_prop property) argument
245 wpas_dbus_bss_signal_prop_changed( struct wpa_supplicant *wpa_s, enum wpas_dbus_bss_prop property, unsigned int id) argument
H A Ddbus_new_helpers.h32 /* property changed flags */
79 * struct wpa_dbus_property_desc - DBus property description
82 /* property name */
84 /* property interface */
86 /* property type signature in DBus type notation */
88 /* property getter function */
90 /* property setter function */
135 const char *property);

Completed in 512 milliseconds

123