Home | History | Annotate | Download | only in space

Lines Matching defs:bitmap

787   // boot image. Uses the bitmap to ensure the same array is not visited multiple times.
794 // already visited the array as a long / int array from walking the bitmap without knowing it
960 accounting::ContinuousSpaceBitmap* bitmap,
1040 // The visited bitmap is used to ensure that pointer arrays are not forwarded twice.
1042 gc::accounting::ContinuousSpaceBitmap::Create("Relocate bitmap",
1056 bitmap->VisitMarkedRange(objects_begin, objects_end, fixup_object_visitor);
1229 "Image file size does not equal end of bitmap: size=%" PRIu64 " vs. %zu.", image_file_size,
1333 *error_msg = StringPrintf("Failed to map image bitmap: %s", error_msg->c_str());
1340 std::string bitmap_name(StringPrintf("imagespace %s live-bitmap %u",
1343 // Bitmap only needs to cover until the end of the mirror objects section.
1347 std::unique_ptr<accounting::ContinuousSpaceBitmap> bitmap;
1350 bitmap.reset(
1356 if (bitmap == nullptr) {
1357 *error_msg = StringPrintf("Could not create bitmap '%s'", bitmap_name.c_str());
1365 bitmap.get(),
1375 bitmap.release(),