Lines Matching refs:params

1285     const std::vector<std::string>& params,  in CreateColumnFamilyCommand()  argument
1289 if (params.size() != 1) {
1293 new_cf_name_ = params[0];
1318 const std::vector<std::string>& params, in DropColumnFamilyCommand() argument
1322 if (params.size() != 1) {
1326 cf_name_to_drop_ = params[0];
2313 GetCommand::GetCommand(const std::vector<std::string>& params, in GetCommand() argument
2319 if (params.size() != 1) {
2323 key_ = params.at(0);
2413 const std::vector<std::string>& params, in BatchPutCommand() argument
2419 if (params.size() < 2) {
2422 } else if (params.size() % 2 != 0) {
2426 for (size_t i = 0; i < params.size(); i += 2) {
2427 std::string key = params.at(i);
2428 std::string value = params.at(i + 1);
2626 DeleteCommand::DeleteCommand(const std::vector<std::string>& params, in DeleteCommand() argument
2631 if (params.size() != 1) {
2635 key_ = params.at(0);
2662 const std::vector<std::string>& params, in DeleteRangeCommand() argument
2667 if (params.size() != 2) {
2671 begin_key_ = params.at(0);
2672 end_key_ = params.at(1);
2700 PutCommand::PutCommand(const std::vector<std::string>& params, in PutCommand() argument
2706 if (params.size() != 2) {
2710 key_ = params.at(0);
2711 value_ = params.at(1);
2985 BackupCommand::BackupCommand(const std::vector<std::string>& params, in BackupCommand() argument
2988 : BackupableCommand(params, options, flags) {} in BackupCommand()
3029 const std::vector<std::string>& params, in RestoreCommand() argument
3032 : BackupableCommand(params, options, flags) {} in RestoreCommand()
3192 const std::vector<std::string>& params, in WriteExternalSstFilesCommand() argument
3202 if (params.size() != 1) {
3206 output_sst_path_ = params.at(0);
3293 const std::vector<std::string>& params, in IngestExternalSstFilesCommand() argument
3342 if (params.size() != 1) {
3346 input_sst_path_ = params.at(0);