Lines Matching refs:base_location

1606     std::string base_location;  in MatchNamedComponents()  local
1612 base_location = component; in MatchNamedComponents()
1615 base_location = GetBcpComponentPath(0u) + component; in MatchNamedComponents()
1621 base_location = component.substr(0u, slash_pos + 1u) + base_name; in MatchNamedComponents()
1629 base_location = path + base_name; in MatchNamedComponents()
1631 if (ExpandLocation(base_location, bcp_pos) == to_match) { in MatchNamedComponents()
1648 location.base_location = base_location; in MatchNamedComponents()
1750 const std::string& base_location, in ValidateOatFile() argument
1756 std::string art_location = ExpandLocation(base_location, bcp_index); in ValidateOatFile()
1814 bool ImageSpace::BootImageLayout::ReadHeader(const std::string& base_location, in ReadHeader() argument
1848 if (!ValidateOatFile(base_location, base_filename, bcp_index + i, component_count, error_msg)) { in ReadHeader()
1857 chunk.base_location = base_location; in ReadHeader()
1875 const std::string& base_location, in CompileBootclasspathElements() argument
2052 chunk.base_location = base_location; in CompileBootclasspathElements()
2099 const std::string& base_location = named_component_locations[i].base_location; in Load() local
2106 LOG(ERROR) << "Named image component already covered by previous image: " << base_location; in Load()
2111 if (!filename_fn(base_location, &base_filename, &local_error_msg) || in Load()
2112 !ReadHeader(base_location, base_filename, bcp_index, &local_error_msg)) { in Load()
2113 LOG(ERROR) << "Error reading named image component header for " << base_location in Load()
2134 if (!CompileBootclasspathElements(base_location, in Load()
2149 !CompileBootclasspathElements(base_location, in Load()
2170 const std::string& primary_base_location = named_component_locations[0].base_location; in Load()
2179 std::string base_location; in Load() local
2184 base_location = bcp_component.substr(0u, slash_pos + 1u) + base_name; in Load()
2187 base_location = path.substr(0u, path.size() - 1u) + base_name; in Load()
2191 if (filename_fn(base_location, &base_filename, &err_msg) && in Load()
2192 ReadHeader(base_location, base_filename, bcp_pos, &err_msg)) { in Load()
2193 VLOG(image) << "Found image extension for " << ExpandLocation(base_location, bcp_pos); in Load()
3042 ExpandMultiImageLocations(requested_bcp_locations, chunk.base_location, is_extension); in LoadComponents()