HomeSort by relevance Sort by last modified time
    Searched full:semaphore (Results 176 - 200 of 1401) sorted by null

1 2 3 4 5 6 78 91011>>

  /external/deqp/framework/platform/android/
tcuAndroidRenderActivity.hpp 52 MESSAGE_SYNC, //!< Main thread requests sync. Data argument is de::Semaphore* that needs to be incremented.
64 de::Semaphore* semaphore; member in union:tcu::Android::Message::__anon18186
99 Message (MessageType type_, de::Semaphore* semaphore)
103 DE_ASSERT(semaphore);
104 payload.semaphore = semaphore;
  /external/ltp/testcases/open_posix_testsuite/conformance/interfaces/sem_close/
2-1.c 10 semaphore is available for reuse.
17 #include <semaphore.h>
3-1.c 10 sem_close will have no effect on the state of the semaphore if
18 #include <semaphore.h>
  /external/ltp/testcases/open_posix_testsuite/conformance/interfaces/sem_destroy/
4-1.c 10 * This test case verify the unamed semaphore is destroyed by calling
18 #include <semaphore.h>
  /external/ltp/testcases/open_posix_testsuite/conformance/interfaces/sem_getvalue/
5-1.c 11 * state of the semaphore.
17 #include <semaphore.h>
  /external/ltp/testcases/open_posix_testsuite/conformance/interfaces/sem_init/
2-1.c 10 * unamed semaphore is used in subsequent of sem_wait.
17 #include <semaphore.h>
2-2.c 10 * unamed semaphore is used in subsequent of sem_post.
17 #include <semaphore.h>
  /external/ltp/testcases/open_posix_testsuite/conformance/interfaces/sem_open/
1-1.c 11 close the semaphore and verify that open_sem returns 0.
18 #include <semaphore.h>
1-3.c 11 lock it with sem_wait. Making sure the semaphore is locked.
18 #include <semaphore.h>
1-4.c 11 try to un-lock it with sem_post. Making sure the semaphore is not locked.
18 #include <semaphore.h>
5-1.c 9 open_sem test case that attempts to open a new semaphore,
17 #include <semaphore.h>
  /external/ltp/testcases/open_posix_testsuite/conformance/interfaces/sem_post/
4-1.c 16 #include <semaphore.h>
32 /* Initial value of Semaphore is 0 */
  /external/ltp/testcases/open_posix_testsuite/conformance/interfaces/sem_timedwait/
7-1.c 9 /* This tests case will open a locked semaphore. The time will tick 5 times
23 #include <semaphore.h>
  /external/ltp/testcases/open_posix_testsuite/conformance/interfaces/sem_wait/
3-1.c 9 /* This test case verifies that the semaphore shall be locked until the
17 #include <semaphore.h>
  /external/ltp/testcases/open_posix_testsuite/conformance/interfaces/sigaction/templates/
template_16-1.in 25 * -> child registers a handler for %%MYSIG%% with SA_RESTART, then waits for the semaphore
26 * -> parent kills the child with %%MYSIG%%, then post the semaphore.
54 #include <semaphore.h>
157 /* Initialize the semaphore */
162 UNRESOLVED( ret, "Failed to init a semaphore" );
175 is waiting for the semaphore... */
199 UNRESOLVED( errno, "Failed to post the semaphore" );
214 UNRESOLVED( ret, "Failed to destroy the semaphore" );
  /external/syslinux/core/thread/
timeout.c 28 struct semaphore *sem = block->semaphore;
  /external/v8/src/libplatform/
task-queue.h 13 #include "src/base/platform/semaphore.h"
42 base::Semaphore process_queue_semaphore_;
  /external/valgrind/helgrind/tests/
tc18_semabuse.c 14 #include "safe-semaphore.h"
31 /* Do 'wait' on a bogus semaphore. This should fail, but on glibc
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/i386-linux-gnu/bits/
semaphore.h 21 # error "Never use <bits/semaphore.h> directly; include <semaphore.h> instead."
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/x86_64-linux-gnu/bits/
semaphore.h 21 # error "Never use <bits/semaphore.h> directly; include <semaphore.h> instead."
  /system/extras/perfprofd/
perfprofdmain.cc 41 // Check for existence of semaphore file in config directory
48 // Check for existence of semaphore file
  /external/python/cpython2/Lib/multiprocessing/
synchronize.py 36 'Lock', 'RLock', 'Semaphore', 'BoundedSemaphore', 'Condition', 'Event'
65 RECURSIVE_MUTEX, SEMAPHORE = range(2)
105 # Semaphore
108 class Semaphore(SemLock):
111 SemLock.__init__(self, SEMAPHORE, value, SEM_VALUE_MAX)
121 return '<Semaphore(value=%s)>' % value
124 # Bounded semaphore
127 class BoundedSemaphore(Semaphore):
130 SemLock.__init__(self, SEMAPHORE, value, value)
147 SemLock.__init__(self, SEMAPHORE, 1, 1
    [all...]
  /prebuilts/gdb/darwin-x86/lib/python2.7/multiprocessing/
synchronize.py 36 'Lock', 'RLock', 'Semaphore', 'BoundedSemaphore', 'Condition', 'Event'
65 RECURSIVE_MUTEX, SEMAPHORE = range(2)
105 # Semaphore
108 class Semaphore(SemLock):
111 SemLock.__init__(self, SEMAPHORE, value, SEM_VALUE_MAX)
121 return '<Semaphore(value=%s)>' % value
124 # Bounded semaphore
127 class BoundedSemaphore(Semaphore):
130 SemLock.__init__(self, SEMAPHORE, value, value)
147 SemLock.__init__(self, SEMAPHORE, 1, 1
    [all...]
  /prebuilts/gdb/linux-x86/lib/python2.7/multiprocessing/
synchronize.py 36 'Lock', 'RLock', 'Semaphore', 'BoundedSemaphore', 'Condition', 'Event'
65 RECURSIVE_MUTEX, SEMAPHORE = range(2)
105 # Semaphore
108 class Semaphore(SemLock):
111 SemLock.__init__(self, SEMAPHORE, value, SEM_VALUE_MAX)
121 return '<Semaphore(value=%s)>' % value
124 # Bounded semaphore
127 class BoundedSemaphore(Semaphore):
130 SemLock.__init__(self, SEMAPHORE, value, value)
147 SemLock.__init__(self, SEMAPHORE, 1, 1
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/multiprocessing/
synchronize.py 36 'Lock', 'RLock', 'Semaphore', 'BoundedSemaphore', 'Condition', 'Event'
65 RECURSIVE_MUTEX, SEMAPHORE = range(2)
105 # Semaphore
108 class Semaphore(SemLock):
111 SemLock.__init__(self, SEMAPHORE, value, SEM_VALUE_MAX)
121 return '<Semaphore(value=%s)>' % value
124 # Bounded semaphore
127 class BoundedSemaphore(Semaphore):
130 SemLock.__init__(self, SEMAPHORE, value, value)
147 SemLock.__init__(self, SEMAPHORE, 1, 1
    [all...]

Completed in 391 milliseconds

1 2 3 4 5 6 78 91011>>