HomeSort by relevance Sort by last modified time
    Searched refs:EBUSY (Results 1 - 25 of 408) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/ltp/testcases/kernel/syscalls/umount2/
umount2.h 28 if (ret == 0 || errno != EBUSY)
31 tst_resm(TINFO, "umount('%s', %i) failed with EBUSY, try %2i...",
40 errno = EBUSY;
  /external/ltp/testcases/open_posix_testsuite/conformance/interfaces/pthread_mutex_trylock/
4-1.c 10 * -[EBUSY] The mutex could not be acquired because it was already locked.
15 * -- Try to lock the mutex using pthread_mutex_trylock() and expect EBUSY
36 if (rc != EBUSY) {
37 fprintf(stderr, "Expected %d(EBUSY), got %d\n", EBUSY, rc);
3-1.c 39 else if (rc == EBUSY) {
1-1.c 17 pthread_mutex_trylock() and EBUSY is expected
46 /* Trylock the mutex and expect it returns EBUSY */
48 if (rc != EBUSY) {
49 fprintf(stderr, "Expected %d(EBUSY), got %d\n", EBUSY, rc);
63 } else if (rc == EBUSY) {
  /external/ltp/testcases/open_posix_testsuite/conformance/interfaces/pthread_mutex_destroy/speculative/
4-2.c 9 * locked mutex, it fails and returns EBUSY
15 * 4. Check that this may fail with EBUSY
43 if (rc != EBUSY) {
44 printf(ERROR_PREFIX "Test PASS: Expected %d(EBUSY) got %d, "
45 "though the standard states 'may' fail\n", EBUSY, rc);
  /bionic/libc/bionic/
pthread_spinlock.cpp 58 return lock->lock.trylock() ? 0 : EBUSY;
63 return lock->lock.trylock() ? 0 : EBUSY;
  /device/google/contexthub/firmware/os/platform/native/
i2c.c 64 return -EBUSY;
69 return -EBUSY;
  /bionic/libc/kernel/uapi/asm-generic/
errno-base.h 36 #define EBUSY 16
  /external/kernel-headers/original/uapi/asm-generic/
errno-base.h 20 #define EBUSY 16 /* Device or resource busy */
  /external/ltp/testcases/open_posix_testsuite/conformance/interfaces/pthread_cond_destroy/
3-1.c 35 else if (rc == EBUSY) {
  /external/ltp/testcases/open_posix_testsuite/conformance/interfaces/pthread_mutex_destroy/
3-1.c 35 else if (rc == EBUSY) {
  /external/ltp/testcases/open_posix_testsuite/conformance/interfaces/pthread_rwlock_destroy/
3-1.c 9 * [EBUSY] The implementation has detected an attempt to destroy the object referenced
41 if (rc == EBUSY) {
46 ("Test PASSED: Note*: pthread_rwlock_destroy() returned 0 instead of EBUSY, but standard specifies _may_ fail\n");
50 ("Test FAILED: Error at pthread_rwlock_destroy(), should return 0 or EBUSY, but returns %d\n",
  /external/ltp/testcases/open_posix_testsuite/conformance/interfaces/pthread_rwlock_init/
6-1.c 10 * [EBUSY] The implementation has detected an attempt to reinitialize the object
51 if (rc == EBUSY) {
56 ("Test PASSED: Note*: pthread_rwlock_init() returned 0 instead of EBUSY, but standard specifies _may_ fail\n");
60 ("Test FAILED: Error at pthread_rwlock_init(), should return 0 or EBUSY, but returns %d\n",
  /external/syslinux/dos/
errno.h 19 #define EBUSY 16 /* Device or resource busy */
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/asm-generic/
errno-base.h 19 #define EBUSY 16 /* Device or resource busy */
  /system/vold/model/
VolumeBase.cpp 54 return -EBUSY;
64 return -EBUSY;
74 return -EBUSY;
84 return -EBUSY;
94 return -EBUSY;
104 return -EBUSY;
114 return -EBUSY;
128 return -EBUSY;
208 return -EBUSY;
225 return -EBUSY;
    [all...]
  /external/autotest/client/cros/
rtc.py 43 if errnum != errno.EBUSY:
  /external/ltp/testcases/kernel/syscalls/umount/
umount01.c 41 if (TEST_RETURN != 0 && TEST_ERRNO == EBUSY) {
42 tst_res(TINFO, "umount() Failed with EBUSY "
  /external/ltp/testcases/open_posix_testsuite/conformance/interfaces/pthread_cond_init/
3-1.c 42 case EBUSY:
4-3.c 22 * Test assertion 4 - EBUSY is returned for re-initializing a
51 if (rc && rc != EBUSY) {
  /external/ltp/testcases/open_posix_testsuite/conformance/interfaces/pthread_mutex_init/
4-1.c 49 } else if (rc == EBUSY) {
  /external/ltp/testcases/open_posix_testsuite/conformance/interfaces/pthread_cond_destroy/speculative/
4-1.c 9 * Test that EBUSY is returned when pthread_cond_destroy() is called on a cond
89 if (rc != EBUSY) {
90 printf("UNSUPPORTED: The standard recommends returning %d, EBUSY, but got %d, %s\n",
91 EBUSY, rc, strerror(rc));
94 printf("PASSED: received EBUSY as per recommendation\n");
  /external/valgrind/drd/tests/
pth_cond_destroy_busy.stderr.exp 9 First pthread_cond_destroy() call returned EBUSY.
  /external/webrtc/talk/media/devices/
v4llookup.cc 67 if ((video_fd >= 0) || (errno == EBUSY)) {
71 if ((errno == EBUSY) ||
  /external/compiler-rt/test/tsan/
real_deadlock_detector_stress_test.cc 100 if (err != 0 && err != EBUSY) {
104 failed = err == EBUSY;
108 if (err != 0 && err != EBUSY) {
112 failed = err == EBUSY;

Completed in 583 milliseconds

1 2 3 4 5 6 7 8 91011>>