Lines Matching refs:options_
53 options_(options), in SstFileDumper()
54 ioptions_(options_), in SstFileDumper()
55 moptions_(ColumnFamilyOptions(options_)), in SstFileDumper()
90 Status s = options_.env->NewRandomAccessFile(file_path, &file, soptions_); in GetTableReader()
92 s = options_.env->GetFileSize(file_path, &file_size); in GetTableReader()
110 options_.env->NewRandomAccessFile(file_path, &file, soptions_); in GetTableReader()
114 options_.comparator = &internal_comparator_; in GetTableReader()
136 if (BlockBasedTableFactory::kName == options_.table_factory->Name()) { in NewTableReader()
137 return options_.table_factory->NewTableReader( in NewTableReader()
144 return options_.table_factory->NewTableReader( in NewTableReader()
158 Env* env = options_.env; in DumpTable()
169 std::unique_ptr<Env> env(NewMemEnv(options_.env)); in CalculateCompressedTableSize()
296 options_.table_factory = std::make_shared<BlockBasedTableFactory>(); in SetTableOptionsByMagicNumber()
305 options_.prefix_extractor.reset(NewNoopTransform()); in SetTableOptionsByMagicNumber()
310 options_.allow_mmap_reads = true; in SetTableOptionsByMagicNumber()
321 options_.table_factory.reset(NewPlainTableFactory(plain_table_options)); in SetTableOptionsByMagicNumber()
336 options_.table_factory = std::make_shared<BlockBasedTableFactory>(); in SetOldTableOptions()