Lines Matching refs:props

314   TableProperties props;  member
512 if (r->props.num_entries > r->props.num_range_deletions) { in Add()
572 r->props.num_entries++; in Add()
573 r->props.raw_key_size += key.size(); in Add()
574 r->props.raw_value_size += value.size(); in Add()
576 r->props.num_deletions++; in Add()
578 r->props.num_deletions++; in Add()
579 r->props.num_range_deletions++; in Add()
581 r->props.num_merge_operands++; in Add()
715 r->props.data_size = r->offset; in WriteBlock()
716 ++r->props.num_data_blocks; in WriteBlock()
852 rep_->props.filter_size += filter_content.size(); in WriteFilterBlock()
925 rep_->props.column_family_id = rep_->column_family_id; in WritePropertiesBlock()
926 rep_->props.column_family_name = rep_->column_family_name; in WritePropertiesBlock()
927 rep_->props.filter_policy_name = in WritePropertiesBlock()
931 rep_->props.index_size = in WritePropertiesBlock()
933 rep_->props.comparator_name = rep_->ioptions.user_comparator != nullptr in WritePropertiesBlock()
936 rep_->props.merge_operator_name = in WritePropertiesBlock()
940 rep_->props.compression_name = in WritePropertiesBlock()
942 rep_->props.compression_options = in WritePropertiesBlock()
944 rep_->props.prefix_extractor_name = in WritePropertiesBlock()
959 rep_->props.property_collectors_names = property_collectors_names; in WritePropertiesBlock()
963 rep_->props.index_partitions = rep_->p_index_builder_->NumPartitions(); in WritePropertiesBlock()
964 rep_->props.top_level_index_size = in WritePropertiesBlock()
967 rep_->props.index_key_is_user_key = in WritePropertiesBlock()
969 rep_->props.index_value_is_delta_encoded = in WritePropertiesBlock()
971 rep_->props.creation_time = rep_->creation_time; in WritePropertiesBlock()
972 rep_->props.oldest_key_time = rep_->oldest_key_time; in WritePropertiesBlock()
973 rep_->props.file_creation_time = rep_->file_creation_time; in WritePropertiesBlock()
976 property_block_builder.AddTableProperty(rep_->props); in WritePropertiesBlock()
1180 return rep_->props.num_entries; in NumEntries()
1195 TableProperties ret = rep_->props; in GetTableProperties()