Searched refs:FieldList (Results 1 – 9 of 9) sorted by relevance
/system/bt/gd/packet/parser/ |
D | field_list.h | 29 class FieldList { 31 FieldList() = default; 33 FieldList(std::vector<PacketField*> fields) { in FieldList() function 40 FieldList(Iterator begin, Iterator end) { in FieldList() function 70 FieldList GetFieldsBeforePayloadOrBody() const { in GetFieldsBeforePayloadOrBody() 71 FieldList ret; in GetFieldsBeforePayloadOrBody() 83 FieldList GetFieldsAfterPayloadOrBody() const { in GetFieldsAfterPayloadOrBody() 94 return FieldList(it, end()); in GetFieldsAfterPayloadOrBody() 97 FieldList GetFieldsWithTypes(std::set<std::string> field_types) const { in GetFieldsWithTypes() 98 FieldList ret; in GetFieldsWithTypes() [all …]
|
D | parent_def.h | 32 ParentDef(std::string name, FieldList fields); 33 ParentDef(std::string name, FieldList fields, ParentDef* parent); 57 FieldList GetParamList() const; 81 FieldList fields_;
|
D | packet_def.h | 29 PacketDef(std::string name, FieldList fields); 30 PacketDef(std::string name, FieldList fields, PacketDef* parent); 56 FieldList GetParametersToValidate() const;
|
D | declarations.h | 68 void AddGroupDef(std::string name, FieldList* group_def) { in AddGroupDef() 76 FieldList* GetGroupDef(std::string name) { in GetGroupDef() 84 std::map<std::string, FieldList*> group_defs_;
|
D | struct_def.h | 30 StructDef(std::string name, FieldList fields); 31 StructDef(std::string name, FieldList fields, StructDef* parent);
|
D | packet_def.cc | 26 PacketDef::PacketDef(std::string name, FieldList fields) : ParentDef(name, fields, nullptr) {} in PacketDef() 27 PacketDef::PacketDef(std::string name, FieldList fields, PacketDef* parent) : ParentDef(name, field… in PacketDef() 400 FieldList params = GetParamList().GetFieldsWithoutTypes({ in GenTestingFromView() 512 FieldList PacketDef::GetParametersToValidate() const { in GetParametersToValidate() 513 FieldList params_to_validate; in GetParametersToValidate() 649 FieldList params_to_validate = GetParametersToValidate(); in GenBuilderParameterChecker() 694 FieldList parent_params; in GenBuilderConstructor() 730 FieldList saved_params; in GenBuilderConstructor() 752 FieldList params_to_validate = GetParametersToValidate(); in GenBuilderConstructor() 1275 FieldList params = GetParamList(); in GenRustBuilderTest()
|
D | struct_def.cc | 22 StructDef::StructDef(std::string name, FieldList fields) : StructDef(name, fields, nullptr) {} in StructDef() 23 StructDef::StructDef(std::string name, FieldList fields, StructDef* parent) in StructDef() 262 FieldList parent_params; in GenConstructor()
|
D | parent_def.cc | 22 ParentDef::ParentDef(std::string name, FieldList fields) : ParentDef(name, fields, nullptr) {} in ParentDef() 23 ParentDef::ParentDef(std::string name, FieldList fields, ParentDef* parent) in ParentDef() 235 FieldList ParentDef::GetParamList() const { in GetParamList() 236 FieldList params; in GetParamList() 499 FieldList parent_params = parent_->GetParamList().GetFieldsWithoutTypes({ in GenInstanceOf()
|
D | language_y.yy | 44 FieldList* packet_field_definitions; 418 $$ = new FieldList(); 423 $$ = new FieldList(); 427 FieldList reversed_fields(group_fields->rbegin(), group_fields->rend()); 444 FieldList reversed_fields(group_fields->rbegin(), group_fields->rend());
|