Searched refs:StructField (Results 1 – 5 of 5) sorted by relevance
/system/bt/gd/packet/parser/fields/ |
D | struct_field.cc | 20 const std::string StructField::kFieldType = "StructField"; 22 StructField::StructField(std::string name, std::string type_name, Size size, ParseLocation loc) in StructField() function in StructField 25 const std::string& StructField::GetFieldType() const { in GetFieldType() 26 return StructField::kFieldType; in GetFieldType() 29 Size StructField::GetSize() const { in GetSize() 33 Size StructField::GetBuilderSize() const { in GetBuilderSize() 38 std::string StructField::GetDataType() const { in GetDataType() 42 void StructField::GenExtractor(std::ostream& s, int, bool) const { in GenExtractor() 47 std::string StructField::GetGetterFunctionName() const { in GetGetterFunctionName() 53 void StructField::GenGetter(std::ostream& s, Size start_offset, Size end_offset) const { in GenGetter() [all …]
|
D | struct_field.h | 22 class StructField : public PacketField { 24 StructField(std::string name, std::string type_name, Size size, ParseLocation loc);
|
/system/bt/gd/packet/parser/ |
D | packet_def.cc | 893 StructField::kFieldType, in GenRustStructImpls() 1286 if (element_field->GetFieldType() == StructField::kFieldType) { in GenRustBuilderTest() 1291 } else if (param->GetFieldType() == StructField::kFieldType) { in GenRustBuilderTest()
|
D | struct_def.cc | 30 return new StructField(name, name_, total_size_, loc); in GetNewField()
|
D | parent_def.cc | 244 StructField::kFieldType, in GetParamList()
|