Home | History | Annotate | Download | only in collector

Lines Matching defs:memory

140   // Does not reserve the memory, the caller needs to be sure no other threads will map at the
152 LOG(ERROR) << "Failed to allocate memory region " << error_str;
214 uint8_t* memory = GetContinuousMemoryRegion(kImageSize + kImageOatSize + kOtherSpaceSize);
216 std::unique_ptr<DummyImageSpace> image_space(CreateImageSpace(memory,
218 memory + kImageSize,
265 uint8_t* memory = GetContinuousMemoryRegion(kMemorySize);
266 uint8_t* space1_begin = memory;
267 memory += kImage1Size;
268 uint8_t* space2_begin = memory;
269 memory += kImage2Size;
270 uint8_t* space1_oat_begin = memory;
271 memory += kImage1OatSize;
272 uint8_t* space2_oat_begin = memory;
273 memory += kImage2OatSize;
274 uint8_t* space3_begin = memory;
312 // Add another space after the oat files, now it should contain the entire memory region.