Home
last modified time | relevance | path

Searched refs:ThreadKey (Results 1 – 3 of 3) sorted by relevance

/external/libchrome/base/debug/
Dactivity_analyzer.h38 class ThreadKey {
40 ThreadKey(int64_t pid, int64_t tid) : pid_(pid), tid_(tid) {} in ThreadKey() function
42 bool operator<(const ThreadKey& rhs) const {
48 bool operator==(const ThreadKey& rhs) const {
94 ThreadKey GetThreadKey() { in GetThreadKey()
95 return ThreadKey(activity_snapshot_.process_id, in GetThreadKey()
132 using ThreadKey = ThreadActivityAnalyzer::ThreadKey; variable
182 ThreadActivityAnalyzer* GetAnalyzerForThread(const ThreadKey& key);
211 std::map<ThreadKey, std::unique_ptr<ThreadActivityAnalyzer>>;
Dactivity_analyzer_unittest.cc180 ThreadActivityAnalyzer::ThreadKey tk1 = ta1->GetThreadKey(); in TEST_F()
207 ThreadActivityAnalyzer::ThreadKey tk2 = ta2->GetThreadKey(); in TEST_F()
Dactivity_analyzer.cc201 const ThreadKey& key) { in GetAnalyzerForThread()