Home
last modified time | relevance | path

Searched refs:atomic_compare_exchange_strong (Results 1 – 7 of 7) sorted by relevance

/bionic/libc/bionic/
Dmalloc_heapprofd.cpp235 if (atomic_compare_exchange_strong(&gHeapprofdState, &expected, in HandleHeapprofdSignal()
237 atomic_compare_exchange_strong(&gHeapprofdState, &expected2, in HandleHeapprofdSignal()
350 if (atomic_compare_exchange_strong(&gHeapprofdState, &expected, kInstallingHook)) { in HeapprofdInstallHooksAtInit()
363 if (atomic_compare_exchange_strong(&gHeapprofdState, &expected, kInstallingHook)) { in InitHeapprofd()
379 if (atomic_compare_exchange_strong(&gHeapprofdState, &expected, kRemovingEphemeralHook)) { in MallocInitHeapprofdHook()
435 if(atomic_compare_exchange_strong(&gHeapprofdState, &expected, kUninstallingHook)){ in DispatchReset()
Dfdsan.cpp95 if (atomic_compare_exchange_strong(&overflow, &local_overflow, new_overflow)) { in at()
169 atomic_compare_exchange_strong(&fd_table.error_level, &error_level, in fdsan_error()
260 if (!atomic_compare_exchange_strong(&fde->close_tag, &tag, 0)) { in android_fdsan_close_with_tag()
313 if (!atomic_compare_exchange_strong(&fde->close_tag, &tag, new_tag)) { in android_fdsan_exchange_owner_tag()
Dfdtrack.cpp53 return atomic_compare_exchange_strong(&__android_fdtrack_hook, expected, value); in android_fdtrack_compare_exchange_hook()
Dpthread_key.cpp151 if (atomic_compare_exchange_strong(&key_map[key].seq, &seq, seq + SEQ_INCREMENT_STEP)) { in pthread_key_delete()
/bionic/tests/
Dstdatomic_test.cpp110 ASSERT_TRUE(atomic_compare_exchange_strong(&i, &expected, 456)); in TEST()
111 ASSERT_FALSE(atomic_compare_exchange_strong(&i, &expected, 456)); in TEST()
/bionic/libc/include/
Dstdatomic.h65 using std::atomic_compare_exchange_strong;
/bionic/libc/include/bits/
Dstdatomic.h236 #define atomic_compare_exchange_strong(object, expected, desired) \ macro