Lines Matching refs:bbto
310 BlockBasedTableOptions bbto; in TEST_P() local
311 bbto.no_block_cache = disable_block_cache_; in TEST_P()
312 if (bbto.no_block_cache == false) { in TEST_P()
313 bbto.block_cache = NewLRUCache(64 * 1024 * 1024); in TEST_P()
315 bbto.block_cache = nullptr; in TEST_P()
317 options.table_factory.reset(NewBlockBasedTableFactory(bbto)); in TEST_P()
349 if (bbto.block_cache) { in TEST_P()
350 bbto.block_cache->SetCapacity(1); in TEST_P()
358 if (bbto.block_cache) { in TEST_P()
359 bbto.block_cache->SetCapacity(64 * 1024 * 1024); in TEST_P()
375 BlockBasedTableOptions bbto; in TEST_P() local
376 bbto.no_block_cache = disable_block_cache_; in TEST_P()
377 options.table_factory.reset(NewBlockBasedTableFactory(bbto)); in TEST_P()