Lines Matching refs:counters

1368                    ReportFileOpCounters* counters)  in NewSequentialFile()  argument
1369 : target_(std::move(target)), counters_(counters) {} in NewSequentialFile()
1384 counters()->open_counter_.fetch_add(1, std::memory_order_relaxed); in NewSequentialFile()
1385 r->reset(new CountingFile(std::move(*r), counters())); in NewSequentialFile()
1400 ReportFileOpCounters* counters) in NewRandomAccessFile() argument
1401 : target_(std::move(target)), counters_(counters) {} in NewRandomAccessFile()
1414 counters()->open_counter_.fetch_add(1, std::memory_order_relaxed); in NewRandomAccessFile()
1415 r->reset(new CountingFile(std::move(*r), counters())); in NewRandomAccessFile()
1429 ReportFileOpCounters* counters) in NewWritableFile() argument
1430 : target_(std::move(target)), counters_(counters) {} in NewWritableFile()
1448 counters()->open_counter_.fetch_add(1, std::memory_order_relaxed); in NewWritableFile()
1449 r->reset(new CountingFile(std::move(*r), counters())); in NewWritableFile()
1455 ReportFileOpCounters* counters() { return &counters_; } in counters() function in ROCKSDB_NAMESPACE::__anon8e8b84b20111::ReportFileOpEnv
2119 ReportFileOpCounters* counters = env->counters(); in Report() local
2121 counters->open_counter_.load(std::memory_order_relaxed)); in Report()
2123 counters->read_counter_.load(std::memory_order_relaxed)); in Report()
2125 counters->append_counter_.load(std::memory_order_relaxed)); in Report()
2127 counters->bytes_read_.load(std::memory_order_relaxed)); in Report()
2129 counters->bytes_written_.load(std::memory_order_relaxed)); in Report()
6629 std::vector<uint32_t> counters(FLAGS_numdistinct, 0); in RandomReplaceKeys() local
6654 GenerateKeyFromInt(key_id * max_counter + counters[key_id], FLAGS_num, in RandomReplaceKeys()
6659 counters[key_id] = (counters[key_id] + 1) % max_counter; in RandomReplaceKeys()
6660 GenerateKeyFromInt(key_id * max_counter + counters[key_id], FLAGS_num, in RandomReplaceKeys()