Searched refs:bcp_index (Results 1 – 1 of 1) sorted by relevance
/art/runtime/gc/space/ |
D | image_space.cc | 1457 size_t bcp_index; member 1462 size_t bcp_index, in ExpandLocationImpl() argument 1465 ArrayRef<const std::string>(boot_class_path_).SubArray(bcp_index, 1u), in ExpandLocationImpl() 1472 std::string ExpandLocation(const std::string& location, size_t bcp_index) { in ExpandLocation() argument 1473 if (bcp_index == 0u) { in ExpandLocation() 1474 DCHECK_EQ(location, ExpandLocationImpl(location, bcp_index, /*boot_image_extension=*/ false)); in ExpandLocation() 1477 return ExpandLocationImpl(location, bcp_index, /*boot_image_extension=*/ true); in ExpandLocation() 1481 std::string GetBcpComponentPath(size_t bcp_index) { in GetBcpComponentPath() argument 1482 DCHECK_LE(bcp_index, boot_class_path_.size()); in GetBcpComponentPath() 1483 size_t bcp_slash_pos = boot_class_path_[bcp_index].rfind('/'); in GetBcpComponentPath() [all …]
|