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/oatdump/
Doatdump_test.h166 size_t spaces = 0; in Exec() local
168 for (; spaces < line_len && isspace(line[spaces]); ++spaces) {} in Exec()
169 if (spaces > 0) { in Exec()
170 line_len -= spaces; in Exec()
171 memmove(&line[0], &line[spaces], line_len); in Exec()
/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/runtime/
Doat_file_manager.h81 std::vector<const OatFile*> RegisterImageOatFiles(std::vector<gc::space::ImageSpace*> spaces)
Doat_file_manager.cc143 std::vector<gc::space::ImageSpace*> spaces) { in RegisterImageOatFiles() argument
145 for (gc::space::ImageSpace* space : spaces) { in RegisterImageOatFiles()
Dclass_linker.cc878 std::vector<gc::space::ImageSpace*> spaces = heap->GetBootImageSpaces(); in InitFromBootImage() local
879 CHECK(!spaces.empty()); in InitFromBootImage()
880 uint32_t pointer_size_unchecked = spaces[0]->GetImageHeader().GetPointerSizeUnchecked(); in InitFromBootImage()
885 image_pointer_size_ = spaces[0]->GetImageHeader().GetPointerSize(); in InitFromBootImage()
898 runtime->GetOatFileManager().RegisterImageOatFiles(spaces); in InitFromBootImage()
952 spaces[i]->GetLiveBitmap()->Walk(visitor); in InitFromBootImage()
965 spaces[0]->GetImageHeader().GetImageRoot(ImageHeader::kClassRoots))); in InitFromBootImage()
1007 for (gc::space::ImageSpace* image_space : spaces) { in InitFromBootImage()
/art/patchoat/
Dpatchoat.cc155 std::vector<gc::space::ImageSpace*> spaces = Runtime::Current()->GetHeap()->GetBootImageSpaces(); in Patch() local
160 for (size_t i = 0; i < spaces.size(); ++i) { in Patch()
161 gc::space::ImageSpace* space = spaces[i]; in Patch()
203 for (size_t i = 0; i < spaces.size(); ++i) { in Patch()
204 gc::space::ImageSpace* space = spaces[i]; in Patch()
270 for (size_t i = 0; i < spaces.size(); ++i) { in Patch()
271 gc::space::ImageSpace* space = spaces[i]; in Patch()
/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.cc1159 const std::vector<gc::space::ImageSpace*>& spaces = runtime->GetHeap()->GetBootImageSpaces(); in TEST_F() local
1160 ASSERT_GT(spaces.size(), 0u); in TEST_F()
1161 const std::string image_location = spaces[0]->GetImageLocation(); in TEST_F()