Lines Matching refs:apk_path_
2550 std::string apk_path_ = apk_path; in calculate_oat_file_path_default() local
2554 if (!is_absolute_path(apk_path_)) return false; in calculate_oat_file_path_default()
2557 std::string::size_type end = apk_path_.rfind('.'); in calculate_oat_file_path_default()
2558 std::string::size_type start = apk_path_.rfind('/', end); in calculate_oat_file_path_default()
2560 LOG(ERROR) << "Invalid apk_path " << apk_path_; in calculate_oat_file_path_default()
2565 + apk_path_.substr(start + 1, end - start - 1) + ".odex"; in calculate_oat_file_path_default()
2578 std::string apk_path_ = apk_path; in calculate_odex_file_path_default() local
2581 if (!is_absolute_path(apk_path_)) return false; in calculate_odex_file_path_default()
2584 std::string::size_type end = apk_path_.rfind('.'); in calculate_odex_file_path_default()
2585 std::string::size_type start = apk_path_.rfind('/', end); in calculate_odex_file_path_default()
2587 LOG(ERROR) << "Invalid apk_path " << apk_path_; in calculate_odex_file_path_default()
2591 std::string oat_dir = apk_path_.substr(0, start + 1) + "oat"; in calculate_odex_file_path_default()