Home
last modified time | relevance | path

Searched refs:spaces (Results 1 – 9 of 9) sorted by relevance

/art/runtime/gc/collector/
Dimmune_spaces_test.cc191 ImmuneSpaces spaces; in TEST_F() local
197 spaces.AddSpace(&a); in TEST_F()
198 spaces.AddSpace(&b); in TEST_F()
200 EXPECT_TRUE(spaces.ContainsSpace(&a)); in TEST_F()
201 EXPECT_TRUE(spaces.ContainsSpace(&b)); in TEST_F()
202 EXPECT_EQ(reinterpret_cast<uint8_t*>(spaces.GetLargestImmuneRegion().Begin()), a.Begin()); in TEST_F()
203 EXPECT_EQ(reinterpret_cast<uint8_t*>(spaces.GetLargestImmuneRegion().End()), b.Limit()); in TEST_F()
209 ImmuneSpaces spaces; in TEST_F() local
231 spaces.AddSpace(image_space.get()); in TEST_F()
233 EXPECT_EQ(reinterpret_cast<uint8_t*>(spaces.GetLargestImmuneRegion().Begin()), in TEST_F()
[all …]
/art/test/117-nopatchoat/
Dnopatchoat.cc39 std::vector<gc::space::ImageSpace*> spaces = in isRelocationDeltaZero() local
41 return !spaces.empty() && spaces[0]->GetImageHeader().GetPatchDelta() == 0; in isRelocationDeltaZero()
/art/oatdump/
Doatdump_test.h198 size_t spaces = 0; in Exec() local
200 for (; spaces < line_len && isspace(line[spaces]); ++spaces) {} in Exec()
201 if (spaces > 0) { in Exec()
202 line_len -= spaces; in Exec()
203 memmove(&line[0], &line[spaces], line_len); in Exec()
/art/runtime/
Doat_file_manager.h81 std::vector<const OatFile*> RegisterImageOatFiles(std::vector<gc::space::ImageSpace*> spaces)
Doat_file_manager.cc155 std::vector<gc::space::ImageSpace*> spaces) { in RegisterImageOatFiles() argument
157 for (gc::space::ImageSpace* space : spaces) { in RegisterImageOatFiles()
Dclass_linker.cc930 std::vector<gc::space::ImageSpace*> spaces = heap->GetBootImageSpaces(); in InitFromBootImage() local
931 CHECK(!spaces.empty()); in InitFromBootImage()
932 uint32_t pointer_size_unchecked = spaces[0]->GetImageHeader().GetPointerSizeUnchecked(); in InitFromBootImage()
937 image_pointer_size_ = spaces[0]->GetImageHeader().GetPointerSize(); in InitFromBootImage()
950 runtime->GetOatFileManager().RegisterImageOatFiles(spaces); in InitFromBootImage()
1004 spaces[i]->GetLiveBitmap()->Walk(visitor); in InitFromBootImage()
1017 spaces[0]->GetImageHeader().GetImageRoot(ImageHeader::kClassRoots))); in InitFromBootImage()
1064 for (gc::space::ImageSpace* image_space : spaces) { in InitFromBootImage()
/art/patchoat/
Dpatchoat.cc495 std::vector<gc::space::ImageSpace*> spaces = Runtime::Current()->GetHeap()->GetBootImageSpaces(); in Patch() local
498 for (size_t i = 0; i < spaces.size(); ++i) { in Patch()
500 gc::space::ImageSpace* space = spaces[i]; in Patch()
657 std::vector<gc::space::ImageSpace*> spaces = Runtime::Current()->GetHeap()->GetBootImageSpaces(); in Verify() local
663 for (size_t i = 0; i < spaces.size(); ++i) { in Verify()
664 gc::space::ImageSpace* space = spaces[i]; in Verify()
/art/tools/dmtracedump/
Dtracedump.cc1042 char spaces[MAX_STACK_DEPTH + 1]; in dumpTrace() local
1043 memset(spaces, '.', MAX_STACK_DEPTH); in dumpTrace()
1044 spaces[MAX_STACK_DEPTH] = '\0'; in dumpTrace()
1113 spaces + (MAX_STACK_DEPTH - printDepth), method->className, in dumpTrace()
1118 spaces + (MAX_STACK_DEPTH - printDepth), method->className); in dumpTrace()
1252 const char* spaces = " "; /* 6 spaces */ in printInclusiveMethod() local
1253 int32_t num_spaces = strlen(spaces); in printInclusiveMethod()
1254 const char* space_ptr = &spaces[num_spaces]; in printInclusiveMethod()
1274 space_ptr = &spaces[len]; in printInclusiveMethod()
/art/dex2oat/
Ddex2oat_test.cc1252 const std::vector<gc::space::ImageSpace*>& spaces = runtime->GetHeap()->GetBootImageSpaces(); in TEST_F() local
1253 ASSERT_GT(spaces.size(), 0u); in TEST_F()
1254 const std::string image_location = spaces[0]->GetImageLocation(); in TEST_F()