Home
last modified time | relevance | path

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

/rocksdb-6.9/java/src/main/java/org/rocksdb/
DDBOptions.java628 public DBOptions setAllowFAllocate(final boolean allowFAllocate) { in setAllowFAllocate() argument
630 setAllowFAllocate(nativeHandle_, allowFAllocate); in setAllowFAllocate()
635 public boolean allowFAllocate() { in allowFAllocate() method in DBOptions
637 return allowFAllocate(nativeHandle_); in allowFAllocate()
1274 final boolean allowFAllocate); in setAllowFAllocate() argument
1275 private native boolean allowFAllocate(final long handle); in allowFAllocate() method in DBOptions
DDBOptionsInterface.java773 T setAllowFAllocate(boolean allowFAllocate); in setAllowFAllocate() argument
780 boolean allowFAllocate(); in allowFAllocate() method
DOptions.java683 public Options setAllowFAllocate(final boolean allowFAllocate) { in setAllowFAllocate() argument
685 setAllowFAllocate(nativeHandle_, allowFAllocate); in setAllowFAllocate()
690 public boolean allowFAllocate() { in allowFAllocate() method in Options
692 return allowFAllocate(nativeHandle_); in allowFAllocate()
1893 final boolean allowFAllocate); in setAllowFAllocate() argument
1894 private native boolean allowFAllocate(final long handle); in allowFAllocate() method in Options
/rocksdb-6.9/java/src/test/java/org/rocksdb/
DDBOptionsTest.java368 public void allowFAllocate() { in allowFAllocate() method in DBOptionsTest
372 assertThat(opt.allowFAllocate()).isEqualTo(boolValue); in allowFAllocate()
DOptionsTest.java587 public void allowFAllocate() { in allowFAllocate() method in OptionsTest
591 assertThat(opt.allowFAllocate()).isEqualTo(boolValue); in allowFAllocate()