HomeSort by relevance Sort by last modified time
    Searched refs:profile_key (Results 1 - 3 of 3) sorted by null

  /art/runtime/jit/
profile_compilation_info.cc 296 if (dex_data.profile_key.size() >= kMaxDexFileKeyLength) {
306 dex_data.profile_key.size() +
311 DCHECK_LE(dex_data.profile_key.size(), std::numeric_limits<uint16_t>::max());
313 AddUintToBuffer(&buffer, static_cast<uint16_t>(dex_data.profile_key.size()));
318 AddStringToBuffer(&buffer, dex_data.profile_key);
423 const std::string& profile_key,
425 const auto& profile_index_it = profile_key_map_.FindOrAdd(profile_key, profile_key_map_.size());
432 profile_key_map_.erase(profile_key);
440 &arena_, profile_key, checksum, profile_index);
446 DCHECK_EQ(profile_key, result->profile_key)
    [all...]
profile_compilation_info.h 297 // Note that we could do without profile_key (the key used to encode the dex
308 profile_key(key),
317 std::string profile_key; member in struct:art::ProfileCompilationInfo::DexFileData
339 DexFileData* GetOrAddDexFileData(const std::string& profile_key, uint32_t checksum);
372 const DexFileData* FindDexData(const std::string& profile_key) const;
  /art/dex2oat/
dex2oat_test.cc 610 std::string profile_key = ProfileCompilationInfo::GetProfileDexFileKey(dex_location); local
612 info.AddClassIndex(profile_key, checksum, dex::TypeIndex(1 + i));

Completed in 230 milliseconds