Lines Matching refs:base_location
1591 std::string base_location; in MatchNamedComponents() local
1597 base_location = component; in MatchNamedComponents()
1600 base_location = GetBcpComponentPath(0u) + component; in MatchNamedComponents()
1606 base_location = component.substr(0u, slash_pos + 1u) + base_name; in MatchNamedComponents()
1614 base_location = path + base_name; in MatchNamedComponents()
1616 if (ExpandLocation(base_location, bcp_pos) == to_match) { in MatchNamedComponents()
1633 location.base_location = base_location; in MatchNamedComponents()
1735 const std::string& base_location, in ValidateOatFile() argument
1741 std::string art_location = ExpandLocation(base_location, bcp_index); in ValidateOatFile()
1796 bool ImageSpace::BootImageLayout::ReadHeader(const std::string& base_location, in ReadHeader() argument
1830 if (!ValidateOatFile(base_location, base_filename, bcp_index + i, component_count, error_msg)) { in ReadHeader()
1839 chunk.base_location = base_location; in ReadHeader()
1857 const std::string& base_location, in CompileBootclasspathElements() argument
2034 chunk.base_location = base_location; in CompileBootclasspathElements()
2081 const std::string& base_location = named_component_locations[i].base_location; in Load() local
2088 LOG(ERROR) << "Named image component already covered by previous image: " << base_location; in Load()
2093 if (!filename_fn(base_location, &base_filename, &local_error_msg) || in Load()
2094 !ReadHeader(base_location, base_filename, bcp_index, &local_error_msg)) { in Load()
2095 LOG(ERROR) << "Error reading named image component header for " << base_location in Load()
2116 if (!CompileBootclasspathElements(base_location, in Load()
2131 !CompileBootclasspathElements(base_location, in Load()
2152 const std::string& primary_base_location = named_component_locations[0].base_location; in Load()
2161 std::string base_location; in Load() local
2166 base_location = bcp_component.substr(0u, slash_pos + 1u) + base_name; in Load()
2169 base_location = path.substr(0u, path.size() - 1u) + base_name; in Load()
2173 if (filename_fn(base_location, &base_filename, &err_msg) && in Load()
2174 ReadHeader(base_location, base_filename, bcp_pos, &err_msg)) { in Load()
2175 VLOG(image) << "Found image extension for " << ExpandLocation(base_location, bcp_pos); in Load()
3028 ExpandMultiImageLocations(requested_bcp_locations, chunk.base_location, is_extension); in LoadComponents()