Home
last modified time | relevance | path

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

/aosp_15_r20/external/python/cpython2/Lib/bsddb/test/
Dtest_lock.py102 def deadlock_detection() : function
103 while not deadlock_detection.end :
104 deadlock_detection.count = \
106 if deadlock_detection.count :
107 while not deadlock_detection.end :
112 deadlock_detection.end=False
113 deadlock_detection.count=0
114 t=Thread(target=deadlock_detection)
130 deadlock_detection.end=True
147 self.assertGreater(deadlock_detection.count, 0)
/aosp_15_r20/external/rust/android-crates-io/crates/parking_lot/
DCargo.toml44 deadlock_detection = ["parking_lot_core/deadlock_detection"] qkey
DREADME.md70 can be enabled via the `deadlock_detection` feature.
122 `deadlock_detection` Cargo feature.
127 Note that the `deadlock_detection` and `send_guard` features are incompatible
/aosp_15_r20/system/media/audio_utils/tests/
H A Daudio_mutex_tests.cpp636 const auto deadlockInfo = android::audio_utils::mutex::deadlock_detection(tid1); in TEST_P()
751 const auto deadlockInfo = android::audio_utils::mutex::deadlock_detection(tid1); in TEST_P()
783 android::audio_utils::mutex::deadlock_detection( in TEST_P()
858 const auto deadlockInfo = android::audio_utils::mutex::deadlock_detection(tid1); in TEST_P()
888 android::audio_utils::mutex::deadlock_detection( in TEST_P()
/aosp_15_r20/external/rust/android-crates-io/crates/parking_lot_core/
DCargo.toml52 deadlock_detection = [ qkey
/aosp_15_r20/system/media/audio_utils/include/audio_utils/
H A Dmutex.h1186 deadlock_info_t deadlock_detection(pid_t tid, const StringArray& mutex_names) { in deadlock_detection() function
1485 deadlock_detection(pid_t tid) { in deadlock_detection() function
1486 return get_registry().deadlock_detection(tid, Attributes::order_names_); in deadlock_detection()
/aosp_15_r20/frameworks/av/media/utils/
H A DTimerThread.cpp165 auto deadlockInfo = audio_utils::mutex::deadlock_detection(analysis.timeoutTid); in getSnapshotAnalysis()