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

1 2 3 4 5 6 78 91011

  /external/chromium/base/
shared_memory.h 13 #include <semaphore.h>
  /external/e2fsprogs/lib/ext2fs/
kernel-jbd.h 30 #include <asm/semaphore.h>
478 struct semaphore j_barrier;
510 /* Semaphore for locking against concurrent checkpoints */
511 struct semaphore j_checkpoint_sem;
514 struct semaphore j_sem;
658 /* This returns zero if we acquired the semaphore */
  /external/kernel-headers/original/linux/
kernelcapi.h 65 struct semaphore recv_sem;
device.h 21 #include <asm/semaphore.h>
147 struct semaphore sem; /* locks both the children and interfaces lists */
311 struct semaphore sem; /* semaphore to synchronize calls to
tty.h 59 struct semaphore pty_sem;
179 struct semaphore termios_sem;
  /external/libnfc-nxp/Linux_x86/
phDal4Nfc_messageQueueLib.c 36 #include <semaphore.h>
  /external/linux-tools-perf/
builtin-kvm.c 22 #include <semaphore.h>
  /external/oprofile/module/
compat22.h 113 #define DECLARE_MUTEX(foo) struct semaphore foo = MUTEX
  /external/valgrind/main/drd/
drd_clientobj.h 108 UInt value; // Semaphore value.
150 struct semaphore_info semaphore; member in union:drd_clientobj
  /external/valgrind/main/drd/tests/
pth_inconsistent_cond_wait.c 10 #include <semaphore.h>
110 snprintf(semaphore_name, sizeof(semaphore_name), "semaphore-%d", getpid());
circular_buffer.c 14 #include <semaphore.h>
28 #define DATA_SEMAPHORE_NAME "cb-data-semaphore"
29 #define FREE_SEMAPHORE_NAME "cb-free-semaphore"
35 /* Counting semaphore representing the number of data items in the buffer. */
37 /* Counting semaphore representing the number of free elements. */
  /hardware/samsung_slsi/exynos5/exynos_omx/openmax/exynos_omx/osal/
Exynos_OSAL_Thread.c 31 #include <semaphore.h>
  /hardware/ti/omap4xxx/domx/mm_osal/src/
timm_osal_semaphores.c 55 #include <semaphore.h>
95 /*Unnamed semaphore */
98 /*TIMM_OSAL_Error("Semaphore Create failed !"); */
130 /* Release the semaphore. */
133 /*TIMM_OSAL_Error("Semaphore Delete failed !"); */
168 /*TIMM_OSAL_Error("Semaphore Wait failed !"); */
176 /*TIMM_OSAL_Error("Semaphore blocked !"); */
192 /*TIMM_OSAL_Error("Semaphore Timed Wait failed !"); */
219 /* Release the semaphore. */
247 /* Release the semaphore. *
    [all...]
  /external/libvpx/libvpx/vp8/common/
threading.h 62 #include <mach/semaphore.h>
68 #include <semaphore.h>
  /device/lge/mako/camera/QCamera/stack/mm-camera-interface/src/
mm_camera_data.c 36 #include <semaphore.h>
  /external/kernel-headers/original/linux/netfilter/
nfnetlink.h 132 extern struct semaphore nfnl_sem;
  /external/nist-sip/java/gov/nist/javax/sip/stack/
SIPTransaction.java 47 import java.util.concurrent.Semaphore;
131 private Semaphore semaphore; field in class:SIPTransaction
332 this.semaphore = new Semaphore(1,true);
    [all...]
  /external/valgrind/main/helgrind/tests/
tc17_sembar.c 5 #include <semaphore.h>
7 /* This is really a test of semaphore handling
24 an extra semaphore field, xxx. This is not functionally useful,
tc23_bogus_condwait.c 7 #include <semaphore.h>
  /packages/apps/Nfc/nci/jni/
NativeLlcpConnectionlessSocket.cpp 17 #include <semaphore.h>
190 // Create the write semaphore
193 ALOGE ("%s: semaphore creation failed (errno=0x%08x)", __FUNCTION__, errno);
202 ALOGE ("%s: Failed to wait for write semaphore (errno=0x%08x)", __FUNCTION__, errno);
241 ALOGE ("%s: Failed to destroy sConnlessRecvSem semaphore (errno=0x%08x)", __FUNCTION__, errno);
  /packages/apps/Nfc/nxp/jni/
com_android_nfc.h 39 #include <semaphore.h>
196 /* Semaphore used to wait for callback */
com_android_nfc_NativeLlcpServiceSocket.cpp 17 #include <semaphore.h>
83 /* Create the local semaphore */
131 ALOGE("Failed to wait for semaphore (errno=0x%08x)", errno);
  /system/core/libsuspend/
autosuspend_wakeup_count.c 20 #include <semaphore.h>
68 ALOGE("Error waiting on semaphore: %s\n", buf);
90 ALOGE("Error releasing semaphore: %s\n", buf);
107 ALOGE("Error changing semaphore: %s\n", buf);
126 ALOGE("Error changing semaphore: %s\n", buf);
161 ALOGE("Error creating semaphore: %s\n", buf);
  /external/libusb_aah/libusb/os/
windows_usb.c 697 HANDLE semaphore; local
701 semaphore = CreateSemaphoreA(NULL, 1, 1, sem_name);
702 if (semaphore == NULL) {
703 usbi_err(ctx, "could not create semaphore: %s", windows_error_str(0));
707 // A successful wait brings our semaphore count to 0 (unsignaled)
708 // => any concurent wait stalls until the semaphore's release
709 if (WaitForSingleObject(semaphore, INFINITE) != WAIT_OBJECT_0) {
710 usbi_err(ctx, "failure to access semaphore: %s", windows_error_str(0));
711 CloseHandle(semaphore);
767 usbi_err(ctx, "could not create timer response semaphore - aborting")
1514 HANDLE semaphore; local
    [all...]
  /external/yaffs2/yaffs2/
yaffs_guts.h 625 struct semaphore sem; /* Semaphore for waiting on erasure.*/
626 struct semaphore grossLock; /* Gross locking semaphore */

Completed in 1473 milliseconds

1 2 3 4 5 6 78 91011