HomeSort by relevance Sort by last modified time
    Searched defs:sem_t (Results 1 - 3 of 3) sorted by null

  /bionic/libc/include/
semaphore.h 43 } sem_t; typedef in typeref:struct:__anon282
45 #define SEM_FAILED __BIONIC_CAST(reinterpret_cast, sem_t*, 0)
47 int sem_destroy(sem_t* __sem);
48 int sem_getvalue(sem_t* __sem, int* __value);
49 int sem_init(sem_t* __sem, int __shared, unsigned int __value);
50 int sem_post(sem_t* __sem);
51 int sem_timedwait(sem_t* __sem, const struct timespec* __ts);
58 int sem_timedwait_monotonic_np(sem_t* __sem, const struct timespec* __ts) __INTRODUCED_IN(28);
59 int sem_trywait(sem_t* __sem);
60 int sem_wait(sem_t* __sem)
    [all...]
  /external/libvpx/libvpx/vp8/common/
threading.h 91 #define sem_t HANDLE macro
108 } sem_t; typedef in typeref:struct:__anon29795
110 static inline int sem_init(sem_t *sem, int pshared, unsigned int value) {
121 static inline int sem_wait(sem_t *sem) {
142 static inline int sem_post(sem_t *sem) {
155 static inline int sem_destroy(sem_t *sem) {
168 #define sem_t semaphore_t macro
  /external/compiler-rt/lib/sanitizer_common/
sanitizer_platform_limits_posix.cc 1277 CHECK_TYPE_SIZE(sem_t); variable
    [all...]

Completed in 3442 milliseconds