Home
last modified time | relevance | path

Searched refs:THREAD_LOCAL (Results 1 – 9 of 9) sorted by relevance

/rocksdb-6.9/java/src/test/java/org/rocksdb/
DComparatorOptionsTest.java31 copt.setReusedSynchronisationType(ReusedSynchronisationType.THREAD_LOCAL); in reusedSynchronisationType()
33 .isEqualTo(ReusedSynchronisationType.THREAD_LOCAL); in reusedSynchronisationType()
/rocksdb-6.9/java/rocksjni/
Dcomparatorjnicallback.cc74 == ReusedSynchronisationType::THREAD_LOCAL) { in ComparatorJniCallback()
542 if (m_options->reused_synchronisation_type != ReusedSynchronisationType::THREAD_LOCAL in MaybeLockForReuse()
551 if (m_options->reused_synchronisation_type != ReusedSynchronisationType::THREAD_LOCAL in MaybeUnlockForReuse()
561 == ReusedSynchronisationType::THREAD_LOCAL) { in GetBuffer()
Dcomparatorjnicallback.h40 THREAD_LOCAL enumerator
Dportal.h7509 case ROCKSDB_NAMESPACE::ReusedSynchronisationType::THREAD_LOCAL: in toJavaReusedSynchronisationType()
7526 return ROCKSDB_NAMESPACE::ReusedSynchronisationType::THREAD_LOCAL; in toCppReusedSynchronisationType()
/rocksdb-6.9/java/src/test/java/org/rocksdb/util/
DBytewiseComparatorIntTest.java76 { "non-direct_reused64_thread-local", false, 64, ReusedSynchronisationType.THREAD_LOCAL }, in parameters()
77 { "direct_reused64_thread-local", true, 64, ReusedSynchronisationType.THREAD_LOCAL }, in parameters()
DReverseBytewiseComparatorIntTest.java77 { "non-direct_reused64_adaptive-mutex", false, 64, ReusedSynchronisationType.THREAD_LOCAL }, in parameters()
78 { "direct_reused64_adaptive-mutex", true, 64, ReusedSynchronisationType.THREAD_LOCAL }, in parameters()
DIntComparatorTest.java75 { "non-direct_reused64_thread-local", false, 64, ReusedSynchronisationType.THREAD_LOCAL }, in parameters()
76 { "direct_reused64_thread-local", true, 64, ReusedSynchronisationType.THREAD_LOCAL }, in parameters()
/rocksdb-6.9/java/src/main/java/org/rocksdb/
DReusedSynchronisationType.java28 THREAD_LOCAL((byte)0x2); enumConstant
/rocksdb-6.9/java/jmh/src/main/java/org/rocksdb/jmh/
DComparatorBenchmarks.java93 comparatorOptions.setReusedSynchronisationType(ReusedSynchronisationType.THREAD_LOCAL); in setup()