HomeSort by relevance Sort by last modified time
    Searched refs:TableStorage (Results 1 - 18 of 18) sorted by null

  /external/bcc/src/cc/
table_storage.cc 31 TableStorage::TableStorage() {}
32 TableStorage::~TableStorage() {}
33 void TableStorage::Init(unique_ptr<TableStorageImpl> impl) { impl_ = move(impl); }
34 bool TableStorage::Find(const Path &path, TableStorage::iterator &result) const {
37 bool TableStorage::Insert(const Path &path, TableDesc &&desc) {
40 bool TableStorage::Delete(const Path &path) { return impl_->Delete(path.to_string()); }
41 size_t TableStorage::DeletePrefix(const Path &path)
    [all...]
table_storage.h 53 class TableStorage {
59 friend class TableStorage;
86 TableStorage();
87 ~TableStorage();
90 bool Find(const Path &path, TableStorage::iterator &result) const;
108 std::unique_ptr<TableStorage> createSharedTableStorage();
109 std::unique_ptr<TableStorage> createBpfFsTableStorage();
bpffs_table.cc 37 virtual bool Find(const string &name, TableStorage::iterator &result) const override;
49 bool BpfFsTableStorage::Find(const string &name, TableStorage::iterator &result) const {
69 unique_ptr<TableStorage> createBpfFsTableStorage() {
70 auto t = make_unique<TableStorage>();
shared_table.cc 48 virtual bool Find(const string &name, TableStorage::iterator &result) const override;
61 bool SharedTableStorage::Find(const string &name, TableStorage::iterator &result) const {
65 result = TableStorage::iterator(make_unique<iterator>(it));
108 unique_ptr<TableStorage> createSharedTableStorage() {
109 auto t = make_unique<TableStorage>();
table_storage_impl.h 41 virtual bool Find(const std::string &name, TableStorage::iterator &result) const = 0;
bpf_module.h 52 class TableStorage;
79 BPFModule(unsigned flags, TableStorage *ts = nullptr, bool rw_engine_enabled = true,
122 TableStorage &table_storage() { return *ts_; }
145 TableStorage *ts_;
146 std::unique_ptr<TableStorage> local_ts_;
bpf_module.cc 102 BPFModule::BPFModule(unsigned flags, TableStorage *ts, bool rw_engine_enabled,
  /external/bcc/src/cc/frontends/b/
loader.h 41 TableStorage &ts, const std::string &id, const std::string &maps_ns);
loader.cc 36 TableStorage &ts, const string &id, const std::string &maps_ns) {
codegen_llvm.h 46 class TableStorage;
68 STATUS_RETURN visit(Node *n, TableStorage &ts, const std::string &id,
codegen_llvm.cc     [all...]
  /external/bcc/src/cc/frontends/clang/
loader.h 54 int parse(std::unique_ptr<llvm::Module> *mod, TableStorage &ts,
60 int do_compile(std::unique_ptr<llvm::Module> *mod, TableStorage &ts,
b_frontend_action.h 153 BFrontendAction(llvm::raw_ostream &os, unsigned flags, TableStorage &ts,
166 TableStorage &table_storage() const { return ts_; }
175 TableStorage &ts_;
loader.cc 107 int ClangLoader::parse(unique_ptr<llvm::Module> *mod, TableStorage &ts,
254 int ClangLoader::do_compile(unique_ptr<llvm::Module> *mod, TableStorage &ts,
b_frontend_action.cc 760 TableStorage::iterator desc;
    [all...]
  /external/bcc/src/cc/api/
BPF.h 49 explicit BPF(unsigned int flag = 0, TableStorage* ts = nullptr,
100 TableStorage::iterator it;
108 TableStorage::iterator it;
117 TableStorage::iterator it;
125 TableStorage::iterator it;
134 TableStorage::iterator it;
BPF.cc 473 TableStorage::iterator it;
497 TableStorage::iterator it;
624 TableStorage::iterator it;
631 TableStorage::iterator it;
638 TableStorage::iterator it;
646 TableStorage::iterator it;
  /external/bcc/examples/cpp/
UseExternalMap.cc 87 // populate control map into TableStorage
88 std::unique_ptr<ebpf::TableStorage> local_ts =

Completed in 382 milliseconds