Searched refs:fillCache (Results 1 – 2 of 2) sorted by relevance
24 public ReadOptions(final boolean verifyChecksums, final boolean fillCache) { in ReadOptions() argument25 super(newReadOptions(verifyChecksums, fillCache)); in ReadOptions()79 public boolean fillCache() { in fillCache() method in ReadOptions81 return fillCache(nativeHandle_); in fillCache()93 public ReadOptions setFillCache(final boolean fillCache) { in setFillCache() argument95 setFillCache(nativeHandle_, fillCache); in setFillCache()578 final boolean fillCache); in newReadOptions() argument584 private native boolean fillCache(long handle); in fillCache() method in ReadOptions585 private native void setFillCache(long handle, boolean fillCache); in setFillCache() argument
31 assertThat(opt.fillCache()).isTrue(); in altConstructor()44 assertThat(opt.fillCache()).isEqualTo(other.fillCache()); in copyConstructor()62 public void fillCache() { in fillCache() method in ReadOptionsTest67 assertThat(opt.fillCache()).isEqualTo(boolValue); in fillCache()234 readOptions.fillCache(); in failFillCacheUninitialized()