Searched refs:spaces (Results 1 – 9 of 9) sorted by relevance
/art/runtime/gc/collector/ |
D | immune_spaces_test.cc | 195 ImmuneSpaces spaces; in TEST_F() local 201 spaces.AddSpace(&a); in TEST_F() 202 spaces.AddSpace(&b); in TEST_F() 204 EXPECT_TRUE(spaces.ContainsSpace(&a)); in TEST_F() 205 EXPECT_TRUE(spaces.ContainsSpace(&b)); in TEST_F() 206 EXPECT_EQ(reinterpret_cast<uint8_t*>(spaces.GetLargestImmuneRegion().Begin()), a.Begin()); in TEST_F() 207 EXPECT_EQ(reinterpret_cast<uint8_t*>(spaces.GetLargestImmuneRegion().End()), b.Limit()); in TEST_F() 213 ImmuneSpaces spaces; in TEST_F() local 243 spaces.AddSpace(image_space.get()); in TEST_F() 245 EXPECT_EQ(reinterpret_cast<uint8_t*>(spaces.GetLargestImmuneRegion().Begin()), in TEST_F() [all …]
|
/art/oatdump/ |
D | oatdump_test.h | 303 size_t spaces = 0; variable 304 for (; spaces < len && isspace(line[spaces]); ++spaces) {} 305 if (spaces > 0) { 306 memmove(&line[0], &line[spaces], len - spaces); 308 return spaces;
|
/art/runtime/gc/space/ |
D | image_space.cc | 2308 std::vector<std::unique_ptr<ImageSpace>> spaces; in LoadImage() local 2309 spaces.reserve(image_component_count); in LoadImage() 2321 &spaces, in LoadImage() 2362 for (const std::unique_ptr<ImageSpace>& space : spaces) { in LoadImage() 2379 MaybeRelocateSpaces(spaces, logger); in LoadImage() 2380 DeduplicateInternedStrings(ArrayRef<const std::unique_ptr<ImageSpace>>(spaces), logger); in LoadImage() 2381 boot_image_spaces->swap(spaces); in LoadImage() 2475 static void DoRelocateSpaces(ArrayRef<const std::unique_ptr<ImageSpace>>& spaces, in DoRelocateSpaces() argument 2477 DCHECK(!spaces.empty()); in DoRelocateSpaces() 2481 spaces.front()->Begin(), in DoRelocateSpaces() [all …]
|
/art/runtime/oat/ |
D | oat_file_manager.h | 80 const std::vector<gc::space::ImageSpace*>& spaces)
|
D | oat_file_manager.cc | 166 const std::vector<gc::space::ImageSpace*>& spaces) { in RegisterImageOatFiles() argument 168 oat_files.reserve(spaces.size()); in RegisterImageOatFiles() 169 for (gc::space::ImageSpace* space : spaces) { in RegisterImageOatFiles()
|
/art/dex2oat/ |
D | dex2oat_test.cc | 1199 const std::vector<gc::space::ImageSpace*>& spaces = runtime->GetHeap()->GetBootImageSpaces(); in TEST_F() local 1200 ASSERT_GT(spaces.size(), 0u); in TEST_F() 1201 const std::string image_location = spaces[0]->GetImageLocation(); in TEST_F()
|
/art/runtime/ |
D | class_linker.cc | 1326 std::vector<gc::space::ImageSpace*> spaces = heap->GetBootImageSpaces(); in InitFromBootImage() local 1327 CHECK(!spaces.empty()); in InitFromBootImage() 1328 const ImageHeader& image_header = spaces[0]->GetImageHeader(); in InitFromBootImage() 1372 runtime->GetOatFileManager().RegisterImageOatFiles(spaces); in InitFromBootImage() 1435 spaces[i]->GetLiveBitmap()->Walk(visitor); in InitFromBootImage() 1459 if (!AddImageSpaces(ArrayRef<gc::space::ImageSpace*>(spaces), in InitFromBootImage() 1468 for (gc::space::ImageSpace* space : spaces) { in InitFromBootImage() 2035 ArrayRef<gc::space::ImageSpace* const> spaces(heap->GetBootImageSpaces()); in ImageChecker() local 2036 space_begin_.reserve(spaces.size()); in ImageChecker() 2037 for (gc::space::ImageSpace* space : spaces) { in ImageChecker() [all …]
|
D | class_linker.h | 193 bool AddImageSpaces(ArrayRef<gc::space::ImageSpace*> spaces,
|
/art/tools/fuzzer/ |
D | Android.bp | 551 "host_2034-spaces-in-SimpleName_classes.dex",
|