Searched refs:get_impl_options (Results 1 – 11 of 11) sorted by relevance
| /rocksdb-6.9/db/db_impl/ |
| D | db_impl.cc | 1518 GetImplOptions get_impl_options; in Get() local 1520 get_impl_options.value = value; in Get() 1555 if (get_impl_options.callback) { in GetImpl() 1571 if (get_impl_options.callback) { in GetImpl() 1613 if (get_impl_options.get_value) { in GetImpl() 1657 get_impl_options.get_value ? get_impl_options.value_found : nullptr, in GetImpl() 1659 get_impl_options.get_value ? get_impl_options.callback : nullptr, in GetImpl() 1660 get_impl_options.get_value ? get_impl_options.is_blob_index : nullptr, in GetImpl() 1661 get_impl_options.get_value); in GetImpl() 1673 if (get_impl_options.get_value) { in GetImpl() [all …]
|
| D | db_impl.h | 176 GetImplOptions get_impl_options; in GetMergeOperands() local 177 get_impl_options.column_family = column_family; in GetMergeOperands() 178 get_impl_options.merge_operands = merge_operands; in GetMergeOperands() 179 get_impl_options.get_merge_operands_options = get_merge_operands_options; in GetMergeOperands() 180 get_impl_options.number_of_operands = number_of_operands; in GetMergeOperands() 181 get_impl_options.get_value = false; in GetMergeOperands() 182 return GetImpl(options, key, get_impl_options); in GetMergeOperands() 478 GetImplOptions& get_impl_options);
|
| /rocksdb-6.9/utilities/transactions/ |
| D | write_unprepared_txn_db.cc | 103 DBImpl::GetImplOptions get_impl_options; in RollbackRecoveredTransaction() local 104 get_impl_options.column_family = cf_handle; in RollbackRecoveredTransaction() 105 get_impl_options.value = &pinnable_val; in RollbackRecoveredTransaction() 106 get_impl_options.value_found = ¬_used; in RollbackRecoveredTransaction() 107 get_impl_options.callback = &callback; in RollbackRecoveredTransaction() 108 s = db_->GetImpl(roptions, key, get_impl_options); in RollbackRecoveredTransaction()
|
| D | write_prepared_txn.cc | 293 DBImpl::GetImplOptions get_impl_options; in RollbackInternal() local 294 get_impl_options.column_family = cf_handle; in RollbackInternal() 295 get_impl_options.value = &pinnable_val; in RollbackInternal() 296 get_impl_options.value_found = ¬_used; in RollbackInternal() 297 get_impl_options.callback = &callback; in RollbackInternal() 298 s = db_->GetImpl(roptions_, key, get_impl_options); in RollbackInternal()
|
| D | write_unprepared_txn.cc | 649 DBImpl::GetImplOptions get_impl_options; in WriteRollbackKeys() local 650 get_impl_options.column_family = cf_handle; in WriteRollbackKeys() 651 get_impl_options.value = &pinnable_val; in WriteRollbackKeys() 652 get_impl_options.value_found = ¬_used; in WriteRollbackKeys() 653 get_impl_options.callback = callback; in WriteRollbackKeys() 654 auto s = db_impl_->GetImpl(roptions, key, get_impl_options); in WriteRollbackKeys()
|
| D | write_prepared_txn_db.cc | 235 DBImpl::GetImplOptions get_impl_options; in Get() local 236 get_impl_options.column_family = column_family; in Get() 237 get_impl_options.value = value; in Get() 238 get_impl_options.value_found = dont_care; in Get() 239 get_impl_options.callback = &callback; in Get() 240 auto res = db_impl_->GetImpl(options, key, get_impl_options); in Get()
|
| /rocksdb-6.9/db/blob/ |
| D | db_blob_index_test.cc | 67 DBImpl::GetImplOptions get_impl_options; in GetImpl() local 68 get_impl_options.column_family = cfh(); in GetImpl() 69 get_impl_options.value = &value; in GetImpl() 70 get_impl_options.is_blob_index = is_blob_index; in GetImpl() 71 auto s = dbfull()->GetImpl(read_options, key, get_impl_options); in GetImpl()
|
| /rocksdb-6.9/db/ |
| D | db_merge_operator_test.cc | 49 DBImpl::GetImplOptions get_impl_options; in GetWithReadCallback() local 50 get_impl_options.column_family = db_->DefaultColumnFamily(); in GetWithReadCallback() 51 get_impl_options.value = &value; in GetWithReadCallback() 52 get_impl_options.callback = &read_callback; in GetWithReadCallback() 53 Status s = dbfull()->GetImpl(read_opt, key, get_impl_options); in GetWithReadCallback()
|
| D | db_test2.cc | 3015 DBImpl::GetImplOptions get_impl_options; in TEST_F() local 3016 get_impl_options.column_family = dbfull()->DefaultColumnFamily(); in TEST_F() 3017 get_impl_options.value = &pinnable_val; in TEST_F() 3018 get_impl_options.value_found = &dont_care; in TEST_F() 3019 get_impl_options.callback = &callback; in TEST_F() 3020 Status s = dbfull()->GetImpl(roptions, key, get_impl_options); in TEST_F()
|
| /rocksdb-6.9/utilities/write_batch_with_index/ |
| D | write_batch_with_index.cc | 886 DBImpl::GetImplOptions get_impl_options; in GetFromBatchAndDB() local 887 get_impl_options.column_family = column_family; in GetFromBatchAndDB() 888 get_impl_options.value = pinnable_val; in GetFromBatchAndDB() 889 get_impl_options.callback = callback; in GetFromBatchAndDB() 891 ->GetImpl(read_options, key, get_impl_options); in GetFromBatchAndDB()
|
| /rocksdb-6.9/utilities/blob_db/ |
| D | blob_db_impl.cc | 1590 DBImpl::GetImplOptions get_impl_options; in GetImpl() local 1591 get_impl_options.column_family = column_family; in GetImpl() 1592 get_impl_options.value = &index_entry; in GetImpl() 1593 get_impl_options.is_blob_index = &is_blob_index; in GetImpl() 1594 s = db_impl_->GetImpl(ro, key, get_impl_options); in GetImpl()
|