| /rocksdb-6.9/db/ |
| D | event_helpers.cc | 90 << table_properties.index_size << "index_partitions" in LogAndNotifyTableFileCreationFinished() 92 << table_properties.top_level_index_size in LogAndNotifyTableFileCreationFinished() 94 << table_properties.index_key_is_user_key in LogAndNotifyTableFileCreationFinished() 97 << table_properties.filter_size << "raw_key_size" in LogAndNotifyTableFileCreationFinished() 99 << SafeDivide(table_properties.raw_key_size, in LogAndNotifyTableFileCreationFinished() 100 table_properties.num_entries) in LogAndNotifyTableFileCreationFinished() 103 << SafeDivide(table_properties.raw_value_size, in LogAndNotifyTableFileCreationFinished() 104 table_properties.num_entries) in LogAndNotifyTableFileCreationFinished() 106 << "num_entries" << table_properties.num_entries in LogAndNotifyTableFileCreationFinished() 124 << table_properties.file_creation_time; in LogAndNotifyTableFileCreationFinished() [all …]
|
| D | listener_test.cc | 140 auto it = ci.table_properties.find(fn); in OnCompactionCompleted() 141 ASSERT_NE(it, ci.table_properties.end()); in OnCompactionCompleted() 225 ASSERT_GT(info.table_properties.data_size, 0U); in OnTableFileCreated() 226 ASSERT_GT(info.table_properties.raw_key_size, 0U); in OnTableFileCreated() 227 ASSERT_GT(info.table_properties.raw_value_size, 0U); in OnTableFileCreated() 228 ASSERT_GT(info.table_properties.num_data_blocks, 0U); in OnTableFileCreated() 229 ASSERT_GT(info.table_properties.num_entries, 0U); in OnTableFileCreated() 755 ASSERT_GT(info.table_properties.data_size, 0U); in OnTableFileCreated() 756 ASSERT_GT(info.table_properties.raw_key_size, 0U); in OnTableFileCreated() 757 ASSERT_GT(info.table_properties.raw_value_size, 0U); in OnTableFileCreated() [all …]
|
| D | builder.cc | 86 TableProperties* table_properties, int level, const uint64_t creation_time, in BuildTable() argument 203 if (table_properties) { in BuildTable() 204 *table_properties = tp; in BuildTable()
|
| /rocksdb-6.9/tools/ |
| D | sst_dump_tool.cc | 280 TableProperties* table_properties = nullptr; in ReadTableProperties() local 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() 744 total_data_block_size += table_properties->data_size; in Run() 745 total_index_block_size += table_properties->index_size; in Run() [all …]
|
| /rocksdb-6.9/table/block_based/ |
| D | block_based_table_reader.cc | 732 TableProperties** table_properties) { in TryReadPropertiesWithGlobalSeqno() argument 733 assert(table_properties != nullptr); in TryReadPropertiesWithGlobalSeqno() 749 (*table_properties) in TryReadPropertiesWithGlobalSeqno() 792 if (table_properties != nullptr) { in ReadPropertiesBlock() 818 if (rep_->table_properties) { in ReadPropertiesBlock() 825 if (rep_->table_properties) { in ReadPropertiesBlock() 1038 return rep_->table_properties; in GetTableProperties() 2793 delete table_properties; in VerifyChecksumInMetaBlocks() 2918 if (rep_->table_properties) { in ApproximateOffsetOf() 3092 table_properties = rep_->table_properties.get(); in DumpTable() [all …]
|
| D | block_based_table_reader.h | 404 TableProperties** table_properties); 525 std::shared_ptr<const TableProperties> table_properties; member 576 return table_properties in cf_id_for_tracing() 577 ? table_properties->column_family_id in cf_id_for_tracing() 583 return table_properties ? table_properties->column_family_name in cf_name_for_tracing()
|
| D | data_block_footer.cc.d | 14 include/rocksdb/table_properties.h include/rocksdb/types.h \
|
| /rocksdb-6.9/include/rocksdb/ |
| D | listener.h | 53 : table_properties(prop) {} in TableFileCreationInfo() 57 TableProperties table_properties; member 196 TableProperties table_properties; member 248 TablePropertiesCollection table_properties; member 288 TableProperties table_properties; member
|
| /rocksdb-6.9/table/ |
| D | table_properties.cc.d | 1 table/table_properties.cc.d table/table_properties.o: \ 2 table/table_properties.cc include/rocksdb/table_properties.h \
|
| D | meta_blocks.cc | 197 TableProperties** table_properties, bool verify_checksum, in ReadProperties() argument 202 assert(table_properties); in ReadProperties() 337 *table_properties = new_table_properties; in ReadProperties() 399 TableProperties table_properties; in ReadTableProperties() local
|
| /rocksdb-6.9/db_stress_tool/ |
| D | db_stress_listener.h | 72 assert(info.table_properties.data_size > 0 || in OnTableFileCreated() 73 info.table_properties.num_range_deletions > 0); in OnTableFileCreated() 74 assert(info.table_properties.raw_key_size > 0); in OnTableFileCreated() 75 assert(info.table_properties.num_entries > 0); in OnTableFileCreated()
|
| /rocksdb-6.9/java/rocksjni/ |
| D | table_filter_jnicallback.cc | 30 [this](const ROCKSDB_NAMESPACE::TableProperties& table_properties) { in TableFilterJniCallback() argument 37 thread_env, table_properties); in TableFilterJniCallback()
|
| D | portal.h | 5981 env, table_properties.column_family_name); in fromCppTableProperties() 5988 env, &table_properties.filter_policy_name, true); in fromCppTableProperties() 5996 env, &table_properties.comparator_name, true); in fromCppTableProperties() 6005 env, &table_properties.merge_operator_name, true); in fromCppTableProperties() 6039 env, &table_properties.compression_name, true); in fromCppTableProperties() 6069 env, &table_properties.readable_properties); in fromCppTableProperties() 6085 env, &table_properties.properties_offsets); in fromCppTableProperties() 6101 static_cast<jlong>(table_properties.data_size), in fromCppTableProperties() 6102 static_cast<jlong>(table_properties.index_size), in fromCppTableProperties() 6107 static_cast<jlong>(table_properties.filter_size), in fromCppTableProperties() [all …]
|
| /rocksdb-6.9/tools/advisor/test/input_files/ |
| D | LOG-1 | 10 …": "table_file_creation", "file_number": 10, "file_size": 1890434, "table_properties": {"data_size… 15 …": "table_file_creation", "file_number": 23, "file_size": 1893200, "table_properties": {"data_size… 20 …": "table_file_creation", "file_number": 84, "file_size": 1890780, "table_properties": {"data_size…
|
| D | LOG-0 | 10 …": "table_file_creation", "file_number": 10, "file_size": 1890434, "table_properties": {"data_size… 15 …": "table_file_creation", "file_number": 23, "file_size": 1893200, "table_properties": {"data_size… 20 …": "table_file_creation", "file_number": 84, "file_size": 1890780, "table_properties": {"data_size…
|
| /rocksdb-6.9/utilities/table_properties_collectors/ |
| D | compact_on_deletion_collector.cc.d | 6 include/rocksdb/table_properties.h include/rocksdb/status.h \
|
| /rocksdb-6.9/port/ |
| D | port_posix.cc.d | 10 include/rocksdb/table_properties.h include/rocksdb/types.h \
|
| /rocksdb-6.9/util/ |
| D | status.cc.d | 9 include/rocksdb/table_properties.h include/rocksdb/types.h \
|
| D | comparator.cc.d | 10 include/rocksdb/table_properties.h include/rocksdb/types.h \
|
| D | timer_queue_test.cc.d | 11 include/rocksdb/table_properties.h include/rocksdb/types.h \
|
| D | string_util.cc.d | 10 include/rocksdb/table_properties.h include/rocksdb/types.h \
|
| /rocksdb-6.9/table/plain/ |
| D | plain_table_reader.cc | 100 const TableProperties* table_properties, in PlainTableReader() argument 105 user_key_len_(static_cast<uint32_t>(table_properties->fixed_key_len)), in PlainTableReader() 110 static_cast<uint32_t>(table_properties->data_size)), in PlainTableReader()
|
| /rocksdb-6.9/monitoring/ |
| D | histogram.cc.d | 11 include/rocksdb/table_properties.h include/rocksdb/types.h \
|
| D | perf_level.cc.d | 11 include/rocksdb/table_properties.h include/rocksdb/types.h \
|
| /rocksdb-6.9/test_util/ |
| D | sync_point.cc.d | 11 include/rocksdb/table_properties.h include/rocksdb/types.h \
|