Home
last modified time | relevance | path

Searched refs:tables_ (Results 1 – 15 of 15) sorted by relevance

/external/bcc/src/cc/
Dshared_table.cc58 static std::map<string, TableDesc> tables_; member in ebpf::SharedTableStorage
62 auto it = tables_.find(name); in Find()
63 if (it == tables_.end()) in Find()
70 auto it = tables_.find(name); in Insert()
71 if (it != tables_.end()) in Insert()
73 tables_[name] = std::move(desc); in Insert()
78 auto it = tables_.find(name); in Delete()
79 if (it == tables_.end()) in Delete()
81 tables_.erase(it); in Delete()
86 return make_unique<iterator>(tables_.begin()); in begin()
[all …]
Dbpf_module.cc138 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()
[all …]
Dbpf_module.h136 std::vector<TableDesc *> tables_; variable
/external/webrtc/webrtc/system_wrappers/source/
Ddata_log.cc322 tables_(), in DataLogImpl()
332 for (TableMap::iterator it = tables_.begin(); it != tables_.end();) { in ~DataLogImpl()
335 tables_.erase(it++); in ~DataLogImpl()
374 if (tables_.count(table_name) > 0) in AddTable()
376 tables_[table_name] = new LogTable(); in AddTable()
377 if (tables_[table_name]->CreateLogFile(table_name + ".txt") == -1) in AddTable()
386 if (tables_.count(table_name) == 0) in AddColumn()
388 return tables_[table_name]->AddColumn(column_name, multi_value_length); in AddColumn()
395 assert(tables_.count(table_name) > 0); in InsertCell()
396 if (tables_.count(table_name) == 0) in InsertCell()
[all …]
/external/protobuf/src/google/protobuf/
Ddescriptor.cc804 pool->underlay_->tables_->FindByNameHelper(pool->underlay_, name); in FindByNameHelper()
882 tables_.get()); in FindEnumValueByNumberCreatingIfUnknown()
1048 tables_(new Tables), in DescriptorPool()
1059 tables_(new Tables), in DescriptorPool()
1070 tables_(new Tables), in DescriptorPool()
1096 return tables_->FindFile(filename) != NULL; in InternalIsFileLoaded()
1176 tables_->known_bad_symbols_.clear(); in FindFileByName()
1177 tables_->known_bad_files_.clear(); in FindFileByName()
1178 const FileDescriptor* result = tables_->FindFile(name); in FindFileByName()
1185 result = tables_->FindFile(name); in FindFileByName()
[all …]
Ddescriptor.h1311 const FileDescriptorTables* tables_; variable
1620 google::protobuf::scoped_ptr<Tables> tables_; variable
/external/v8/src/
Dcompilation-cache.cc42 if (tables_[generation]->IsUndefined(isolate())) { in GetTable()
44 tables_[generation] = *result; in GetTable()
47 CompilationCacheTable::cast(tables_[generation]); in GetTable()
56 if (!tables_[0]->IsUndefined(isolate())) { in Age()
57 CompilationCacheTable::cast(tables_[0])->Age(); in Age()
64 tables_[i] = tables_[i - 1]; in Age()
68 tables_[0] = ReadOnlyRoots(isolate()).undefined_value(); in Age()
72 v->VisitRootPointers(Root::kCompilationCache, nullptr, &tables_[0], in Iterate()
73 &tables_[generations_]); in Iterate()
77 MemsetPointer(tables_, ReadOnlyRoots(isolate()).undefined_value(), in Clear()
Dcompilation-cache.h29 tables_ = NewArray<Object*>(generations); in CompilationSubCache()
32 ~CompilationSubCache() { DeleteArray(tables_); } in ~CompilationSubCache()
46 tables_[kFirstGeneration] = *value; in SetFirstTable()
71 Object** tables_; // Compilation cache tables - one for each generation. variable
/external/sfntly/cpp/src/sfntly/
Dfont.cc58 return tables_.find(tag) != tables_.end(); in HasTable()
64 return tables_[tag]; in GetTable()
68 return &tables_; in GetTableMap()
102 if (tables_.find(*tag) == tables_.end()) { in BuildTableHeadersForSerialization()
105 TablePtr table = tables_[*tag]; in BuildTableHeadersForSerialization()
178 for (TableMap::iterator table = tables_.begin(), table_end = tables_.end(); in GenerateTableOrdering()
263 BuildTablesFromBuilders(font, &table_builders_, &font->tables_); in Build()
Dfont.h245 int32_t num_tables() { return (int32_t)tables_.size(); } in num_tables()
343 TableMap tables_; variable
/external/webrtc/webrtc/system_wrappers/include/
Ddata_log_impl.h147 TableMap tables_; variable
/external/bcc/src/cc/frontends/b/
Dcodegen_llvm.h121 map<TableDeclStmtNode *, llvm::GlobalVariable *> tables_; variable
Dcodegen_llvm.cc1109 tables_[n] = decl_gvar; in visit_table_decl_stmt_node()
1247 for (auto table : tables_) { in visit()
/external/bcc/src/cc/includes/
Dbpf_module.h136 std::vector<TableDesc *> tables_; variable
/external/libchrome/mojo/public/cpp/bindings/
DREADME.md805 tables_.emplace_back(std::make_unique<TableImpl>(std::move(table)));
810 std::vector<std::unique_ptr<TableImpl>> tables_;