HomeSort by relevance Sort by last modified time
    Searched defs:TableStorage (Results 1 - 2 of 2) 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();

Completed in 120 milliseconds