/external/bcc/src/cc/ |
D | shared_table.cc | 58 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 …]
|
D | bpf_module.cc | 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() [all …]
|
D | bpf_module.h | 136 std::vector<TableDesc *> tables_; variable
|
/external/webrtc/webrtc/system_wrappers/source/ |
D | data_log.cc | 322 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/ |
D | descriptor.cc | 804 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 …]
|
D | descriptor.h | 1311 const FileDescriptorTables* tables_; variable 1620 google::protobuf::scoped_ptr<Tables> tables_; variable
|
/external/v8/src/ |
D | compilation-cache.cc | 42 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()
|
D | compilation-cache.h | 29 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/ |
D | font.cc | 58 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()
|
D | font.h | 245 int32_t num_tables() { return (int32_t)tables_.size(); } in num_tables() 343 TableMap tables_; variable
|
/external/webrtc/webrtc/system_wrappers/include/ |
D | data_log_impl.h | 147 TableMap tables_; variable
|
/external/bcc/src/cc/frontends/b/ |
D | codegen_llvm.h | 121 map<TableDeclStmtNode *, llvm::GlobalVariable *> tables_; variable
|
D | codegen_llvm.cc | 1109 tables_[n] = decl_gvar; in visit_table_decl_stmt_node() 1247 for (auto table : tables_) { in visit()
|
/external/bcc/src/cc/includes/ |
D | bpf_module.h | 136 std::vector<TableDesc *> tables_; variable
|
/external/libchrome/mojo/public/cpp/bindings/ |
D | README.md | 805 tables_.emplace_back(std::make_unique<TableImpl>(std::move(table))); 810 std::vector<std::unique_ptr<TableImpl>> tables_;
|