Home
last modified time | relevance | path

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

/art/runtime/gc/collector/
Dimmune_spaces_test.cc172 ImmuneSpaces spaces; in TEST_F() local
178 spaces.AddSpace(&a); in TEST_F()
179 spaces.AddSpace(&b); in TEST_F()
181 EXPECT_TRUE(spaces.ContainsSpace(&a)); in TEST_F()
182 EXPECT_TRUE(spaces.ContainsSpace(&b)); in TEST_F()
183 EXPECT_EQ(reinterpret_cast<uint8_t*>(spaces.GetLargestImmuneRegion().Begin()), a.Begin()); in TEST_F()
184 EXPECT_EQ(reinterpret_cast<uint8_t*>(spaces.GetLargestImmuneRegion().End()), b.Limit()); in TEST_F()
190 ImmuneSpaces spaces; in TEST_F() local
224 spaces.AddSpace(image_space.get()); in TEST_F()
226 EXPECT_EQ(reinterpret_cast<uint8_t*>(spaces.GetLargestImmuneRegion().Begin()), in TEST_F()
[all …]
/art/oatdump/
Doatdump_test.h284 size_t spaces = 0; variable
285 for (; spaces < len && isspace(line[spaces]); ++spaces) {}
286 if (spaces > 0) {
287 memmove(&line[0], &line[spaces], len - spaces);
289 return spaces;
/art/runtime/
Doat_file_manager.h79 const std::vector<gc::space::ImageSpace*>& spaces)
Doat_file_manager.cc163 const std::vector<gc::space::ImageSpace*>& spaces) { in RegisterImageOatFiles() argument
165 oat_files.reserve(spaces.size()); in RegisterImageOatFiles()
166 for (gc::space::ImageSpace* space : spaces) { in RegisterImageOatFiles()
/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.cc1313 const std::vector<gc::space::ImageSpace*>& spaces = runtime->GetHeap()->GetBootImageSpaces(); in TEST_F() local
1314 ASSERT_GT(spaces.size(), 0u); in TEST_F()
1315 const std::string image_location = spaces[0]->GetImageLocation(); in TEST_F()