• Home
  • Raw
  • Download

Lines Matching refs:id

41     int id, AttributeList::NewFromIdMethod factory) {  in CreateAttribute()  argument
42 if (ContainsKey(attributes_, id)) { in CreateAttribute()
43 VLOG(7) << "Trying to re-add attribute " << id << ", not overwriting"; in CreateAttribute()
46 attributes_[id] = AttributePointer(factory.Run(id)); in CreateAttribute()
50 bool AttributeList::CreateControlAttribute(int id) { in CreateControlAttribute() argument
52 id, base::Bind(&NetlinkAttribute::NewControlAttributeFromId)); in CreateControlAttribute()
56 int id, NetlinkMessage::MessageContext context) { in CreateNl80211Attribute() argument
58 id, base::Bind(&NetlinkAttribute::NewNl80211AttributeFromId, context)); in CreateNl80211Attribute()
63 int id, const ByteString& value) { in CreateAndInitAttribute() argument
64 if (!CreateAttribute(id, factory)) { in CreateAndInitAttribute()
67 return InitAttributeFromValue(id, value); in CreateAndInitAttribute()
70 bool AttributeList::InitAttributeFromValue(int id, const ByteString& value) { in InitAttributeFromValue() argument
71 NetlinkAttribute* attribute = GetAttribute(id); in InitAttributeFromValue()
137 bool AttributeList::GetU8AttributeValue(int id, uint8_t* value) const { in GetU8AttributeValue() argument
138 NetlinkAttribute* attribute = GetAttribute(id); in GetU8AttributeValue()
144 bool AttributeList::CreateU8Attribute(int id, const char* id_string) { in CreateU8Attribute() argument
145 if (ContainsKey(attributes_, id)) { in CreateU8Attribute()
146 LOG(ERROR) << "Trying to re-add attribute: " << id; in CreateU8Attribute()
149 attributes_[id] = AttributePointer( in CreateU8Attribute()
150 new NetlinkU8Attribute(id, id_string)); in CreateU8Attribute()
154 bool AttributeList::SetU8AttributeValue(int id, uint8_t value) { in SetU8AttributeValue() argument
155 NetlinkAttribute* attribute = GetAttribute(id); in SetU8AttributeValue()
164 bool AttributeList::GetU16AttributeValue(int id, uint16_t* value) const { in GetU16AttributeValue() argument
165 NetlinkAttribute* attribute = GetAttribute(id); in GetU16AttributeValue()
171 bool AttributeList::CreateU16Attribute(int id, const char* id_string) { in CreateU16Attribute() argument
172 if (ContainsKey(attributes_, id)) { in CreateU16Attribute()
173 LOG(ERROR) << "Trying to re-add attribute: " << id; in CreateU16Attribute()
176 attributes_[id] = AttributePointer( in CreateU16Attribute()
177 new NetlinkU16Attribute(id, id_string)); in CreateU16Attribute()
181 bool AttributeList::SetU16AttributeValue(int id, uint16_t value) { in SetU16AttributeValue() argument
182 NetlinkAttribute* attribute = GetAttribute(id); in SetU16AttributeValue()
190 bool AttributeList::GetU32AttributeValue(int id, uint32_t* value) const { in GetU32AttributeValue() argument
191 NetlinkAttribute* attribute = GetAttribute(id); in GetU32AttributeValue()
197 bool AttributeList::CreateU32Attribute(int id, const char* id_string) { in CreateU32Attribute() argument
198 if (ContainsKey(attributes_, id)) { in CreateU32Attribute()
199 LOG(ERROR) << "Trying to re-add attribute: " << id; in CreateU32Attribute()
202 attributes_[id] = AttributePointer( in CreateU32Attribute()
203 new NetlinkU32Attribute(id, id_string)); in CreateU32Attribute()
207 bool AttributeList::SetU32AttributeValue(int id, uint32_t value) { in SetU32AttributeValue() argument
208 NetlinkAttribute* attribute = GetAttribute(id); in SetU32AttributeValue()
216 bool AttributeList::GetU64AttributeValue(int id, uint64_t* value) const { in GetU64AttributeValue() argument
217 NetlinkAttribute* attribute = GetAttribute(id); in GetU64AttributeValue()
223 bool AttributeList::CreateU64Attribute(int id, const char* id_string) { in CreateU64Attribute() argument
224 if (ContainsKey(attributes_, id)) { in CreateU64Attribute()
225 LOG(ERROR) << "Trying to re-add attribute: " << id; in CreateU64Attribute()
228 attributes_[id] = AttributePointer( in CreateU64Attribute()
229 new NetlinkU64Attribute(id, id_string)); in CreateU64Attribute()
233 bool AttributeList::SetU64AttributeValue(int id, uint64_t value) { in SetU64AttributeValue() argument
234 NetlinkAttribute* attribute = GetAttribute(id); in SetU64AttributeValue()
242 bool AttributeList::GetFlagAttributeValue(int id, bool* value) const { in GetFlagAttributeValue() argument
243 NetlinkAttribute* attribute = GetAttribute(id); in GetFlagAttributeValue()
249 bool AttributeList::CreateFlagAttribute(int id, const char* id_string) { in CreateFlagAttribute() argument
250 if (ContainsKey(attributes_, id)) { in CreateFlagAttribute()
251 LOG(ERROR) << "Trying to re-add attribute: " << id; in CreateFlagAttribute()
254 attributes_[id] = AttributePointer( in CreateFlagAttribute()
255 new NetlinkFlagAttribute(id, id_string)); in CreateFlagAttribute()
259 bool AttributeList::SetFlagAttributeValue(int id, bool value) { in SetFlagAttributeValue() argument
260 NetlinkAttribute* attribute = GetAttribute(id); in SetFlagAttributeValue()
266 bool AttributeList::IsFlagAttributeTrue(int id) const { in IsFlagAttributeTrue()
268 if (!GetFlagAttributeValue(id, &flag)) { in IsFlagAttributeTrue()
276 bool AttributeList::GetStringAttributeValue(int id, string* value) const { in GetStringAttributeValue() argument
277 NetlinkAttribute* attribute = GetAttribute(id); in GetStringAttributeValue()
283 bool AttributeList::CreateStringAttribute(int id, const char* id_string) { in CreateStringAttribute() argument
284 if (ContainsKey(attributes_, id)) { in CreateStringAttribute()
285 LOG(ERROR) << "Trying to re-add attribute: " << id; in CreateStringAttribute()
288 attributes_[id] = AttributePointer( in CreateStringAttribute()
289 new NetlinkStringAttribute(id, id_string)); in CreateStringAttribute()
293 bool AttributeList::CreateSsidAttribute(int id, const char* id_string) { in CreateSsidAttribute() argument
294 if (ContainsKey(attributes_, id)) { in CreateSsidAttribute()
295 LOG(ERROR) << "Trying to re-add attribute: " << id; in CreateSsidAttribute()
298 attributes_[id] = AttributePointer( in CreateSsidAttribute()
299 new NetlinkSsidAttribute(id, id_string)); in CreateSsidAttribute()
303 bool AttributeList::SetStringAttributeValue(int id, string value) { in SetStringAttributeValue() argument
304 NetlinkAttribute* attribute = GetAttribute(id); in SetStringAttributeValue()
312 bool AttributeList::GetNestedAttributeList(int id, in GetNestedAttributeList() argument
314 NetlinkAttribute* attribute = GetAttribute(id); in GetNestedAttributeList()
321 int id, AttributeListConstRefPtr* value) const { in ConstGetNestedAttributeList() argument
322 NetlinkAttribute* attribute = GetAttribute(id); in ConstGetNestedAttributeList()
328 bool AttributeList::SetNestedAttributeHasAValue(int id) { in SetNestedAttributeHasAValue() argument
329 NetlinkAttribute* attribute = GetAttribute(id); in SetNestedAttributeHasAValue()
335 bool AttributeList::CreateNestedAttribute(int id, const char* id_string) { in CreateNestedAttribute() argument
336 if (ContainsKey(attributes_, id)) { in CreateNestedAttribute()
337 LOG(ERROR) << "Trying to re-add attribute: " << id; in CreateNestedAttribute()
340 attributes_[id] = AttributePointer( in CreateNestedAttribute()
341 new NetlinkNestedAttribute(id, id_string)); in CreateNestedAttribute()
347 bool AttributeList::GetRawAttributeValue(int id, in GetRawAttributeValue() argument
349 NetlinkAttribute* attribute = GetAttribute(id); in GetRawAttributeValue()
364 bool AttributeList::SetRawAttributeValue(int id, ByteString value) { in SetRawAttributeValue() argument
365 NetlinkAttribute* attribute = GetAttribute(id); in SetRawAttributeValue()
371 bool AttributeList::CreateRawAttribute(int id, const char* id_string) { in CreateRawAttribute() argument
372 if (ContainsKey(attributes_, id)) { in CreateRawAttribute()
373 LOG(ERROR) << "Trying to re-add attribute: " << id; in CreateRawAttribute()
376 attributes_[id] = AttributePointer(new NetlinkRawAttribute(id, id_string)); in CreateRawAttribute()
380 bool AttributeList::GetAttributeAsString(int id, std::string* value) const { in GetAttributeAsString() argument
381 NetlinkAttribute* attribute = GetAttribute(id); in GetAttributeAsString()
388 NetlinkAttribute* AttributeList::GetAttribute(int id) const { in GetAttribute()
390 i = attributes_.find(id); in GetAttribute()