Home
last modified time | relevance | path

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

/rocksdb-6.9/java/src/test/java/org/rocksdb/util/
DBytewiseComparatorIntTest.java74 … { "non-direct_reused64_adaptive-mutex", false, 64, ReusedSynchronisationType.ADAPTIVE_MUTEX }, in parameters()
75 { "direct_reused64_adaptive-mutex", true, 64, ReusedSynchronisationType.ADAPTIVE_MUTEX }, in parameters()
109 …onType(reusedSynchronisationType == null ? ReusedSynchronisationType.ADAPTIVE_MUTEX : reusedSynchr… in javaComparatorDefaultCf()
124 …onType(reusedSynchronisationType == null ? ReusedSynchronisationType.ADAPTIVE_MUTEX : reusedSynchr… in javaComparatorNamedCf()
DReverseBytewiseComparatorIntTest.java75 … { "non-direct_reused64_adaptive-mutex", false, 64, ReusedSynchronisationType.ADAPTIVE_MUTEX }, in parameters()
76 { "direct_reused64_adaptive-mutex", true, 64, ReusedSynchronisationType.ADAPTIVE_MUTEX }, in parameters()
110 …onType(reusedSynchronisationType == null ? ReusedSynchronisationType.ADAPTIVE_MUTEX : reusedSynchr… in javaComparatorDefaultCf()
126 …onType(reusedSynchronisationType == null ? ReusedSynchronisationType.ADAPTIVE_MUTEX : reusedSynchr… in javaComparatorNamedCf()
DIntComparatorTest.java73 … { "non-direct_reused64_adaptive-mutex", false, 64, ReusedSynchronisationType.ADAPTIVE_MUTEX }, in parameters()
74 { "direct_reused64_adaptive-mutex", true, 64, ReusedSynchronisationType.ADAPTIVE_MUTEX }, in parameters()
108 …onType(reusedSynchronisationType == null ? ReusedSynchronisationType.ADAPTIVE_MUTEX : reusedSynchr… in javaComparatorDefaultCf()
123 …onType(reusedSynchronisationType == null ? ReusedSynchronisationType.ADAPTIVE_MUTEX : reusedSynchr… in javaComparatorNamedCf()
/rocksdb-6.9/java/src/test/java/org/rocksdb/
DComparatorOptionsTest.java27 copt.setReusedSynchronisationType(ReusedSynchronisationType.ADAPTIVE_MUTEX); in reusedSynchronisationType()
29 .isEqualTo(ReusedSynchronisationType.ADAPTIVE_MUTEX); in reusedSynchronisationType()
/rocksdb-6.9/java/rocksjni/
Dcomparatorjnicallback.h35 ADAPTIVE_MUTEX, enumerator
49 ReusedSynchronisationType::ADAPTIVE_MUTEX;
Dcomparatorjnicallback.cc102 m_options->reused_synchronisation_type == ReusedSynchronisationType::ADAPTIVE_MUTEX; in ComparatorJniCallback()
Dportal.h7507 case ROCKSDB_NAMESPACE::ReusedSynchronisationType::ADAPTIVE_MUTEX: in toJavaReusedSynchronisationType()
7524 return ROCKSDB_NAMESPACE::ReusedSynchronisationType::ADAPTIVE_MUTEX; in toCppReusedSynchronisationType()
7529 return ROCKSDB_NAMESPACE::ReusedSynchronisationType::ADAPTIVE_MUTEX; in toCppReusedSynchronisationType()
/rocksdb-6.9/java/src/main/java/org/rocksdb/
DReusedSynchronisationType.java23 ADAPTIVE_MUTEX((byte)0x1), enumConstant
/rocksdb-6.9/java/jmh/src/main/java/org/rocksdb/jmh/
DComparatorBenchmarks.java91 comparatorOptions.setReusedSynchronisationType(ReusedSynchronisationType.ADAPTIVE_MUTEX); in setup()