Home
last modified time | relevance | path

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

/art/runtime/native/
Ddalvik_system_DexFile.cc418 std::string profile_file; in CopyProfileFile() local
422 profile_file = GetDalvikCacheOrDie("profiles", false /* create_if_absent */) in CopyProfileFile()
424 prev_profile_file = profile_file + std::string("@old"); in CopyProfileFile()
427 int e1 = stat(profile_file.c_str(), &profstat); in CopyProfileFile()
435 … LOG(INFO) << "DexFile_isDexOptNeededInternal profile file " << profile_file << " doesn't exist. " in CopyProfileFile()
442 << profile_file; in CopyProfileFile()
452 bool new_ok = new_profile.LoadFile(profile_file); in CopyProfileFile()
457 << (new_ok ? "" : profile_file) << " " << (old_ok ? "" : prev_profile_file); in CopyProfileFile()
465 LOG(INFO) << "DexFile_isDexOptNeededInternal empty profile: " << profile_file; in CopyProfileFile()
485 LOG(INFO) << "DexFile_isDexOptNeededInternal size of new profile file " << profile_file << in CopyProfileFile()
[all …]
/art/dex2oat/
Ddex2oat.cc368 std::string profile_file, in CreateOatFile() argument
404 profile_file)); in CreateOatFile()
889 std::string profile_file; in dex2oat() local
1074 profile_file = option.substr(strlen("--profile-file=")).data(); in dex2oat()
1075 VLOG(compiler) << "dex2oat: profile file is " << profile_file; in dex2oat()
1556 profile_file, in dex2oat()
/art/compiler/driver/
Dcompiler_driver.cc341 int swap_fd, std::string profile_file) in CompilerDriver() argument
398 if (!profile_file.empty()) { in CompilerDriver()
399 profile_present_ = profile_file_.LoadFile(profile_file); in CompilerDriver()
401 LOG(INFO) << "Using profile data form file " << profile_file; in CompilerDriver()
403 LOG(INFO) << "Failed to load profile file " << profile_file; in CompilerDriver()
Dcompiler_driver.h114 std::string profile_file = "");