Lines Matching refs:tables_
138 for (auto &v : tables_) { in ~BPFModule()
505 tables_.push_back(&it->second); in annotate_light()
522 tables_.push_back(&it->second); in annotate()
811 size_t BPFModule::num_tables() const { return tables_.size(); } in num_tables()
824 if (id >= tables_.size()) in table_fd()
826 return tables_[id]->fd; in table_fd()
834 if (id >= tables_.size()) in table_type()
836 return tables_[id]->type; in table_type()
844 if (id >= tables_.size()) in table_max_entries()
846 return tables_[id]->max_entries; in table_max_entries()
854 if (id >= tables_.size()) in table_flags()
856 return tables_[id]->flags; in table_flags()
860 if (id >= tables_.size()) in table_name()
862 return tables_[id]->name.c_str(); in table_name()
867 if (id >= tables_.size()) in table_key_desc()
869 return tables_[id]->key_desc.c_str(); in table_key_desc()
878 if (id >= tables_.size()) in table_leaf_desc()
880 return tables_[id]->leaf_desc.c_str(); in table_leaf_desc()
887 if (id >= tables_.size()) in table_key_size()
889 return tables_[id]->key_size; in table_key_size()
896 if (id >= tables_.size()) in table_leaf_size()
898 return tables_[id]->leaf_size; in table_leaf_size()
914 if (id >= tables_.size()) in table_key_printf()
916 const TableDesc &desc = *tables_[id]; in table_key_printf()
926 if (id >= tables_.size()) in table_leaf_printf()
928 const TableDesc &desc = *tables_[id]; in table_leaf_printf()
938 if (id >= tables_.size()) in table_key_scanf()
940 const TableDesc &desc = *tables_[id]; in table_key_scanf()
950 if (id >= tables_.size()) in table_leaf_scanf()
952 const TableDesc &desc = *tables_[id]; in table_leaf_scanf()