Home
last modified time | relevance | path

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

/external/libchrome/base/
Dtracked_objects_unittest.cc140 ThreadData::BirthMap birth_map; in TEST_F() local
142 data->SnapshotMaps(0, &birth_map, &deaths); in TEST_F()
143 EXPECT_EQ(0u, birth_map.size()); in TEST_F()
157 birth_map.clear(); in TEST_F()
159 data->SnapshotMaps(0, &birth_map, &deaths); in TEST_F()
160 EXPECT_EQ(0u, birth_map.size()); in TEST_F()
176 ThreadData::BirthMap birth_map; in TEST_F() local
178 data->SnapshotMaps(0, &birth_map, &deaths); in TEST_F()
179 EXPECT_EQ(1u, birth_map.size()); // 1 birth location. in TEST_F()
180 EXPECT_EQ(1, birth_map.begin()->second->birth_count()); // 1 birth. in TEST_F()
[all …]
Dtracked_objects.cc633 BirthMap birth_map; in SnapshotExecutedTasks() local
635 SnapshotMaps(current_profiling_phase, &birth_map, &deaths); in SnapshotExecutedTasks()
637 for (const auto& birth : birth_map) { in SnapshotExecutedTasks()
665 BirthMap* birth_map, in SnapshotMaps() argument
670 (*birth_map)[birth.first] = birth.second; in SnapshotMaps()
Dtracked_objects.h610 BirthMap* birth_map,