Searched refs:impl_ (Results 1 – 7 of 7) sorted by relevance
| /rocksdb-6.9/test_util/ |
| D | sync_point.cc | 20 SyncPoint::SyncPoint() : impl_(new Data) {} in SyncPoint() 23 delete impl_; in ~SyncPoint() 27 impl_->LoadDependency(dependencies); in LoadDependency() 33 impl_->LoadDependencyAndMarkers(dependencies, markers); in LoadDependencyAndMarkers() 38 impl_->SetCallBack(point, callback); in SetCallBack() 42 impl_->ClearCallBack(point); in ClearCallBack() 46 impl_->ClearAllCallBacks(); in ClearAllCallBacks() 50 impl_->EnableProcessing(); in EnableProcessing() 54 impl_->DisableProcessing(); in DisableProcessing() 58 impl_->ClearTrace(); in ClearTrace() [all …]
|
| D | sync_point.h | 124 Data* impl_; variable
|
| /rocksdb-6.9/util/ |
| D | threadpool_imp.cc | 424 impl_(new Impl()) { in ThreadPoolImpl() 432 impl_->JoinThreads(false); in JoinAllThreads() 436 impl_->SetBackgroundThreadsInternal(num, true); in SetBackgroundThreads() 440 return impl_->GetBackgroundThreads(); in GetBackgroundThreads() 444 return impl_->GetQueueLen(); in GetQueueLen() 448 impl_->JoinThreads(true); in WaitForJobsAndJoinAllThreads() 452 impl_->LowerIOPriority(); in LowerIOPriority() 456 impl_->LowerCPUPriority(); in LowerCPUPriority() 484 return impl_->UnSchedule(arg); in UnSchedule() 494 return impl_->GetThreadPriority(); in GetThreadPriority() [all …]
|
| D | threadpool_imp.h | 109 std::unique_ptr<Impl> impl_;
|
| /rocksdb-6.9/utilities/persistent_cache/ |
| D | hash_table_bench.cc | 63 : impl_(impl), in HashTableBenchmark() 103 bool status = impl_->Insert(k, tmp); in RunWrite() 114 bool status = impl_->Lookup(k, &s); in RunRead() 124 bool status = impl_->Erase(k); in RunErase() 142 bool status = impl_->Insert(i, std::string(1000, i % 255)); in Prepop() 149 bool status = impl_->Insert(insert_key_++, std::string(1000, 'x')); in Prepop() 175 HashTableImpl<size_t, std::string>* impl_; // Implementation to test member in ROCKSDB_NAMESPACE::HashTableBenchmark 230 return impl_.Insert(n); in Insert() 235 return impl_.Erase(n, nullptr); in Erase() 241 bool status = impl_.Find(n, &n, &rlock); in Lookup() [all …]
|
| /rocksdb-6.9/third-party/gtest-1.8.1/fused-src/gtest/ |
| D | gtest-all.cc | 6080 impl_->environments().push_back(env); in AddEnvironment() 6098 if (impl_->gtest_trace_stack().size() > 0) { in AddTestPartResult() 6162 impl_->RecordProperty(TestProperty(key, value)); in RecordProperty() 6251 return impl_->original_working_dir_.c_str(); in original_working_dir() 6259 return impl_->current_test_case(); in current_test_case() 6267 return impl_->current_test_info(); in current_test_info() 6278 return impl_->parameterized_test_registry(); in parameterized_test_registry() 6283 impl_ = new internal::UnitTestImpl(this); in UnitTest() 6288 delete impl_; in ~UnitTest() 6296 impl_->gtest_trace_stack().push_back(trace); in PushGTestTrace() [all …]
|
| D | gtest.h | 11534 ParamIterator(const ParamIterator& other) : impl_(other.impl_->Clone()) {} 11537 impl_.reset(other.impl_->Clone()); 11545 impl_->Advance(); 11550 ParamIteratorInterface<T>* clone = impl_->Clone(); 11551 impl_->Advance(); 11555 return impl_.get() == other.impl_.get() || impl_->Equals(*other.impl_); 11564 scoped_ptr<ParamIteratorInterface<T> > impl_; 11592 ParamGenerator(const ParamGenerator& other) : impl_(other.impl_) {} 11595 impl_ = other.impl_; 21103 internal::UnitTestImpl* impl() { return impl_; } [all …]
|