Lines Matching defs:name
28 Property::Property(const char *name, bool readOnly,
30 mName(name), mReadOnly(readOnly), mType(type),
32 if (index(name, '.')) {
33 LOGW("Property name %s violates namespace rules", name);
37 StringProperty::StringProperty(const char *name, bool ro, int elements) :
38 Property(name, ro, Property::Type_STRING, elements) {
61 StringPropertyHelper::StringPropertyHelper(const char *name, bool ro,
63 StringProperty(name, ro, 1) {
88 IntegerProperty::IntegerProperty(const char *name, bool ro, int elements) :
89 Property(name, ro, Property::Type_INTEGER, elements) {
113 IntegerPropertyHelper::IntegerPropertyHelper(const char *name, bool ro,
115 IntegerProperty(name, ro, 1) {
139 IPV4AddressProperty::IPV4AddressProperty(const char *name, bool ro, int elements) :
140 Property(name, ro, Property::Type_IPV4, elements) {
164 IPV4AddressPropertyHelper::IPV4AddressPropertyHelper(const char *name, bool ro,
166 IPV4AddressProperty(name, ro, 1) {
190 PropertyNamespace::PropertyNamespace(const char *name) {
191 mName = strdup(name);