HomeSort by relevance Sort by last modified time
    Searched full:target_map_ (Results 1 - 3 of 3) sorted by null

  /art/test/305-other-fault-handler/
fault_handler.cc 37 target_map_(MemMap::MapAnonymous("test-305-mmap",
46 CHECK(target_map_ != nullptr) << "Unable to create segfault target address " << map_error_;
62 CHECK(target_map_->Protect(PROT_READ | PROT_WRITE)) << "Failed to mprotect R/W";
66 CHECK(target_map_->Protect(PROT_READ)) << "Failed to mprotect R-only";
71 CHECK_EQ(target_map_->GetProtect(), PROT_NONE);
81 CHECK_EQ(target_map_->GetProtect(), PROT_READ);
87 return reinterpret_cast<uint32_t*>(target_map_->Begin() + 8);
93 std::unique_ptr<MemMap> target_map_; member in class:art::FINAL
  /external/v8/src/
map-updater.h 82 // - Find |target_map_|, the newest matching version of this map using the
90 // descriptor array of the |target_map_|.
154 Handle<Map> target_map_; member in class:v8::internal::MapUpdater
map-updater.cc 275 target_map_ = root_map_;
281 *target_map_, old_details.kind(), GetKey(i), old_details.attributes());
321 target_map_ = tmp_map;
325 int target_nof = target_map_->NumberOfOwnDescriptors();
329 DescriptorArray* target_descriptors = target_map_->instance_descriptors();
348 if (*target_map_ != *old_map_) {
351 result_map_ = target_map_;
360 *target_map_, old_details.kind(), GetKey(i), old_details.attributes());
376 target_map_ = tmp_map;
384 int target_nof = target_map_->NumberOfOwnDescriptors()
    [all...]

Completed in 72 milliseconds