Home
last modified time | relevance | path

Searched refs:GetNewField (Results 1 – 15 of 15) sorted by relevance

/system/bt/gd/packet/parser/
Dchecksum_def.h30 virtual PacketField* GetNewField(const std::string& name, ParseLocation loc) const override;
Dchecksum_def.cc24 PacketField* ChecksumDef::GetNewField(const std::string& name, ParseLocation loc) const { in GetNewField() function in ChecksumDef
Dstruct_parser_generator.h35 : struct_def_(s), packet_field_(s->GetNewField(s->name_ + "_parse", ParseLocation())) {} in TreeNode()
Denum_def.h31 virtual PacketField* GetNewField(const std::string& name, ParseLocation loc) const;
Dtype_def.h46 virtual PacketField* GetNewField(const std::string& name, ParseLocation loc) const = 0;
Dcustom_field_def.h32 virtual PacketField* GetNewField(const std::string& name, ParseLocation loc) const override;
Denum_def.cc40 PacketField* EnumDef::GetNewField(const std::string& name, ParseLocation loc) const { in GetNewField() function in EnumDef
Dstruct_def.h33 PacketField* GetNewField(const std::string& name, ParseLocation loc) const;
Dcustom_field_def.cc30 PacketField* CustomFieldDef::GetNewField(const std::string& name, ParseLocation loc) const { in GetNewField() function in CustomFieldDef
Dpacket_def.h32 PacketField* GetNewField(const std::string& name, ParseLocation loc) const;
Dstruct_def.cc26 PacketField* StructDef::GetNewField(const std::string& name, ParseLocation loc) const { in GetNewField() function in StructDef
Dlanguage_y.yy608 $$ = type_def->GetNewField(*$1, LOC);
Dpacket_def.cc29 PacketField* PacketDef::GetNewField(const std::string&, ParseLocation) const { in GetNewField() function in PacketDef
/system/bt/gd/packet/parser/fields/
Darray_field.cc36 : PacketField(name, loc), element_field_(type_def->GetNewField("val", loc)), in ArrayField()
Dvector_field.cc36 : PacketField(name, loc), element_field_(type_def->GetNewField("val", loc)), in VectorField()