Lines Matching refs:table_properties
280 TableProperties* table_properties = nullptr; in ReadTableProperties() local
282 file, file_size, table_magic_number, ioptions_, &table_properties); in ReadTableProperties()
284 table_properties_.reset(table_properties); in ReadTableProperties()
415 std::shared_ptr<const TableProperties>* table_properties) { in ReadTableProperties() argument
420 *table_properties = table_reader_->GetTableProperties(); in ReadTableProperties()
722 const ROCKSDB_NAMESPACE::TableProperties* table_properties; in Run() local
730 table_properties = dumper.GetInitTableProperties(); in Run()
732 table_properties = table_properties_from_reader.get(); in Run()
734 if (table_properties != nullptr) { in Run()
740 table_properties->ToString("\n ", ": ").c_str()); in Run()
743 total_num_data_blocks += table_properties->num_data_blocks; in Run()
744 total_data_block_size += table_properties->data_size; in Run()
745 total_index_block_size += table_properties->index_size; in Run()
746 total_filter_block_size += table_properties->filter_size; in Run()
751 for (const auto& kv : table_properties->user_collected_properties) { in Run()