Searched refs:GetNewField (Results 1 – 15 of 15) sorted by relevance
/system/bt/gd/packet/parser/ |
D | checksum_def.h | 30 virtual PacketField* GetNewField(const std::string& name, ParseLocation loc) const override;
|
D | checksum_def.cc | 24 PacketField* ChecksumDef::GetNewField(const std::string& name, ParseLocation loc) const { in GetNewField() function in ChecksumDef
|
D | struct_parser_generator.h | 35 : struct_def_(s), packet_field_(s->GetNewField(s->name_ + "_parse", ParseLocation())) {} in TreeNode()
|
D | enum_def.h | 31 virtual PacketField* GetNewField(const std::string& name, ParseLocation loc) const;
|
D | type_def.h | 46 virtual PacketField* GetNewField(const std::string& name, ParseLocation loc) const = 0;
|
D | custom_field_def.h | 32 virtual PacketField* GetNewField(const std::string& name, ParseLocation loc) const override;
|
D | enum_def.cc | 40 PacketField* EnumDef::GetNewField(const std::string& name, ParseLocation loc) const { in GetNewField() function in EnumDef
|
D | struct_def.h | 33 PacketField* GetNewField(const std::string& name, ParseLocation loc) const;
|
D | custom_field_def.cc | 30 PacketField* CustomFieldDef::GetNewField(const std::string& name, ParseLocation loc) const { in GetNewField() function in CustomFieldDef
|
D | packet_def.h | 32 PacketField* GetNewField(const std::string& name, ParseLocation loc) const;
|
D | struct_def.cc | 26 PacketField* StructDef::GetNewField(const std::string& name, ParseLocation loc) const { in GetNewField() function in StructDef
|
D | language_y.yy | 608 $$ = type_def->GetNewField(*$1, LOC);
|
D | packet_def.cc | 29 PacketField* PacketDef::GetNewField(const std::string&, ParseLocation) const { in GetNewField() function in PacketDef
|
/system/bt/gd/packet/parser/fields/ |
D | array_field.cc | 36 : PacketField(name, loc), element_field_(type_def->GetNewField("val", loc)), in ArrayField()
|
D | vector_field.cc | 36 : PacketField(name, loc), element_field_(type_def->GetNewField("val", loc)), in VectorField()
|