| /rocksdb-6.9/build_tools/ |
| D | build_detect_platform | 252 $CXX $CFLAGS -x c++ - -o /dev/null 2>/dev/null <<EOF 268 $CXX $CFLAGS -x c++ - -o /dev/null 2>/dev/null <<EOF 283 $CXX $CFLAGS -x c++ - -o /dev/null 2>/dev/null << EOF 292 $CXX $CFLAGS -x c++ - -o /dev/null 2>/dev/null << EOF 416 $CXX $CFLAGS -x c++ - -o /dev/null 2>/dev/null <<EOF 431 $CXX $CFLAGS -x c++ - -o /dev/null 2>/dev/null <<EOF 446 $CXX $CFLAGS -x c++ - -o /dev/null 2>/dev/null <<EOF 487 $CXX $CFLAGS -x c++ - -o /dev/null 2>/dev/null <<EOF 501 $CXX $CFLAGS -x c++ - -o /dev/null 2>/dev/null <<EOF 515 $CXX $CFLAGS -x c++ - -o /dev/null 2>/dev/null <<EOF [all …]
|
| /rocksdb-6.9/java/src/test/java/org/rocksdb/util/ |
| D | CapturingWriteBatchHandler.java | 58 events.add(new Event(Action.DELETE, key, (byte[])null)); in delete() 64 columnFamilyId, key, (byte[])null)); in singleDelete() 86 events.add(new Event(Action.LOG, (byte[])null, blob)); in logData() 98 (byte[])null)); in markBeginPrepare() 104 (byte[])null)); in markEndPrepare() 109 events.add(new Event(Action.MARK_NOOP, (byte[])null, (byte[])null)); in markNoop() 114 events.add(new Event(Action.MARK_ROLLBACK, (byte[])null, (byte[])null)); in markRollback() 119 events.add(new Event(Action.MARK_COMMIT, (byte[])null, (byte[])null)); in markCommit() 145 if (o == null || getClass() != o.getClass()) { in equals() 151 ((key == null && event.key == null) in equals() [all …]
|
| D | WriteBatchGetter.java | 59 this.value = null; in delete() 66 this.value = null; in delete() 74 this.value = null; in singleDelete() 81 this.value = null; in singleDelete()
|
| /rocksdb-6.9/java/src/main/java/org/rocksdb/ |
| D | RocksDB.java | 2035 if(values[i] == null) { in multiGet() 2749 return null; in getSnapshot() 2760 if (snapshot != null) { in releaseSnapshot() 3078 compactRange(null); in compactRange() 3110 compactRange(nativeHandle_, null, -1, null, -1, 0, in compactRange() 3248 null, -1, in compactRange() 3249 null, -1, in compactRange() 3653 columnFamilyHandle == null ? null : Arrays.asList(columnFamilyHandle)); in flush() 3832 if (result == null) { in getLiveFiles() 3833 return null; in getLiveFiles() [all …]
|
| D | BackupableDBOptions.java | 21 private Env backupEnv = null; 22 private Logger infoLog = null; 23 private RateLimiter backupRateLimiter = null; 24 private RateLimiter restoreRateLimiter = null; 38 final File backupPath = path == null ? null : new File(path); in ensureWritableFile() 39 if (backupPath == null || !backupPath.isDirectory() || in ensureWritableFile()
|
| D | BlockBasedTableConfig.java | 26 blockCache = null; in BlockBasedTableConfig() 27 persistentCache = null; in BlockBasedTableConfig() 28 blockCacheCompressed = null; in BlockBasedTableConfig() 36 filterPolicy = null; in BlockBasedTableConfig() 875 if (filterPolicy != null) { in newTableFactoryHandle() 882 if (blockCache != null) { in newTableFactoryHandle() 889 if (persistentCache != null) { in newTableFactoryHandle() 896 if (blockCacheCompressed != null) { in newTableFactoryHandle()
|
| D | AbstractMutableOptions.java | 109 if(value == null) { in getDouble() 128 if(value == null) { in getLong() 147 if(value == null) { in getInt() 166 if(value == null) { in getBoolean() 185 if(value == null) { in getIntArray() 205 if (value == null) { in getEnum() 239 if(strInts == null || strInts.length == 0) { in fromString()
|
| D | DbPath.java | 28 if (o == null || getClass() != o.getClass()) { in equals() 38 return path != null ? path.equals(dbPath.path) : dbPath.path == null; in equals() 43 int result = path != null ? path.hashCode() : 0; in hashCode()
|
| D | CompressionType.java | 18 NO_COMPRESSION((byte) 0x0, null), enumConstant 26 DISABLE_COMPRESSION_OPTION((byte)0x7F, null); enumConstant 40 if (libraryName != null) { in getCompressionType() 42 if (compressionType.getLibraryName() != null && in getCompressionType()
|
| D | ReadOptions.java | 111 return null; in snapshot() 126 if (snapshot != null) { in setSnapshot() 445 if (iterateLowerBound != null) { in setIterateLowerBound() 469 return null; in iterateLowerBound() 490 if (iterateUpperBound != null) { in setIterateUpperBound() 514 return null; in iterateUpperBound()
|
| D | AbstractTraceWriter.java | 54 final Status.Code code = status != null && status.getCode() != null in statusToShort() 57 final Status.SubCode subCode = status != null && status.getSubCode() != null in statusToShort()
|
| D | WBWIRocksIterator.java | 101 WriteType type = null; 152 return null; //TODO(AR) migrate to JDK8 java.util.Optional#empty() in getValue() 167 return (key == null) ? 0 : key.hashCode(); in hashCode() 172 if(other == null) { in equals()
|
| D | AbstractSlice.java | 121 assert (other != null); in compare() 150 if (other != null && other instanceof AbstractSlice) { in equals() 168 if (prefix != null) { in startsWith()
|
| /rocksdb-6.9/java/samples/src/main/java/ |
| D | RocksDBSample.java | 170 assert (value != null); in main() 172 assert (value == null); in main() 174 assert (value == null); in main() 181 assert (testResult != null); in main() 185 assert (testResult != null); in main() 250 assert (iterator.key() != null); in main() 261 assert (iterator.key() != null); in main() 272 assert (iterator.key() != null); in main() 273 assert (iterator.value() != null); in main() 290 assert (value1 != null); in main() [all …]
|
| D | OptimisticTransactionSample.java | 71 assert(value == null); in readCommitted() 78 assert(value == null); in readCommitted() 129 readOptions.setSnapshot(null); in repeatableRead() 181 readOptions.setSnapshot(null); in readCommitted_monotonicAtomicViews()
|
| D | TransactionSample.java | 72 assert(value == null); in readCommitted() 79 assert(value == null); in readCommitted() 126 readOptions.setSnapshot(null); in repeatableRead() 180 readOptions.setSnapshot(null); in readCommitted_monotonicAtomicViews()
|
| D | RocksDBColumnFamilySample.java | 29 assert(db != null); in main() 35 assert (columnFamilyHandle != null); in main() 52 assert(db != null); in main()
|
| /rocksdb-6.9/java/src/test/java/org/rocksdb/ |
| D | KeyMayExistTest.java | 53 exists = db.keyMayExist("key".getBytes(UTF_8), null); in keyMayExist() 72 exists = db.keyMayExist(sliceKey, offset, len, null); in keyMayExist() 82 exists = db.keyMayExist(readOptions, "key".getBytes(UTF_8), null); in keyMayExist() 90 exists = db.keyMayExist(readOptions, sliceKey, offset, len, null); in keyMayExist() 102 null); in keyMayExist() 113 null); in keyMayExist() 125 "key".getBytes(UTF_8), null); in keyMayExist() 136 sliceKey, offset, len, null); in keyMayExist() 146 "key".getBytes(UTF_8), null); in keyMayExist() 155 sliceKey, 1, 3, null); in keyMayExist() [all …]
|
| D | ColumnFamilyTest.java | 235 if (tmpColumnFamilyHandle != null) { in createWriteDropColumnFamily() 318 "xyz".getBytes()) == null); in writeBatch() 545 if (iterators != null) { in iterators() 664 ColumnFamilyHandle cf1 = null, cf2 = null, cf3 = null; in testByteCreateFolumnFamily() 673 if (cf1 != null) { in testByteCreateFolumnFamily() 676 if (cf2 != null) { in testByteCreateFolumnFamily() 679 if (cf3 != null) { in testByteCreateFolumnFamily() 688 ColumnFamilyHandle cf1 = null, cf2 = null; in testCFNamesWithZeroBytes() 702 if (cf1 != null) { in testCFNamesWithZeroBytes() 705 if (cf2 != null) { in testCFNamesWithZeroBytes() [all …]
|
| D | SstFileWriterTest.java | 64 SstFileWriter sstFileWriter = null; in newSstFile() 65 ComparatorOptions comparatorOptions = null; in newSstFile() 66 BytewiseComparator comparator = null; in newSstFile() 130 if (comparatorOptions != null) { in newSstFile() 133 if (comparator != null) { in newSstFile() 196 assertThat(db.get("key6".getBytes())).isEqualTo(null); in ingestSstFile() 197 assertThat(db.get("key7".getBytes())).isEqualTo(null); in ingestSstFile() 237 "key4".getBytes())).isEqualTo(null); in ingestSstFile_cf()
|
| D | MemoryUtilTest.java | 87 Map<MemoryUsageType, Long> usage = MemoryUtil.getApproximateMemoryUsageByType(null, null); in getApproximateMemoryUsageByTypeNulls() 89 assertThat(usage.get(MemoryUsageType.kMemTableTotal)).isEqualTo(null); in getApproximateMemoryUsageByTypeNulls() 90 assertThat(usage.get(MemoryUsageType.kMemTableUnFlushed)).isEqualTo(null); in getApproximateMemoryUsageByTypeNulls() 91 assertThat(usage.get(MemoryUsageType.kTableReadersTotal)).isEqualTo(null); in getApproximateMemoryUsageByTypeNulls() 92 assertThat(usage.get(MemoryUsageType.kCacheTotal)).isEqualTo(null); in getApproximateMemoryUsageByTypeNulls()
|
| D | BackupEngineTest.java | 112 RocksDB db = null; in restoreLatestBackup() 134 db = null; in restoreLatestBackup() 151 if(db != null) { in restoreLatestBackup() 162 RocksDB db = null; in restoreFromBackup() 185 db = null; in restoreFromBackup() 202 if(db != null) { in restoreFromBackup()
|
| D | WriteBatchHandlerTest.java | 29 new Event(DELETE, "k0".getBytes(), null), in writeBatchHandler() 33 new Event(LOG, null, "log1".getBytes()), in writeBatchHandler() 35 new Event(DELETE, "k3".getBytes(), null) in writeBatchHandler()
|
| /rocksdb-6.9/java/src/test/java/org/rocksdb/test/ |
| D | RocksJunitRunner.java | 41 private String currentClassName = null; 42 private String currentMethodName = null; 43 private Status currentStatus = null; 79 if(currentClassName == null in testStarted() 81 if(currentClassName != null) { in testStarted() 118 if (failure.getException() != null in testFailure()
|
| /rocksdb-6.9/coverage/ |
| D | coverage_test.sh | 30 $GCOV --preserve-paths --relative-only --no-output $GCNO_FILES 2>/dev/null | 46 $GCOV --preserve-paths --relative-only --no-output $GCNO_FILES 2>/dev/null | 60 LCOV=$(which lcov || true 2>/dev/null)
|