/system/sepolicy/prebuilts/api/26.0/public/ |
D | attributes | 8 attribute dev_type; 11 attribute domain; 16 attribute fs_type; 19 attribute contextmount_type; 25 attribute file_type; 28 attribute exec_type; 31 attribute data_file_type; 33 attribute core_data_file_type; 35 attribute vendor_file_type; 38 attribute sysfs_type; [all …]
|
/system/sepolicy/prebuilts/api/27.0/public/ |
D | attributes | 8 attribute dev_type; 11 attribute domain; 16 attribute fs_type; 19 attribute contextmount_type; 25 attribute file_type; 28 attribute exec_type; 31 attribute data_file_type; 34 attribute core_data_file_type; 36 attribute vendor_file_type; 39 attribute sysfs_type; [all …]
|
/system/sepolicy/prebuilts/api/28.0/public/ |
D | attributes | 8 attribute dev_type; 11 attribute domain; 16 attribute fs_type; 19 attribute contextmount_type; 25 attribute file_type; 28 attribute exec_type; 31 attribute data_file_type; 34 attribute core_data_file_type; 37 attribute vendor_file_type; 40 attribute proc_type; [all …]
|
/system/sepolicy/public/ |
D | attributes | 8 attribute dev_type; 11 attribute bdev_type; 14 attribute domain; 19 attribute fs_type; 22 attribute contextmount_type; 28 attribute file_type; 31 attribute exec_type; 34 attribute data_file_type; 37 attribute core_data_file_type; 42 attribute app_data_file_type; [all …]
|
/system/sepolicy/prebuilts/api/31.0/public/ |
D | attributes | 8 attribute dev_type; 11 attribute bdev_type; 14 attribute domain; 19 attribute fs_type; 22 attribute contextmount_type; 28 attribute file_type; 31 attribute exec_type; 34 attribute data_file_type; 37 attribute core_data_file_type; 42 attribute app_data_file_type; [all …]
|
/system/sepolicy/prebuilts/api/29.0/public/ |
D | attributes | 8 attribute dev_type; 11 attribute domain; 16 attribute fs_type; 19 attribute contextmount_type; 25 attribute file_type; 28 attribute exec_type; 31 attribute data_file_type; 34 attribute core_data_file_type; 38 attribute system_file_type; 41 attribute vendor_file_type; [all …]
|
/system/sepolicy/prebuilts/api/30.0/public/ |
D | attributes | 8 attribute dev_type; 11 attribute domain; 16 attribute fs_type; 19 attribute contextmount_type; 25 attribute file_type; 28 attribute exec_type; 31 attribute data_file_type; 34 attribute core_data_file_type; 38 attribute system_file_type; 41 attribute vendor_file_type; [all …]
|
/system/connectivity/wificond/net/ |
D | nl80211_packet.h | 112 void AddAttribute(const BaseNL80211Attr& attribute); 117 bool GetAttribute(int id, NL80211NestedAttr* attribute) const; 131 NL80211Attr<T> attribute(empty_vec); in GetAttributeValue() 132 if (!GetAttribute(id, &attribute)) { in GetAttributeValue() 135 *value = attribute.GetValue(); in GetAttributeValue() 140 bool GetAttribute(int id, NL80211Attr<T>* attribute) const { in GetAttribute() argument 151 *attribute = NL80211Attr<T>(std::vector<uint8_t>(start, end)); in GetAttribute() 152 if (!attribute->IsValid()) { in GetAttribute()
|
D | nl80211_attribute.h | 161 void AddAttribute(const BaseNL80211Attr& attribute); 172 bool GetAttribute(int id, NL80211NestedAttr* attribute) const; 181 NL80211Attr<T> attribute(empty_vec); in GetAttributeValue() 182 if (!GetAttribute(id, &attribute)) { in GetAttributeValue() 185 *value = attribute.GetValue(); in GetAttributeValue() 208 NL80211Attr<T> attribute(std::vector<uint8_t>( in GetListOfAttributeValues() 211 if (!attribute.IsValid()) { in GetListOfAttributeValues() 214 attr_list.emplace_back(attribute.GetValue()); in GetListOfAttributeValues() 246 NL80211Attr<T> attribute(std::vector<uint8_t>( in GetListOfAttributes() 249 if (!attribute.IsValid()) { in GetListOfAttributes() [all …]
|
D | nl80211_packet.cpp | 170 void NL80211Packet::AddAttribute(const BaseNL80211Attr& attribute) { in AddAttribute() argument 171 const vector<uint8_t>& append_data = attribute.GetConstData(); in AddAttribute() 200 NL80211NestedAttr* attribute) const { in GetAttribute() 211 *attribute = NL80211NestedAttr(vector<uint8_t>(start, end)); in GetAttribute() 212 if (!attribute->IsValid()) { in GetAttribute()
|
/system/core/libprocessgroup/profiles/ |
D | task_profiles_test.h | 40 auto&& attribute = task_profiles_->attributes(i); in TEST_P() 41 EXPECT_FALSE(attribute.name().empty()) in TEST_P() 43 EXPECT_FALSE(attribute.controller().empty()) in TEST_P() 45 EXPECT_FALSE(attribute.file().empty()) in TEST_P()
|
/system/tools/xsdc/tests/resources/attr_group_simple/ |
D | attr_group_simple.xsd | 3 <xs:attribute name="State" type="xs:string"/> 4 <xs:attribute name="city" type="xs:string" use="required"/> 8 <xs:attribute name="road" type="xs:string"/> 19 <xs:attribute name="list" type="listInt" use="required"/>
|
/system/sepolicy/prebuilts/api/26.0/private/ |
D | attributes | 1 # Temporary attribute used for migrating permissions out of domain. 3 # from domain and assign them to the domain_deprecated attribute. 9 attribute domain_deprecated;
|
/system/sepolicy/prebuilts/api/27.0/private/ |
D | attributes | 1 # Temporary attribute used for migrating permissions out of domain. 3 # from domain and assign them to the domain_deprecated attribute. 9 attribute domain_deprecated;
|
/system/bt/gd/dumpsys/ |
D | bluetooth_flatbuffer_test.fbs | 3 attribute "privacy"; 6 string_private:string; // no privacy attribute implies private
|
/system/tools/xsdc/tests/resources/reference/ |
D | reference.xsd | 3 <xs:attribute name="name" type="xs:string"/> 9 <xs:attribute ref="name"/>
|
/system/tools/xsdc/src/com/android/xsdc/java/ |
D | JavaCodeGenerator.java | 236 for (XsdAttribute attribute : attributes) { in printClass() 237 XsdType type = resolveAttribute(attribute).getType(); in printClass() 253 XsdAttribute attribute = resolveAttribute(attributes.get(i)); in printClass() local 254 out.printf("%sprivate %s %s;\n", getNullabilityString(attribute.getNullability()), in printClass() 255 type.getNullableName(), Utils.toVariableName(attribute.getName())); in printClass() 271 XsdAttribute attribute = resolveAttribute(attributes.get(i)); in printClass() local 272 printGetterAndSetter(out, type, Utils.toVariableName(attribute.getName()), false, in printClass() 273 attribute); in printClass() 304 for (XsdAttribute attribute : allAttributes) { in printParser() 305 XsdType type = resolveAttribute(attribute).getType(); in printParser() [all …]
|
/system/tools/xsdc/src/com/android/xsdc/cpp/ |
D | CppCodeGenerator.java | 367 for (XsdAttribute attribute : attributes) { in printClass() 368 XsdType type = resolveAttribute(attribute).getType(); in printClass() 386 XsdAttribute attribute = resolveAttribute(attributes.get(i)); in printClass() local 387 String variableName = Utils.toVariableName(attribute.getName()); in printClass() 388 if (attribute.isRequired()) { in printClass() 416 XsdAttribute attribute = resolveAttribute(attributes.get(i)); in printClass() local 417 printGetter(nameScope + name, type, Utils.toVariableName(attribute.getName()), in printClass() 418 false, false, attribute.isRequired()); in printClass() 449 for (XsdAttribute attribute : allAttributes) { in printParser() 450 XsdType type = resolveAttribute(attribute).getType(); in printParser() [all …]
|
/system/sepolicy/private/ |
D | attributes | 6 attribute mlsvendorcompat; 11 attribute system_and_vendor_property_type;
|
/system/sepolicy/prebuilts/api/31.0/private/ |
D | attributes | 6 attribute mlsvendorcompat; 11 attribute system_and_vendor_property_type;
|
/system/tools/xsdc/ |
D | README.md | 10 Add the schema (attribute, element or new complexType …) you want to add to the 20 <xs:attribute name="name" type=”xs:string”/> 32 <xs:attribute name="name" type=”xs:string”/> 33 <xs:attribute name="number" type="xs:int"/> 57 <xs:attribute name="name" type=”xs:string”/> 71 <xs:attribute name="name" type=”xs:string”/> 113 "xsd:attribute" [
|
/system/bt/include/hardware/avrcp/ |
D | avrcp_common.h | 149 AttributeEntry(const Attribute& attribute, const std::string& value) in AttributeEntry() argument 150 : attribute_(attribute), value_(value) {} in AttributeEntry() 152 AttributeEntry(const Attribute& attribute) : attribute_(attribute) {} in AttributeEntry() argument 156 Attribute attribute() const { return attribute_; } in attribute() function
|
/system/bt/packet/tests/avrcp/ |
D | get_element_attributes_packet_test.cc | 107 auto attribute = AttributeEntry(Attribute::TITLE, "1234"); in TEST() local 110 truncated_size += attribute.size(); // Attribute size in TEST() 125 builder->AddAttributeEntry(attribute); in TEST()
|
D | get_item_attributes_packet_test.cc | 56 auto attribute = AttributeEntry(Attribute::TITLE, "1234"); in TEST() local 59 truncated_size += attribute.size(); // Attribute size in TEST() 75 builder->AddAttributeEntry(attribute); in TEST()
|
/system/bt/stack/sdp/ |
D | sdp_db.cc | 68 p_attr = &p_rec->attribute[0]; in sdp_db_service_search() 174 for (xx = 0, p_at = &p_rec->attribute[0]; xx < p_rec->num_attributes; in sdp_db_find_attr_in_rec() 313 p_rec->attribute[zz].value_ptr -= sizeof(tSDP_RECORD); in SDP_DeleteRecord() 397 tSDP_ATTRIBUTE* p_attr = &p_rec->attribute[0]; in SDP_AddAttribute() 413 p_attr = &p_rec->attribute[p_rec->num_attributes]; in SDP_AddAttribute() 417 p_rec->attribute[yy] = p_rec->attribute[yy - 1]; in SDP_AddAttribute() 772 tSDP_ATTRIBUTE* p_attr = &p_rec->attribute[0]; in SDP_DeleteAttribute() 783 if (p_rec->attribute[zz].value_ptr > pad_ptr) in SDP_DeleteAttribute() 784 p_rec->attribute[zz].value_ptr -= len; in SDP_DeleteAttribute()
|