Home
last modified time | relevance | path

Searched refs:TableDesc (Results 1 – 18 of 18) sorted by relevance

/external/bcc/src/cc/includes/
Dtable_desc.h43 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,
Dtable_storage.h66 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,
Dtable_storage_impl.h25 typedef std::pair<const std::string, TableDesc> value_type;
42 virtual bool Insert(const std::string &name, TableDesc &&desc) = 0;
Dbpf_module.h58 class TableDesc; variable
167 std::vector<TableDesc *> tables_;
/external/bcc/src/cc/
Dtable_desc.h43 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,
Dshared_table.cc34 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_;
Dtable_storage.h66 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,
Dtable_storage_impl.h25 typedef std::pair<const std::string, TableDesc> value_type;
42 virtual bool Insert(const std::string &name, TableDesc &&desc) = 0;
Dbpffs_table.cc38 virtual bool Insert(const string &name, TableDesc &&desc) override;
53 bool BpfFsTableStorage::Insert(const string &name, TableDesc &&desc) { return false; } in Insert()
Dtable_storage.cc37 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()
Dbpf_module.cc228 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()
Dbpf_module.h58 class TableDesc; variable
167 std::vector<TableDesc *> tables_;
Djson_map_decl_visitor.cc181 virtual void Visit(TableDesc &desc, clang::ASTContext &C, clang::QualType key_type, in Visit()
Dbpf_module_rw_engine.cc398 TableDesc &table = it->second; in annotate()
/external/bcc/src/cc/api/
DBPFTable.h59 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 …]
DBPFTable.cc40 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/
DUseExternalMap.cc93 ebpf::TableDesc table_desc("control", ebpf::FileDesc(ctrl_map_fd), in main()
/external/bcc/src/cc/frontends/clang/
Db_frontend_action.cc1397 TableDesc table; in VisitVarDecl()