Home
last modified time | relevance | path

Searched refs:SystemProfileCache (Results 1 – 4 of 4) sorted by relevance

/system/core/metricsd/uploader/
Dsystem_profile_cache.cc56 SystemProfileCache::SystemProfileCache() in SystemProfileCache() function in SystemProfileCache
63 SystemProfileCache::SystemProfileCache(bool testing, in SystemProfileCache() function in SystemProfileCache
71 bool SystemProfileCache::Initialize() { in Initialize()
139 bool SystemProfileCache::InitializeOrCheck() { in InitializeOrCheck()
143 bool SystemProfileCache::Populate( in Populate()
171 std::string SystemProfileCache::GetPersistentGUID( in GetPersistentGUID()
184 metrics::SystemProfileProto_Channel SystemProfileCache::ProtoChannelFromString( in ProtoChannelFromString()
Dupload_service_test.cc225 EXPECT_EQ(SystemProfileCache::ProtoChannelFromString("developer-build"), in TEST_F()
229 SystemProfileCache::ProtoChannelFromString("dev-channel")); in TEST_F()
232 SystemProfileCache::ProtoChannelFromString("stable-channel")); in TEST_F()
235 SystemProfileCache::ProtoChannelFromString("this is a test")); in TEST_F()
249 new SystemProfileCache(true, dir_.path())); in TEST_F()
265 std::string first_guid = SystemProfileCache::GetPersistentGUID(tmp_file); in TEST_F()
266 std::string second_guid = SystemProfileCache::GetPersistentGUID(tmp_file); in TEST_F()
273 first_guid = SystemProfileCache::GetPersistentGUID(tmp_file); in TEST_F()
275 second_guid = SystemProfileCache::GetPersistentGUID(tmp_file); in TEST_F()
283 SystemProfileCache cache(true, dir_.path()); in TEST_F()
[all …]
Dsystem_profile_cache.h49 class SystemProfileCache : public SystemProfileSetter {
51 SystemProfileCache();
53 SystemProfileCache(bool testing, const base::FilePath& metrics_directory);
Dupload_service.cc74 system_profile_setter_.reset(new SystemProfileCache()); in OnInit()