Searched refs:EDEADLK (Results 1 - 25 of 33) sorted by relevance

12

/external/chromium_org/native_client_sdk/src/libraries/third_party/pthreads-win32/
H A Dneed_errno.h115 #define EDEADLK 36 macro
139 #define EDEADLOCK EDEADLK
H A Dpthread_join.c80 * EDEADLK attempt to join thread with self
121 result = EDEADLK;
H A Dpthread_mutex_lock.c118 result = EDEADLK;
225 result = EDEADLK;
H A Dpthread_mutex_timedlock.c178 return EDEADLK;
283 return EDEADLK;
H A Dpthread.h283 #if !defined(EDEADLK)
285 # define EDEADLK EDEADLOCK macro
287 # define EDEADLK 36 /* This is the value in MSVC. */ macro
/external/kernel-headers/original/uapi/asm-generic/
H A Derrno.h6 #define EDEADLK 35 /* Resource deadlock would occur */ macro
30 #define EDEADLOCK EDEADLK
/external/tcpdump/win32/Include/
H A Derrno.h38 #define EDEADLK 35 /* Resource deadlock would occur */ macro
62 #define EDEADLOCK EDEADLK
/external/chromium_org/mojo/public/cpp/utility/lib/
H A Dmutex.cc48 assert(pthread_mutex_lock(&mutex_) == EDEADLK);
/external/chromium_org/third_party/libusb/src/msvc/
H A Derrno.h61 #define EDEADLK 36 macro
/external/libcxx/test/thread/thread.mutex/thread.lock/thread.lock.shared/thread.lock.shared.locking/
H A Dtry_lock.pass.cpp51 assert(e.code().value() == EDEADLK);
H A Dlock.pass.cpp48 assert(e.code().value() == EDEADLK);
H A Dtry_lock_for.pass.cpp56 assert(e.code().value() == EDEADLK);
H A Dtry_lock_until.pass.cpp56 assert(e.code().value() == EDEADLK);
/external/libcxx/test/thread/thread.mutex/thread.lock/thread.lock.unique/thread.lock.unique.locking/
H A Dtry_lock.pass.cpp46 assert(e.code().value() == EDEADLK);
H A Dtry_lock_for.pass.cpp51 assert(e.code().value() == EDEADLK);
H A Dlock.pass.cpp45 assert(e.code().value() == EDEADLK);
H A Dtry_lock_until.pass.cpp51 assert(e.code().value() == EDEADLK);
/external/chromium_org/net/base/
H A Dnet_errors_posix.cc68 case EDEADLK: // Resource deadlock avoided.
/external/kernel-headers/original/uapi/asm-mips/asm/
H A Derrno.h27 #define EDEADLK 45 /* Resource deadlock would occur */ macro
/external/libcxx/test/diagnostics/errno/
H A Dcerrno.pass.cpp83 #ifndef EDEADLK
84 #error EDEADLK not defined
/external/chromium_org/net/third_party/nss/ssl/
H A Dunix_err.c413 case EDEADLK: prError = PR_INSUFFICIENT_RESOURCES_ERROR; break;
449 case EDEADLK: prError = PR_DEADLOCK_ERROR; break;
/external/libcxx/test/diagnostics/syserr/
H A Derrc.pass.cpp89 static_assert(static_cast<int>(std::errc::resource_deadlock_would_occur) == EDEADLK, "");
/external/chromium_org/third_party/sqlite/src/src/
H A Dtest_syscall.c550 { "EDEADLK", EDEADLK },
/external/valgrind/main/include/vki/
H A Dvki-darwin.h532 #define VKI_EDEADLK EDEADLK
/external/chromium_org/third_party/libxml/src/
H A DxmlIO.c158 "Resource deadlock avoided",/* EDEADLK */
290 #ifdef EDEADLK
291 else if (errno == EDEADLK) code = XML_IO_EDEADLK;

Completed in 3279 milliseconds

12