Lines Matching refs:apk_path_
2499 std::string apk_path_ = apk_path; in calculate_oat_file_path_default() local
2503 if (!is_absolute_path(apk_path_)) return false; in calculate_oat_file_path_default()
2506 std::string::size_type end = apk_path_.rfind('.'); in calculate_oat_file_path_default()
2507 std::string::size_type start = apk_path_.rfind('/', end); in calculate_oat_file_path_default()
2509 LOG(ERROR) << "Invalid apk_path " << apk_path_; in calculate_oat_file_path_default()
2514 + apk_path_.substr(start + 1, end - start - 1) + ".odex"; in calculate_oat_file_path_default()
2527 std::string apk_path_ = apk_path; in calculate_odex_file_path_default() local
2530 if (!is_absolute_path(apk_path_)) return false; in calculate_odex_file_path_default()
2533 std::string::size_type end = apk_path_.rfind('.'); in calculate_odex_file_path_default()
2534 std::string::size_type start = apk_path_.rfind('/', end); in calculate_odex_file_path_default()
2536 LOG(ERROR) << "Invalid apk_path " << apk_path_; in calculate_odex_file_path_default()
2540 std::string oat_dir = apk_path_.substr(0, start + 1) + "oat"; in calculate_odex_file_path_default()