Home
last modified time | relevance | path

Searched refs:EDEADLK (Results 1 – 25 of 135) sorted by relevance

123456

/external/cronet/buildtools/third_party/libc++/trunk/include/__mutex/
Dunique_lock.h119 __throw_system_error(EDEADLK, "unique_lock::lock: already locked"); in lock()
129 __throw_system_error(EDEADLK, "unique_lock::try_lock: already locked"); in try_lock()
140 __throw_system_error(EDEADLK, "unique_lock::try_lock_for: already locked"); in try_lock_for()
151 __throw_system_error(EDEADLK, "unique_lock::try_lock_until: already locked"); in try_lock_until()
/external/ltp/testcases/open_posix_testsuite/conformance/interfaces/sem_wait/
Dcoverage.txt5 -- EDEADLK: A deadlock condition was detected.
11 TODO: Help create a test case for the EDEADLK ERROR code.
/external/rust/crates/nix/src/
Derrno.rs183 EDEADLK => "Resource deadlock would occur", in desc()
1159 EDEADLK = libc::EDEADLK, enumerator
1262 pub const EDEADLOCK: Errno = Errno::EDEADLK;
1304 libc::EDEADLK => EDEADLK, in from_i32()
1425 EDEADLK = libc::EDEADLK, enumerator
1526 pub const EDEADLOCK: Errno = Errno::EDEADLK;
1543 libc::EDEADLK => EDEADLK, in from_i32()
1661 EDEADLK = libc::EDEADLK, enumerator
1752 pub const EDEADLOCK: Errno = Errno::EDEADLK;
1770 libc::EDEADLK => EDEADLK, in from_i32()
[all …]
/external/kernel-headers/original/uapi/asm-generic/
Derrno.h7 #define EDEADLK 35 /* Resource deadlock would occur */ macro
40 #define EDEADLOCK EDEADLK
/external/musl/arch/generic/bits/
Derrno.h35 #define EDEADLK 35 macro
58 #define EDEADLOCK EDEADLK
/external/musl/src/thread/
Dpthread_mutex_timedlock.c48 case EDEADLK: in pthread_mutex_timedlock_pi()
80 return EDEADLK; in __pthread_mutex_timedlock()
/external/ltp/testcases/open_posix_testsuite/conformance/definitions/errno_h/
D3-2.c41 EDEADLK, "EDEADLK", EDEADLK,}, {
/external/libcxx/include/
Derrno.h376 #ifndef EDEADLK
377 #define EDEADLK 9975 macro
D__mutex_base221 __throw_system_error(EDEADLK, "unique_lock::lock: already locked");
233 __throw_system_error(EDEADLK, "unique_lock::try_lock: already locked");
246 __throw_system_error(EDEADLK, "unique_lock::try_lock_for: already locked");
259 __throw_system_error(EDEADLK, "unique_lock::try_lock_until: already locked");
D__errc87 resource_deadlock_would_occur, // EDEADLK
196 resource_deadlock_would_occur = EDEADLK,
/external/cronet/buildtools/third_party/libc++/trunk/include/
Derrno.h377 #ifndef EDEADLK
378 #define EDEADLK 9975 macro
/external/libcxx/test/std/diagnostics/errno/
Dcerrno.pass.cpp79 #ifndef EDEADLK
80 #error EDEADLK not defined
/external/cronet/buildtools/third_party/libc++/trunk/test/std/diagnostics/errno/
Dcerrno.pass.cpp79 #ifndef EDEADLK
80 #error EDEADLK not defined
/external/ltp/testcases/open_posix_testsuite/conformance/interfaces/pthread_join/
D5-1.c43 if ((ret != EINVAL) && (ret != ESRCH) && (ret != EDEADLK)) { in main()
/external/ltp/testcases/open_posix_testsuite/conformance/interfaces/pthread_detach/
D4-2.c53 if (pthread_join(new_th, NULL) == EDEADLK) { in main()
/external/ltp/testcases/open_posix_testsuite/conformance/interfaces/pthread_mutex_lock/
D2-1.c44 } else if (rc == EDEADLK) { in main()
/external/ltp/testcases/open_posix_testsuite/conformance/interfaces/pthread_rwlock_wrlock/
D3-1.c64 if (rc == EDEADLK) { in main()
/external/ltp/testcases/open_posix_testsuite/conformance/interfaces/pthread_spin_lock/
D3-1.c67 if (rc == EDEADLK) { in main()
/external/linux-kselftest/tools/testing/selftests/bpf/progs/
Dtimer.c182 if (bpf_timer_cancel(&val->timer) != -EDEADLK) in timer_cb2()
203 if (bpf_timer_cancel(&val->timer) != -EDEADLK) in timer_cb2()
/external/libcxx/test/std/thread/thread.mutex/thread.lock/thread.lock.unique/thread.lock.unique.locking/
Dtry_lock.pass.cpp51 assert(e.code().value() == EDEADLK); in main()
Dtry_lock_for.pass.cpp56 assert(e.code().value() == EDEADLK); in main()
/external/cronet/buildtools/third_party/libc++/trunk/test/std/thread/thread.mutex/thread.lock/thread.lock.shared/thread.lock.shared.locking/
Dtry_lock.pass.cpp55 assert(e.code().value() == EDEADLK); in main()
/external/cronet/buildtools/third_party/libc++/trunk/test/std/thread/thread.mutex/thread.lock/thread.lock.unique/thread.lock.unique.locking/
Dtry_lock.pass.cpp53 assert(e.code().value() == EDEADLK); in main()
Dtry_lock_for.pass.cpp57 assert(e.code().value() == EDEADLK); in main()
/external/libcxx/test/std/thread/thread.mutex/thread.lock/thread.lock.shared/thread.lock.shared.locking/
Dtry_lock.pass.cpp52 assert(e.code().value() == EDEADLK); in main()

123456