Searched refs:id_string (Results 1 – 4 of 4) sorted by relevance
/system/connectivity/shill/net/ |
D | netlink_attribute.h | 58 NetlinkAttribute(int id, const char* id_string, 72 virtual const char* id_string() const { return id_string_.c_str(); } in id_string() function 150 NetlinkU8Attribute(int id, const char* id_string) in NetlinkU8Attribute() argument 151 : NetlinkAttribute(id, id_string, kType, kMyTypeString) {} in NetlinkU8Attribute() 168 NetlinkU16Attribute(int id, const char* id_string) in NetlinkU16Attribute() argument 169 : NetlinkAttribute(id, id_string, kType, kMyTypeString) {} in NetlinkU16Attribute() 187 NetlinkU32Attribute(int id, const char* id_string) in NetlinkU32Attribute() argument 188 : NetlinkAttribute(id, id_string, kType, kMyTypeString) {} in NetlinkU32Attribute() 205 NetlinkU64Attribute(int id, const char* id_string) in NetlinkU64Attribute() argument 206 : NetlinkAttribute(id, id_string, kType, kMyTypeString) {} in NetlinkU64Attribute() [all …]
|
D | attribute_list.cc | 144 bool AttributeList::CreateU8Attribute(int id, const char* id_string) { in CreateU8Attribute() argument 150 new NetlinkU8Attribute(id, id_string)); in CreateU8Attribute() 171 bool AttributeList::CreateU16Attribute(int id, const char* id_string) { in CreateU16Attribute() argument 177 new NetlinkU16Attribute(id, id_string)); in CreateU16Attribute() 197 bool AttributeList::CreateU32Attribute(int id, const char* id_string) { in CreateU32Attribute() argument 203 new NetlinkU32Attribute(id, id_string)); in CreateU32Attribute() 223 bool AttributeList::CreateU64Attribute(int id, const char* id_string) { in CreateU64Attribute() argument 229 new NetlinkU64Attribute(id, id_string)); in CreateU64Attribute() 249 bool AttributeList::CreateFlagAttribute(int id, const char* id_string) { in CreateFlagAttribute() argument 255 new NetlinkFlagAttribute(id, id_string)); in CreateFlagAttribute() [all …]
|
D | attribute_list.h | 93 bool CreateU8Attribute(int id, const char* id_string); 97 bool CreateU16Attribute(int id, const char* id_string); 101 bool CreateU32Attribute(int id, const char* id_string); 105 bool CreateU64Attribute(int id, const char* id_string); 109 bool CreateFlagAttribute(int id, const char* id_string); 117 bool CreateStringAttribute(int id, const char* id_string); 119 bool CreateSsidAttribute(int id, const char* id_string); 123 bool CreateNestedAttribute(int id, const char* id_string); 129 bool CreateRawAttribute(int id, const char* id_string);
|
D | netlink_attribute.cc | 45 const char* id_string, in NetlinkAttribute() argument 48 : has_a_value_(false), id_(id), id_string_(id_string), datatype_(datatype), in NetlinkAttribute() 418 id_string(), in HeaderToPrint() 451 LOG(ERROR) << "Invalid |input| for " << id_string() << " of type " in InitFromValue() 462 VLOG(7) << "U8 attribute " << id_string() in GetU8Value() 504 LOG(ERROR) << "Invalid |input| for " << id_string() << " of type " in InitFromValue() 516 VLOG(7) << "U16 attribute " << id_string() in GetU16Value() 558 LOG(ERROR) << "Invalid |input| for " << id_string() << " of type " in InitFromValue() 570 VLOG(7) << "U32 attribute " << id_string() in GetU32Value() 612 LOG(ERROR) << "Invalid |input| for " << id_string() << " of type " in InitFromValue() [all …]
|