Home
last modified time | relevance | path

Searched refs:temp_mmap_ (Results 1 – 2 of 2) sorted by relevance

/art/openjdkjvmti/
Dti_class_definition.cc54 CHECK(temp_mmap_.IsValid()); in InitializeMemory()
56 CHECK_EQ(temp_mmap_.GetProtect(), PROT_READ | PROT_WRITE); in InitializeMemory()
62 CHECK_LE(fixed_dex_file->Size(), temp_mmap_.Size()); in InitializeMemory()
63 CHECK_EQ(temp_mmap_.Size(), dex_data_mmap_.Size()); in InitializeMemory()
65 memcpy(temp_mmap_.Begin(), fixed_dex_file->Begin(), fixed_dex_file->Size()); in InitializeMemory()
69 source.swap(temp_mmap_); in InitializeMemory()
255 temp_mmap_ = art::MemMap::MapAnonymous(mmap_name.c_str(), in InitWithDex()
260 if (UNLIKELY(dex_data_mmap_.IsValid() && temp_mmap_.IsValid())) { in InitWithDex()
283 temp_mmap_.Reset(); in InitWithDex()
Dti_class_definition.h61 temp_mmap_(), in ArtClassDefinition()
173 mutable art::MemMap temp_mmap_; variable