HomeSort by relevance Sort by last modified time
    Searched refs:sem_init (Results 26 - 50 of 73) sorted by null

12 3

  /external/valgrind/main/helgrind/tests/
tc18_semabuse.c 22 /* Do sem_init with huge initial count */
23 r= sem_init(&s1, 0, ~0);
26 r= sem_init(&s1, 0, 0);
tc24_nonzero_sem.c 47 return sem_init(s, pshared, count);
tc20_verifywrap.c 226 /* verifies wrap of sem_init */
227 /* Do sem_init with huge initial count - fails */
228 r= sem_init(&s1, 0, ~0); assert(r);
231 r= sem_init(&s1, 0, 0);
tc17_sembar.c 224 return sem_init(s, pshared, count);
tc23_bogus_condwait.c 100 return sem_init(s, pshared, count);
  /device/samsung/crespo/sec_mm/sec_omx/sec_osal/
SEC_OSAL_Semaphore.c 50 if (sem_init(sema, 0, 0) != 0)
112 if (sem_init(sema, 0, val) != 0)
  /external/valgrind/main/drd/tests/
sem_as_mutex.c 56 sem_init(&s_sem, 0, 1);
pth_detached_sem.c 53 sem_init(&s_sem, 0, 0);
pth_inconsistent_cond_wait.c 53 sem_init(p, 0, 0);
circular_buffer.c 68 sem_init(p, 0, value);
  /prebuilt/linux-x86/toolchain/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/
semaphore.h 37 extern int sem_init (sem_t *__sem, int __pshared, unsigned int __value)
  /external/libvpx/vp8/common/
threading.h 64 #define sem_init(sem, sem_attr1, sem_init_value) (int)((*sem = CreateEvent(NULL,FALSE,FALSE,NULL))==NULL) macro
74 #define sem_init(X,Y,Z) semaphore_create(mach_task_self(), X, SYNC_POLICY_FIFO, Z) macro
  /external/qemu/distrib/sdl-1.2.12/src/thread/pthread/
SDL_syssem.c 47 if ( sem_init(&sem->sem, 0, initial_value) < 0 ) {
48 SDL_SetError("sem_init() failed");
  /hardware/ti/omap4xxx/libtiutils/
Semaphore.cpp 113 return ErrorUtils::posixToAndroidError(sem_init(mSemaphore, 0x00, count));
  /system/extras/tests/bionic/libc/common/
test_sem_post.c 64 if ( sem_init( &semaphore, 0, 1 ) < 0 ) {
test_semaphore.c 116 if ( sem_init( &semaphore, 0, 1 ) < 0 ) {
  /external/qemu/distrib/sdl-1.2.12/src/thread/riscos/
SDL_syssem.c 93 if ( sem_init(&sem->sem_data, 0, initial_value) < 0 ) {
94 SDL_SetError("sem_init() failed");
  /external/libnfc-nxp/Linux_x86/
phDal4Nfc_messageQueueLib.c 79 if (sem_init (&pQueue->nProcessSemaphore, 0, 0) == -1)
  /frameworks/media/libvideoeditor/osal/src/
M4OSA_Semaphore.c 90 if (0 != sem_init(&semaphoreContext->semaphore, 0, initial_count))
  /hardware/ti/omap4xxx/domx/mm_osal/src/
timm_osal_semaphores.c 96 if (SUCCESS != sem_init(psem, 0, uInitCount))
  /external/libvpx/vp8/encoder/
ethreading.c 491 sem_init(&cpi->h_event_end_encoding, 0, 0);
505 sem_init(&cpi->h_event_start_encoding[ithread], 0, 0);
516 sem_init(&cpi->h_event_start_lpf, 0, 0);
517 sem_init(&cpi->h_event_end_lpf, 0, 0);
  /bionic/libc/bionic/
semaphore.c 90 int sem_init(sem_t *sem, int pshared, unsigned int value) function
  /external/e2fsprogs/lib/et/
error_message.c 68 sem_init(&_et_lock, 0, 1);
  /hardware/ti/omap3/dspbridge/libbridge/
DSPManager.c 95 if (sem_init(&semOpenClose, 0, 1) == -1) {
  /hardware/qcom/media/mm-video/vidc/vdec/test/
omx_vdec_test.cpp 1000 if (-1 == sem_init(&etb_sem, 0, 0))
1002 printf("Error - sem_init failed %d\n", errno);
1004 if (-1 == sem_init(&fbd_sem, 0, 0))
1006 printf("Error - sem_init failed %d\n", errno);
1008 if (-1 == sem_init(&seq_sem, 0, 0))
    [all...]

Completed in 1666 milliseconds

12 3