Lines Matching refs:base_location
1393 std::string base_location; member
1456 std::string base_location; member
1506 bool ReadHeader(const std::string& base_location,
1511 bool CompileExtension(const std::string& base_location,
1673 std::string base_location; in MatchNamedComponents() local
1679 base_location = component; in MatchNamedComponents()
1682 base_location = GetBcpComponentPath(0u) + component; in MatchNamedComponents()
1688 base_location = component.substr(0u, slash_pos + 1u) + base_name; in MatchNamedComponents()
1696 base_location = path + base_name; in MatchNamedComponents()
1698 if (ExpandLocation(base_location, bcp_pos) == to_match) { in MatchNamedComponents()
1713 location.base_location = base_location; in MatchNamedComponents()
1814 bool ImageSpace::BootImageLayout::ReadHeader(const std::string& base_location, in ReadHeader() argument
1835 chunk.base_location = base_location; in ReadHeader()
1852 bool ImageSpace::BootImageLayout::CompileExtension(const std::string& base_location, in CompileExtension() argument
2019 chunk.base_location = base_location; in CompileExtension()
2104 const std::string& base_location = named_component_locations[i].base_location; in LoadOrValidate() local
2115 LOG(ERROR) << "Named image component already covered by previous image: " << base_location; in LoadOrValidate()
2126 if (!filename_fn(base_location, &base_filename, err_msg) || in LoadOrValidate()
2127 !ReadHeader(base_location, base_filename, bcp_index, err_msg)) { in LoadOrValidate()
2131 VLOG(image) << "Error reading named image component header for " << base_location in LoadOrValidate()
2134 !CompileExtension(base_location, in LoadOrValidate()
2164 const std::string& primary_base_location = named_component_locations[0].base_location; in LoadOrValidate()
2173 std::string base_location; in LoadOrValidate() local
2178 base_location = bcp_component.substr(0u, slash_pos + 1u) + base_name; in LoadOrValidate()
2181 base_location = path.substr(0u, path.size() - 1u) + base_name; in LoadOrValidate()
2185 if (filename_fn(base_location, &base_filename, &err_msg) && in LoadOrValidate()
2186 ReadHeader(base_location, base_filename, bcp_pos, &err_msg)) { in LoadOrValidate()
2187 VLOG(image) << "Found image extension for " << ExpandLocation(base_location, bcp_pos); in LoadOrValidate()
2987 ExpandMultiImageLocations(requested_bcp_locations, chunk.base_location, is_extension); in LoadComponents()