Home
last modified time | relevance | path

Searched refs:versions_ (Results 1 – 5 of 5) sorted by relevance

/external/leveldb/db/
Ddb_impl.cc149 versions_(new VersionSet(dbname_, &options_, table_cache_, in DBImpl()
165 delete versions_; in ~DBImpl()
236 versions_->AddLiveFiles(&live); in RemoveObsoleteFiles()
248 keep = ((number >= versions_->LogNumber()) || in RemoveObsoleteFiles()
249 (number == versions_->PrevLogNumber())); in RemoveObsoleteFiles()
254 keep = (number >= versions_->ManifestFileNumber()); in RemoveObsoleteFiles()
324 s = versions_->Recover(save_manifest); in Recover()
337 const uint64_t min_log = versions_->LogNumber(); in Recover()
338 const uint64_t prev_log = versions_->PrevLogNumber(); in Recover()
345 versions_->AddLiveFiles(&expected); in Recover()
[all …]
Ddb_impl.h200 VersionSet* const versions_ GUARDED_BY(mutex_);
/external/tensorflow/tensorflow/core/graph/
Dgraph.cc388 versions_(new VersionDef), in Graph()
390 versions_->set_producer(TF_GRAPH_DEF_VERSION); in Graph()
391 versions_->set_min_consumer(TF_GRAPH_DEF_VERSION_MIN_CONSUMER); in Graph()
417 if (flib_def.num_functions() > 0 && versions_->min_consumer() < 12) { in Graph()
418 versions_->set_min_consumer(12); in Graph()
454 const VersionDef& Graph::versions() const { return *versions_; } in versions()
455 void Graph::set_versions(const VersionDef& versions) { *versions_ = versions; } in set_versions()
726 if (fdef_lib.function_size() > 0 && versions_->min_consumer() < 12) { in AddFunctionLibrary()
727 versions_->set_min_consumer(12); in AddFunctionLibrary()
Dgraph.h772 const std::unique_ptr<VersionDef> versions_; variable
/external/tensorflow/tensorflow/core/common_runtime/
Dgraph_constructor.cc409 versions_(versions), in NodeDefCopyingGraphConstructor()
416 const VersionDef* versions() const override { return versions_; } in versions()
420 const VersionDef* const versions_; member in tensorflow::__anon59d1d8780111::NodeDefCopyingGraphConstructor