Home
last modified time | relevance | path

Searched refs:ProfileData (Results 1 – 2 of 2) sorted by relevance

/art/runtime/
Dprofiler.h244 class ProfileData {
246 ProfileData() : count_(0), method_size_(0), used_percent_(0), top_k_used_percentage_(0) {} in ProfileData() function
247 ProfileData(const std::string& method_name, uint32_t count, uint32_t method_size, in ProfileData() function
278 bool GetProfileData(ProfileData* data, const std::string& method_name);
282 typedef std::map<std::string, ProfileData> ProfileMap;
Dprofiler.cc860 const ProfileData* prevData = nullptr; in LoadFile()
874 ProfileData curData = ProfileData(methodname, count, size, usedPercent, topKPercentage); in LoadFile()
881 bool ProfileFile::GetProfileData(ProfileFile::ProfileData* data, const std::string& method_name) { in GetProfileData()