Home
last modified time | relevance | path

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

/art/openjdkjvmti/
Dti_class_definition.cc52 CHECK(temp_mmap_ != nullptr); in InitializeMemory()
54 CHECK_EQ(temp_mmap_->GetProtect(), PROT_READ | PROT_WRITE); in InitializeMemory()
60 CHECK_LE(fixed_dex_file->Size(), temp_mmap_->Size()); in InitializeMemory()
61 CHECK_EQ(temp_mmap_->Size(), dex_data_mmap_->Size()); in InitializeMemory()
63 memcpy(temp_mmap_->Begin(), fixed_dex_file->Begin(), fixed_dex_file->Size()); in InitializeMemory()
66 art::MemMap* source = temp_mmap_.release(); in InitializeMemory()
256 temp_mmap_.reset(art::MemMap::MapAnonymous(mmap_name.c_str(), in InitWithDex()
263 if (UNLIKELY(dex_data_mmap_ != nullptr && temp_mmap_ != nullptr)) { in InitWithDex()
286 temp_mmap_.reset(nullptr); in InitWithDex()
Dti_class_definition.h60 temp_mmap_(nullptr), in ArtClassDefinition()
164 mutable std::unique_ptr<art::MemMap> temp_mmap_; variable