/external/bcc/src/cc/includes/ |
D | table_desc.h | 43 class TableDesc { 45 TableDesc(const TableDesc &that) in TableDesc() function 64 TableDesc() in TableDesc() function 73 TableDesc(const std::string &name, FileDesc &&fd, int type, size_t key_size, in TableDesc() function 84 TableDesc(TableDesc &&that) = default; 86 TableDesc &operator=(TableDesc &&that) = default; 87 TableDesc &operator=(const TableDesc &that) = delete; 89 TableDesc dup() const { return TableDesc(*this); } in dup() 116 virtual void Visit(TableDesc &desc, clang::ASTContext &C, clang::QualType key_type,
|
D | table_storage.h | 66 typedef std::pair<const std::string, TableDesc> value_type; 94 bool Insert(const Path &path, TableDesc &&desc); 99 void VisitMapType(TableDesc &desc, clang::ASTContext &C, clang::QualType key_type,
|
D | table_storage_impl.h | 25 typedef std::pair<const std::string, TableDesc> value_type; 42 virtual bool Insert(const std::string &name, TableDesc &&desc) = 0;
|
D | bpf_module.h | 58 class TableDesc; variable 167 std::vector<TableDesc *> tables_;
|
/external/bcc/src/cc/ |
D | table_desc.h | 43 class TableDesc { 45 TableDesc(const TableDesc &that) in TableDesc() function 64 TableDesc() in TableDesc() function 73 TableDesc(const std::string &name, FileDesc &&fd, int type, size_t key_size, in TableDesc() function 84 TableDesc(TableDesc &&that) = default; 86 TableDesc &operator=(TableDesc &&that) = default; 87 TableDesc &operator=(const TableDesc &that) = delete; 89 TableDesc dup() const { return TableDesc(*this); } in dup() 116 virtual void Visit(TableDesc &desc, clang::ASTContext &C, clang::QualType key_type,
|
D | shared_table.cc | 34 std::map<string, TableDesc>::iterator it_; 37 explicit iterator(const std::map<string, TableDesc>::iterator &it) : it_(it) {} in iterator() 49 virtual bool Insert(const string &name, TableDesc &&desc) override; 58 static std::map<string, TableDesc> tables_; 69 bool SharedTableStorage::Insert(const string &name, TableDesc &&desc) { in Insert() 106 std::map<string, TableDesc> SharedTableStorage::tables_;
|
D | table_storage.h | 66 typedef std::pair<const std::string, TableDesc> value_type; 94 bool Insert(const Path &path, TableDesc &&desc); 99 void VisitMapType(TableDesc &desc, clang::ASTContext &C, clang::QualType key_type,
|
D | table_storage_impl.h | 25 typedef std::pair<const std::string, TableDesc> value_type; 42 virtual bool Insert(const std::string &name, TableDesc &&desc) = 0;
|
D | bpffs_table.cc | 38 virtual bool Insert(const string &name, TableDesc &&desc) override; 53 bool BpfFsTableStorage::Insert(const string &name, TableDesc &&desc) { return false; } in Insert()
|
D | table_storage.cc | 37 bool TableStorage::Insert(const Path &path, TableDesc &&desc) { in Insert() 55 void TableStorage::VisitMapType(TableDesc &desc, clang::ASTContext &C, clang::QualType key_type, in VisitMapType()
|
D | bpf_module.cc | 228 TableDesc &table = it->second; in annotate_light() 457 TableDesc &table = it->second; in load_maps() 840 const TableDesc &desc = *tables_[id]; in table_key_printf() 852 const TableDesc &desc = *tables_[id]; in table_leaf_printf() 864 const TableDesc &desc = *tables_[id]; in table_key_scanf() 876 const TableDesc &desc = *tables_[id]; in table_leaf_scanf()
|
D | bpf_module.h | 58 class TableDesc; variable 167 std::vector<TableDesc *> tables_;
|
D | json_map_decl_visitor.cc | 181 virtual void Visit(TableDesc &desc, clang::ASTContext &C, clang::QualType key_type, in Visit()
|
D | bpf_module_rw_engine.cc | 398 TableDesc &table = it->second; in annotate()
|
/external/bcc/src/cc/api/ |
D | BPFTable.h | 59 explicit BPFQueueStackTableBase(const TableDesc& desc) : desc(desc) {} in BPFQueueStackTableBase() 74 const TableDesc& desc; 111 explicit BPFTableBase(const TableDesc& desc) : desc(desc) {} in BPFTableBase() 131 const TableDesc& desc; 136 BPFTable(const TableDesc& desc); 168 explicit BPFQueueStackTable(const TableDesc& desc) : BPFQueueStackTableBase(desc) { in BPFQueueStackTable() 197 BPFArrayTable(const TableDesc& desc) : BPFTableBase<int, ValueType>(desc) { in BPFArrayTable() 237 BPFPercpuArrayTable(const TableDesc& desc) in BPFPercpuArrayTable() 268 explicit BPFHashTable(const TableDesc& desc) in BPFHashTable() 338 explicit BPFPercpuHashTable(const TableDesc& desc) in BPFPercpuHashTable() [all …]
|
D | BPFTable.cc | 40 BPFTable::BPFTable(const TableDesc& desc) : BPFTableBase<void, void>(desc) {} in BPFTable() 251 BPFStackTable::BPFStackTable(const TableDesc& desc, bool use_debug_file, in BPFStackTable() 329 BPFStackBuildIdTable::BPFStackBuildIdTable(const TableDesc& desc, bool use_debug_file, in BPFStackBuildIdTable() 393 BPFPerfBuffer::BPFPerfBuffer(const TableDesc& desc) in BPFPerfBuffer() 531 BPFPerfEventArray::BPFPerfEventArray(const TableDesc& desc) in BPFPerfEventArray() 611 BPFProgTable::BPFProgTable(const TableDesc& desc) in BPFProgTable() 630 BPFCgroupArray::BPFCgroupArray(const TableDesc& desc) in BPFCgroupArray() 659 BPFDevmapTable::BPFDevmapTable(const TableDesc& desc) in BPFDevmapTable() 686 BPFXskmapTable::BPFXskmapTable(const TableDesc& desc) in BPFXskmapTable() 713 BPFSockmapTable::BPFSockmapTable(const TableDesc& desc) in BPFSockmapTable() [all …]
|
/external/bcc/examples/cpp/ |
D | UseExternalMap.cc | 93 ebpf::TableDesc table_desc("control", ebpf::FileDesc(ctrl_map_fd), in main()
|
/external/bcc/src/cc/frontends/clang/ |
D | b_frontend_action.cc | 1397 TableDesc table; in VisitVarDecl()
|