Home
last modified time | relevance | path

Searched full:deadlock (Results 1 – 25 of 2750) sorted by relevance

12345678910>>...110

/aosp_15_r20/out/soong/raw-aosp_shiba/b7/
Db7442e20ad111b875eadd32cbfe88ef29a11ea4499 …/art/test/033-class-init-deadlock/art-run-test-033-class-init-deadlock/android_common/javac/art-ru…
100 …/art/test/033-class-init-deadlock/art-run-test-033-class-init-deadlock/android_common/javac/art-ru…
127deadlock/art-run-test-033-class-init-deadlock/android_common/lint-srcs.list.rsp __SBOX_SANDBOX_DIR…
130 …to: "out/soong/.intermediates/art/test/033-class-init-deadlock/art-run-test-033-class-init-deadloc…
134 …to: "out/soong/.intermediates/art/test/033-class-init-deadlock/art-run-test-033-class-init-deadloc…
138 …to: "out/soong/.intermediates/art/test/033-class-init-deadlock/art-run-test-033-class-init-deadloc…
142 …to: "out/soong/.intermediates/art/test/033-class-init-deadlock/art-run-test-033-class-init-deadloc…
146 …to: "out/soong/.intermediates/art/test/033-class-init-deadlock/art-run-test-033-class-init-deadloc…
150 …to: "out/soong/.intermediates/art/test/033-class-init-deadlock/art-run-test-033-class-init-deadloc…
154 …le: "out/soong/.intermediates/art/test/033-class-init-deadlock/art-run-test-033-class-init-deadloc…
[all …]
/aosp_15_r20/out/soong/raw-aosp_shiba/27/
D27d2a4b8bcb620a4ef0f070a6ff6b3043935a91099 …bly-initialized-deadlock/art-run-test-177-visibly-initialized-deadlock/android_common/javac/art-ru…
100 …bly-initialized-deadlock/art-run-test-177-visibly-initialized-deadlock/android_common/javac/art-ru…
127deadlock/art-run-test-177-visibly-initialized-deadlock/android_common/lint-srcs.list.rsp __SBOX_SA…
130 …/.intermediates/art/test/177-visibly-initialized-deadlock/art-run-test-177-visibly-initialized-dea…
134 …/.intermediates/art/test/177-visibly-initialized-deadlock/art-run-test-177-visibly-initialized-dea…
138 …/.intermediates/art/test/177-visibly-initialized-deadlock/art-run-test-177-visibly-initialized-dea…
142 …/.intermediates/art/test/177-visibly-initialized-deadlock/art-run-test-177-visibly-initialized-dea…
146 …/.intermediates/art/test/177-visibly-initialized-deadlock/art-run-test-177-visibly-initialized-dea…
150 …/.intermediates/art/test/177-visibly-initialized-deadlock/art-run-test-177-visibly-initialized-dea…
154 …/.intermediates/art/test/177-visibly-initialized-deadlock/art-run-test-177-visibly-initialized-dea…
[all …]
/aosp_15_r20/external/webrtc/sdk/android/native_unittests/stacktrace/
H A Dstacktrace_unittest.cc92 // This function should deadlock until Release() is called.
93 virtual void Deadlock() = 0;
95 // This function should release the thread stuck in Deadlock().
101 // Signaled when the deadlock region is entered.
104 // Defines an address range within the deadlock will occur.
107 // Signaled when the deadlock is done.
113 void Deadlock() override { event.Wait(rtc::Event::kForever); } in Deadlock() function in webrtc::test::__anon46dc48920111::RtcEventDeadlock
125 void Deadlock() override { MutexLock lock(&mutex_); } in Deadlock() function in webrtc::test::__anon46dc48920111::RtcCriticalSectionDeadlock
138 void Deadlock() override { in Deadlock() function in webrtc::test::__anon46dc48920111::SpinDeadlock
150 void Deadlock() override { sleep(1000000); } in Deadlock() function in webrtc::test::__anon46dc48920111::SleepDeadlock
[all …]
/aosp_15_r20/external/bcc/man/man8/
H A Ddeadlock.81 .TH deadlock 8 "2017-02-01" "USER COMMANDS"
3 deadlock \- Find potential deadlocks (lock order inversions)
6 .B deadlock [\-h] [\--binary BINARY] [\--dump-graph DUMP_GRAPH]
11 deadlock finds potential deadlocks in a running process. The program
22 inversion (potential deadlock). If the program finds a lock order inversion, the
76 .B deadlock 181
82 .B deadlock 181 --binary /lib/x86_64-linux-gnu/libpthread.so.0
91 .B deadlock 181 --binary /usr/local/bin/lockinversion
95 .B deadlock 181 --dump-graph graph.json
99 .B deadlock 181 --verbose
[all …]
/aosp_15_r20/external/toolchain-utils/go/patch/go-1.10.2/
H A Dgo5.patch1 runtime: deadlock detection does not work when using external linker.
7 want := "fatal error: all goroutines are asleep - deadlock!\n"
14 + t.Skip("deadlock detection fails with external linker")
19 + t.Skip("deadlock detection fails with external linker")
24 + t.Skip("deadlock detection fails with external linker")
29 + t.Skip("deadlock detection fails with external linker")
34 + t.Skip("deadlock detection fails with external linker")
36 want := "no goroutines (main called runtime.Goexit) - deadlock!"
52 + t.Skip("deadlock detection fails with external linker")
54 want := "no goroutines (main called runtime.Goexit) - deadlock!"
[all …]
/aosp_15_r20/external/bcc/tools/
H A Ddeadlock_example.txt1 Demonstrations of deadlock.
13 inversion (potential deadlock). If the program finds a lock order inversion, the
28 For shared (read-write) mutexes, a deadlock requires a cycle in the wait
38 # ./deadlock.py 181
41 Potential Deadlock Detected!
177 This is output from a process that has a potential deadlock involving 4 mutexes
234 Note that an actual deadlock did not occur, although this mutex lock ordering
235 creates the possibility of a deadlock, and this is a hint to the programmer to
242 # ./deadlock.py 181 --binary /usr/local/bin/lockinversion
256 # ./deadlock.py 181 --binary /lib/x86_64-linux-gnu/libpthread.so.0
[all …]
/aosp_15_r20/external/toolchain-utils/go/patch/go-1.10.3/
H A Dgo5.patch9 + t.Skip("deadlock detection fails with external linker")
14 + t.Skip("deadlock detection fails with external linker")
19 + t.Skip("deadlock detection fails with external linker")
24 + t.Skip("deadlock detection fails with external linker")
29 + t.Skip("deadlock detection fails with external linker")
31 want := "no goroutines (main called runtime.Goexit) - deadlock!"
37 + t.Skip("deadlock detection fails with external linker")
39 want := "no goroutines (main called runtime.Goexit) - deadlock!"
45 + t.Skip("deadlock detection fails with external linker")
48 want := "fatal error: no goroutines (main called runtime.Goexit) - deadlock!"
[all …]
/aosp_15_r20/external/toolchain-utils/go/patch/go-1.11.2/
H A Dgo5.patch9 + t.Skip("deadlock detection fails with external linker")
14 + t.Skip("deadlock detection fails with external linker")
19 + t.Skip("deadlock detection fails with external linker")
24 + t.Skip("deadlock detection fails with external linker")
29 + t.Skip("deadlock detection fails with external linker")
31 want := "no goroutines (main called runtime.Goexit) - deadlock!"
37 + t.Skip("deadlock detection fails with external linker")
39 want := "no goroutines (main called runtime.Goexit) - deadlock!"
45 + t.Skip("deadlock detection fails with external linker")
48 want := "fatal error: no goroutines (main called runtime.Goexit) - deadlock!"
[all …]
/aosp_15_r20/external/guava/guava/src/com/google/common/util/concurrent/
H A DCycleDetectingLockFactory.java48 * ReentrantReadWriteLock} instances that detect potential deadlock by checking for cycles in lock
74 * example involving two locks and two threads, deadlock occurs when one thread acquires Lock A, and
105 * deadlock situation, and the appropriate Policy is executed.
108 * <p>Note that detection of potential deadlock does not necessarily indicate that deadlock will
120 * potential deadlock, this class treats {@code ReadWriteLock} instances as equivalent to
122 * (i.e. cycles that will not actually result in deadlock), it simplifies the algorithm and
167 * Encapsulates the action to be taken when a potential deadlock is encountered. Clients can use
176 * Called when a potential deadlock is encountered. Implementations can throw the given {@code
180 * {@code tryLock()} technically recovers from deadlock by eventually timing out, this behavior
194 * When potential deadlock is detected, this policy results in the throwing of the {@code
[all …]
/aosp_15_r20/external/guava/android/guava/src/com/google/common/util/concurrent/
H A DCycleDetectingLockFactory.java48 * ReentrantReadWriteLock} instances that detect potential deadlock by checking for cycles in lock
74 * example involving two locks and two threads, deadlock occurs when one thread acquires Lock A, and
105 * deadlock situation, and the appropriate Policy is executed.
108 * <p>Note that detection of potential deadlock does not necessarily indicate that deadlock will
120 * potential deadlock, this class treats {@code ReadWriteLock} instances as equivalent to
122 * (i.e. cycles that will not actually result in deadlock), it simplifies the algorithm and
167 * Encapsulates the action to be taken when a potential deadlock is encountered. Clients can use
176 * Called when a potential deadlock is encountered. Implementations can throw the given {@code
180 * {@code tryLock()} technically recovers from deadlock by eventually timing out, this behavior
194 * When potential deadlock is detected, this policy results in the throwing of the {@code
[all …]
/aosp_15_r20/out/soong/raw-aosp_shiba/aa/
Daaa00dbeca2c644eb681e62e3c81973a391d8e893 from: "art/test/033-class-init-deadlock/expected-stderr.txt"
4 to: "art/test/033-class-init-deadlock/expected-stderr.txt"
7 …"cp -f art/test/033-class-init-deadlock/expected-stderr.txt __SBOX_SANDBOX_DIR__/out/art-run-test-…
9 from: "out/art-run-test-033-class-init-deadlock-expected-stderr.txt"
10 …/art/test/033-class-init-deadlock/art-run-test-033-class-init-deadlock-expected-stderr/gen/art-run…
/aosp_15_r20/out/soong/raw-aosp_shiba/2d/
D2d25d780acb20eb0ea6b6f679da501775cdfc8bf3 from: "art/test/177-visibly-initialized-deadlock/expected-stderr.txt"
4 to: "art/test/177-visibly-initialized-deadlock/expected-stderr.txt"
7 …st/177-visibly-initialized-deadlock/expected-stderr.txt __SBOX_SANDBOX_DIR__/out/art-run-test-177-…
9 from: "out/art-run-test-177-visibly-initialized-deadlock-expected-stderr.txt"
10 …bly-initialized-deadlock/art-run-test-177-visibly-initialized-deadlock-expected-stderr/gen/art-run…
/aosp_15_r20/out/soong/raw-aosp_shiba/ae/
Dae33488a9fdd141b9954aaedd72c8f1377dd03633 from: "art/test/177-visibly-initialized-deadlock/expected-stdout.txt"
4 to: "art/test/177-visibly-initialized-deadlock/expected-stdout.txt"
7 …st/177-visibly-initialized-deadlock/expected-stdout.txt __SBOX_SANDBOX_DIR__/out/art-run-test-177-…
9 from: "out/art-run-test-177-visibly-initialized-deadlock-expected-stdout.txt"
10 …bly-initialized-deadlock/art-run-test-177-visibly-initialized-deadlock-expected-stdout/gen/art-run…
/aosp_15_r20/out/soong/raw-aosp_shiba/84/
D847f77202c09d0538734bc222eec946a46245be43 from: "art/test/033-class-init-deadlock/expected-stdout.txt"
4 to: "art/test/033-class-init-deadlock/expected-stdout.txt"
7 …"cp -f art/test/033-class-init-deadlock/expected-stdout.txt __SBOX_SANDBOX_DIR__/out/art-run-test-…
9 from: "out/art-run-test-033-class-init-deadlock-expected-stdout.txt"
10 …/art/test/033-class-init-deadlock/art-run-test-033-class-init-deadlock-expected-stdout/gen/art-run…
/aosp_15_r20/art/test/033-class-init-deadlock/
H A DAndroid.bp3 // Build rules for ART run-test `033-class-init-deadlock`.
16 name: "art-run-test-033-class-init-deadlock",
21 ":art-run-test-033-class-init-deadlock-expected-stdout",
22 ":art-run-test-033-class-init-deadlock-expected-stderr",
31 name: "art-run-test-033-class-init-deadlock-expected-stdout",
32 out: ["art-run-test-033-class-init-deadlock-expected-stdout.txt"],
39 name: "art-run-test-033-class-init-deadlock-expected-stderr",
40 out: ["art-run-test-033-class-init-deadlock-expected-stderr.txt"],
/aosp_15_r20/art/test/177-visibly-initialized-deadlock/
H A DAndroid.bp3 // Build rules for ART run-test `177-visibly-initialized-deadlock`.
16 name: "art-run-test-177-visibly-initialized-deadlock",
21 ":art-run-test-177-visibly-initialized-deadlock-expected-stdout",
22 ":art-run-test-177-visibly-initialized-deadlock-expected-stderr",
28 name: "art-run-test-177-visibly-initialized-deadlock-expected-stdout",
29 out: ["art-run-test-177-visibly-initialized-deadlock-expected-stdout.txt"],
36 name: "art-run-test-177-visibly-initialized-deadlock-expected-stderr",
37 out: ["art-run-test-177-visibly-initialized-deadlock-expected-stderr.txt"],
/aosp_15_r20/packages/services/Car/tests/carservice_unit_test/src/com/android/car/
DCarUxRestrictionsManagerServiceTest.java366 // finish in 20s, we probably encountered a deadlock.
380 // A deadlock can exist when the dispatching of a listener is synchronized. For instance, in testInitService_NoDeadlockWithCarDrivingStateService()
382 // deadlock risk occurs if: in testInitService_NoDeadlockWithCarDrivingStateService()
394 // locked and waiting on each other, hence the deadlock. in testInitService_NoDeadlockWithCarDrivingStateService()
417 // If there is a deadlock while waiting for init to complete, we will in testInitService_NoDeadlockWithCarDrivingStateService()
428 // This line won't execute in the deadlock flow. However, it is an example in testInitService_NoDeadlockWithCarDrivingStateService()
454 // each other, so we would encounter a deadlock. in testInitService_NoDeadlockWithCarDrivingStateService()
457 // If there is a deadlock in init(), then this will never be called in testInitService_NoDeadlockWithCarDrivingStateService()
469 // finish in 20s, we probably encountered a deadlock.
483 // See testInitService_NoDeadlockWithCarDrivingStateService for details on why a deadlock in testSetUxRChangeBroadcastEnabled_NoDeadlockWithCarDrivingStateService()
[all …]
/aosp_15_r20/out/soong/raw-aosp_shiba/48/
D486ac967f48eff770f76ac1519c1ccc3c9727d0f85 from: "art/test/177-visibly-initialized-deadlock/Android.bp"
86 to: "art/test/177-visibly-initialized-deadlock/Android.bp"
89 from: "art/test/177-visibly-initialized-deadlock/expected-stderr.txt"
90 to: "art/test/177-visibly-initialized-deadlock/expected-stderr.txt"
93 from: "art/test/177-visibly-initialized-deadlock/expected-stdout.txt"
94 to: "art/test/177-visibly-initialized-deadlock/expected-stdout.txt"
97 from: "art/test/177-visibly-initialized-deadlock/info.txt"
98 to: "art/test/177-visibly-initialized-deadlock/info.txt"
101 from: "art/test/177-visibly-initialized-deadlock/src/Main.java"
102 to: "art/test/177-visibly-initialized-deadlock/src/Main.java"
[all …]
/aosp_15_r20/out/soong/raw-aosp_shiba/30/
D30c528a17a00c3bb0063d5604952862dedc52b8485 from: "art/test/177-visibly-initialized-deadlock/Android.bp"
86 to: "art/test/177-visibly-initialized-deadlock/Android.bp"
89 from: "art/test/177-visibly-initialized-deadlock/expected-stderr.txt"
90 to: "art/test/177-visibly-initialized-deadlock/expected-stderr.txt"
93 from: "art/test/177-visibly-initialized-deadlock/expected-stdout.txt"
94 to: "art/test/177-visibly-initialized-deadlock/expected-stdout.txt"
97 from: "art/test/177-visibly-initialized-deadlock/info.txt"
98 to: "art/test/177-visibly-initialized-deadlock/info.txt"
101 from: "art/test/177-visibly-initialized-deadlock/src/Main.java"
102 to: "art/test/177-visibly-initialized-deadlock/src/Main.java"
[all …]
/aosp_15_r20/out/soong/raw-aosp_shiba/09/
D096f474ef508e9edbc96a1bff39e7c5b4a61ea1685 from: "art/test/177-visibly-initialized-deadlock/Android.bp"
86 to: "art/test/177-visibly-initialized-deadlock/Android.bp"
89 from: "art/test/177-visibly-initialized-deadlock/expected-stderr.txt"
90 to: "art/test/177-visibly-initialized-deadlock/expected-stderr.txt"
93 from: "art/test/177-visibly-initialized-deadlock/expected-stdout.txt"
94 to: "art/test/177-visibly-initialized-deadlock/expected-stdout.txt"
97 from: "art/test/177-visibly-initialized-deadlock/info.txt"
98 to: "art/test/177-visibly-initialized-deadlock/info.txt"
101 from: "art/test/177-visibly-initialized-deadlock/src/Main.java"
102 to: "art/test/177-visibly-initialized-deadlock/src/Main.java"
[all …]
/aosp_15_r20/external/sdv/vsomeip/
DCHANGES218 - Fix deadlock when sending messages
229 - Use set of serializers to avoid deadlock situation
245 - Fix possible deadlock when expiring a remote subscription and
383 - Fix possible deadlock when receiving invalid responses from remote
447 - Fix possible deadlock on application shutdown
460 - Fix possible deadlock on application shutdown
524 - Fix deadlock in conjunction with configured client ports
590 - Fix possible deadlock on application shutdown
593 - Fix potential deadlock when expiring remote subscriptions
604 - Fix possible deadlock on application shutdown
[all …]
/aosp_15_r20/out/soong/raw-aosp_shiba/64/
D6447e42ba24797c4fd38a0a98f875326d8d3340e53 from: "art/test/033-class-init-deadlock/Android.bp"
54 to: "art/test/033-class-init-deadlock/Android.bp"
57 from: "art/test/033-class-init-deadlock/expected-stderr.txt"
58 to: "art/test/033-class-init-deadlock/expected-stderr.txt"
61 from: "art/test/033-class-init-deadlock/expected-stdout.txt"
62 to: "art/test/033-class-init-deadlock/expected-stdout.txt"
65 from: "art/test/033-class-init-deadlock/info.txt"
66 to: "art/test/033-class-init-deadlock/info.txt"
69 from: "art/test/033-class-init-deadlock/src/Main.java"
70 to: "art/test/033-class-init-deadlock/src/Main.java"
[all …]
/aosp_15_r20/out/soong/raw-aosp_shiba/bf/
Dbf389457da2f4fc2e1492dfb0fff826df48d705b53 from: "art/test/033-class-init-deadlock/Android.bp"
54 to: "art/test/033-class-init-deadlock/Android.bp"
57 from: "art/test/033-class-init-deadlock/expected-stderr.txt"
58 to: "art/test/033-class-init-deadlock/expected-stderr.txt"
61 from: "art/test/033-class-init-deadlock/expected-stdout.txt"
62 to: "art/test/033-class-init-deadlock/expected-stdout.txt"
65 from: "art/test/033-class-init-deadlock/info.txt"
66 to: "art/test/033-class-init-deadlock/info.txt"
69 from: "art/test/033-class-init-deadlock/src/Main.java"
70 to: "art/test/033-class-init-deadlock/src/Main.java"
[all …]
/aosp_15_r20/out/soong/raw-aosp_shiba/58/
D588883f18435751cebebbbe7bf2af1b5e700e3b153 from: "art/test/033-class-init-deadlock/Android.bp"
54 to: "art/test/033-class-init-deadlock/Android.bp"
57 from: "art/test/033-class-init-deadlock/expected-stderr.txt"
58 to: "art/test/033-class-init-deadlock/expected-stderr.txt"
61 from: "art/test/033-class-init-deadlock/expected-stdout.txt"
62 to: "art/test/033-class-init-deadlock/expected-stdout.txt"
65 from: "art/test/033-class-init-deadlock/info.txt"
66 to: "art/test/033-class-init-deadlock/info.txt"
69 from: "art/test/033-class-init-deadlock/src/Main.java"
70 to: "art/test/033-class-init-deadlock/src/Main.java"
[all …]
/aosp_15_r20/external/rust/android-crates-io/crates/parking_lot/src/
Ddeadlock.rs1 //! \[Experimental\] Deadlock detection
12 //! use parking_lot::deadlock;
18 //! let deadlocks = deadlock::check_deadlock();
25 //! println!("Deadlock #{}", i);
37 pub use parking_lot_core::deadlock::check_deadlock;
38 pub(crate) use parking_lot_core::deadlock::{acquire_resource, release_resource};
48 // We need to serialize these tests since deadlock detection uses global state
52 use parking_lot_core::deadlock::check_deadlock; in check_deadlock()

12345678910>>...110