Lines Matching refs:AttributeList
40 bool AttributeList::CreateAttribute( in CreateAttribute()
41 int id, AttributeList::NewFromIdMethod factory) { in CreateAttribute()
50 bool AttributeList::CreateControlAttribute(int id) { in CreateControlAttribute()
55 bool AttributeList::CreateNl80211Attribute( in CreateNl80211Attribute()
61 bool AttributeList::CreateAndInitAttribute( in CreateAndInitAttribute()
62 const AttributeList::NewFromIdMethod& factory, in CreateAndInitAttribute()
70 bool AttributeList::InitAttributeFromValue(int id, const ByteString& value) { in InitAttributeFromValue()
77 void AttributeList::Print(int log_level, int indent) const { in Print()
86 bool AttributeList::IterateAttributes( in IterateAttributes()
88 const AttributeList::AttributeMethod& method) { in IterateAttributes()
117 bool AttributeList::Decode(const ByteString& payload, in Decode()
119 const AttributeList::NewFromIdMethod& factory) { in Decode()
121 payload, offset, base::Bind(&AttributeList::CreateAndInitAttribute, in Decode()
125 ByteString AttributeList::Encode() const { in Encode()
137 bool AttributeList::GetU8AttributeValue(int id, uint8_t* value) const { in GetU8AttributeValue()
144 bool AttributeList::CreateU8Attribute(int id, const char* id_string) { in CreateU8Attribute()
154 bool AttributeList::SetU8AttributeValue(int id, uint8_t value) { in SetU8AttributeValue()
164 bool AttributeList::GetU16AttributeValue(int id, uint16_t* value) const { in GetU16AttributeValue()
171 bool AttributeList::CreateU16Attribute(int id, const char* id_string) { in CreateU16Attribute()
181 bool AttributeList::SetU16AttributeValue(int id, uint16_t value) { in SetU16AttributeValue()
190 bool AttributeList::GetU32AttributeValue(int id, uint32_t* value) const { in GetU32AttributeValue()
197 bool AttributeList::CreateU32Attribute(int id, const char* id_string) { in CreateU32Attribute()
207 bool AttributeList::SetU32AttributeValue(int id, uint32_t value) { in SetU32AttributeValue()
216 bool AttributeList::GetU64AttributeValue(int id, uint64_t* value) const { in GetU64AttributeValue()
223 bool AttributeList::CreateU64Attribute(int id, const char* id_string) { in CreateU64Attribute()
233 bool AttributeList::SetU64AttributeValue(int id, uint64_t value) { in SetU64AttributeValue()
242 bool AttributeList::GetFlagAttributeValue(int id, bool* value) const { in GetFlagAttributeValue()
249 bool AttributeList::CreateFlagAttribute(int id, const char* id_string) { in CreateFlagAttribute()
259 bool AttributeList::SetFlagAttributeValue(int id, bool value) { in SetFlagAttributeValue()
266 bool AttributeList::IsFlagAttributeTrue(int id) const { in IsFlagAttributeTrue()
276 bool AttributeList::GetStringAttributeValue(int id, string* value) const { in GetStringAttributeValue()
283 bool AttributeList::CreateStringAttribute(int id, const char* id_string) { in CreateStringAttribute()
293 bool AttributeList::CreateSsidAttribute(int id, const char* id_string) { in CreateSsidAttribute()
303 bool AttributeList::SetStringAttributeValue(int id, string value) { in SetStringAttributeValue()
312 bool AttributeList::GetNestedAttributeList(int id, in GetNestedAttributeList()
320 bool AttributeList::ConstGetNestedAttributeList( in ConstGetNestedAttributeList()
328 bool AttributeList::SetNestedAttributeHasAValue(int id) { in SetNestedAttributeHasAValue()
335 bool AttributeList::CreateNestedAttribute(int id, const char* id_string) { in CreateNestedAttribute()
347 bool AttributeList::GetRawAttributeValue(int id, in GetRawAttributeValue()
364 bool AttributeList::SetRawAttributeValue(int id, ByteString value) { in SetRawAttributeValue()
371 bool AttributeList::CreateRawAttribute(int id, const char* id_string) { in CreateRawAttribute()
380 bool AttributeList::GetAttributeAsString(int id, std::string* value) const { in GetAttributeAsString()
388 NetlinkAttribute* AttributeList::GetAttribute(int id) const { in GetAttribute()