Searched refs:expected_ptr (Results 1 – 3 of 3) sorted by relevance
/art/runtime/mirror/ |
D | object_reference-inl.h | 40 bool HeapReference<MirrorType>::CasWeakRelaxed(MirrorType* expected_ptr, MirrorType* new_ptr) { in CasWeakRelaxed() argument 41 return reference_.CompareAndSetWeakRelaxed(Compression::Compress(expected_ptr), in CasWeakRelaxed()
|
/art/libartbase/base/ |
D | mem_map.cc | 188 bool MemMap::CheckMapRequest(uint8_t* expected_ptr, void* actual_ptr, size_t byte_count, in CheckMapRequest() argument 193 if (expected_ptr == nullptr) { in CheckMapRequest() 198 uintptr_t expected = reinterpret_cast<uintptr_t>(expected_ptr); in CheckMapRequest() 200 if (expected_ptr == actual_ptr) { in CheckMapRequest() 233 bool MemMap::CheckReservation(uint8_t* expected_ptr, in CheckReservation() argument 243 if (reservation.Begin() != expected_ptr) { in CheckReservation() 247 expected_ptr); in CheckReservation() 511 MemMap MemMap::MapFileAtAddress(uint8_t* expected_ptr, in MapFileAtAddress() argument 530 CHECK(expected_ptr != nullptr); in MapFileAtAddress() 533 DCHECK(ContainedWithinExistingMap(expected_ptr, byte_count, error_msg)) in MapFileAtAddress() [all …]
|
D | mem_map.h | 403 static bool CheckMapRequest(uint8_t* expected_ptr, 408 static bool CheckReservation(uint8_t* expected_ptr,
|