Home
last modified time | relevance | path

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

/rocksdb-6.9/java/src/main/java/org/rocksdb/
DDBOptions.java147 final boolean errorIfExists) { in setErrorIfExists() argument
149 setErrorIfExists(nativeHandle_, errorIfExists); in setErrorIfExists()
154 public boolean errorIfExists() { in errorIfExists() method in DBOptions
156 return errorIfExists(nativeHandle_); in errorIfExists()
1194 private native void setErrorIfExists(long handle, boolean errorIfExists); in setErrorIfExists() argument
1195 private native boolean errorIfExists(long handle); in errorIfExists() method in DBOptions
DDBOptionsInterface.java106 T setErrorIfExists(boolean errorIfExists); in setErrorIfExists() argument
115 boolean errorIfExists(); in errorIfExists() method
DOptions.java277 public boolean errorIfExists() { in errorIfExists() method in Options
279 return errorIfExists(nativeHandle_); in errorIfExists()
283 public Options setErrorIfExists(final boolean errorIfExists) { in setErrorIfExists() argument
285 setErrorIfExists(nativeHandle_, errorIfExists); in setErrorIfExists()
1810 private native void setErrorIfExists(long handle, boolean errorIfExists); in setErrorIfExists() argument
1811 private native boolean errorIfExists(long handle); in errorIfExists() method in Options
/rocksdb-6.9/java/src/test/java/org/rocksdb/
DDBOptionsTest.java122 public void errorIfExists() { in errorIfExists() method in DBOptionsTest
126 assertThat(opt.errorIfExists()).isEqualTo(boolValue); in errorIfExists()
DOptionsTest.java332 public void errorIfExists() { in errorIfExists() method in OptionsTest
336 assertThat(opt.errorIfExists()).isEqualTo(boolValue); in errorIfExists()