Searched refs:FieldList (Results 1 – 9 of 9) sorted by relevance
/packages/modules/Bluetooth/system/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 | 34 ParentDef(std::string name, FieldList fields); 35 ParentDef(std::string name, FieldList fields, ParentDef* parent); 59 FieldList GetParamList() const; 83 FieldList fields_;
|
D | packet_def.h | 29 PacketDef(std::string name, FieldList fields); 30 PacketDef(std::string name, FieldList fields, PacketDef* parent); 57 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 | packet_def.cc | 27 PacketDef::PacketDef(std::string name, FieldList fields) : ParentDef(name, fields, nullptr) {} in PacketDef() 28 PacketDef::PacketDef(std::string name, FieldList fields, PacketDef* parent) : ParentDef(name, field… in PacketDef() 441 FieldList params = GetParamList().GetFieldsWithoutTypes({ in GenTestingFromView() 557 FieldList PacketDef::GetParametersToValidate() const { in GetParametersToValidate() 558 FieldList params_to_validate; in GetParametersToValidate() 692 FieldList params_to_validate = GetParametersToValidate(); in GenBuilderParameterChecker() 737 FieldList parent_params; in GenBuilderConstructor() 773 FieldList saved_params; in GenBuilderConstructor() 795 FieldList params_to_validate = GetParametersToValidate(); in GenBuilderConstructor()
|
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() 264 FieldList parent_params; in GenDefaultConstructor() 295 FieldList parent_params; in GenConstructor() 296 FieldList params = GetParamList().GetFieldsWithoutTypes({ in GenConstructor()
|
D | struct_def.h | 30 StructDef(std::string name, FieldList fields); 31 StructDef(std::string name, FieldList fields, StructDef* parent);
|
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() 497 FieldList parent_params = parent_->GetParamList().GetFieldsWithoutTypes({ in GenInstanceOf()
|
D | language_y.yy | 45 FieldList* packet_field_definitions; 419 $$ = new FieldList(); 424 $$ = new FieldList(); 428 FieldList reversed_fields(group_fields->rbegin(), group_fields->rend()); 445 FieldList reversed_fields(group_fields->rbegin(), group_fields->rend());
|