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 | 185 bool MemMap::CheckMapRequest(uint8_t* expected_ptr, void* actual_ptr, size_t byte_count, in CheckMapRequest() argument 190 if (expected_ptr == nullptr) { in CheckMapRequest() 195 uintptr_t expected = reinterpret_cast<uintptr_t>(expected_ptr); in CheckMapRequest() 197 if (expected_ptr == actual_ptr) { in CheckMapRequest() 230 bool MemMap::CheckReservation(uint8_t* expected_ptr, in CheckReservation() argument 240 if (reservation.Begin() != expected_ptr) { in CheckReservation() 244 expected_ptr); in CheckReservation() 481 MemMap MemMap::MapFileAtAddress(uint8_t* expected_ptr, in MapFileAtAddress() argument 500 CHECK(expected_ptr != nullptr); in MapFileAtAddress() 503 DCHECK(ContainedWithinExistingMap(expected_ptr, byte_count, error_msg)) in MapFileAtAddress() [all …]
|
D | mem_map.h | 363 static bool CheckMapRequest(uint8_t* expected_ptr, 368 static bool CheckReservation(uint8_t* expected_ptr,
|