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

<<11121314151617181920>>

  /art/test/1914-get-local-instance/src/art/
Test1914.java 25 import java.util.concurrent.Semaphore;
103 public final Semaphore sem_wakeup_main;
104 public final Semaphore sem_wait;
107 sem_wakeup_main = new Semaphore(0);
108 sem_wait = new Semaphore(0);
  /art/test/1923-frame-pop/src/art/
Test1923.java 21 import java.util.concurrent.Semaphore;
131 public final Semaphore sem_wakeup_main;
132 public final Semaphore sem_wait;
135 sem_wakeup_main = new Semaphore(0);
136 sem_wait = new Semaphore(0);
  /art/test/1924-frame-pop-toggle/src/art/
Test1924.java 21 import java.util.concurrent.Semaphore;
131 public final Semaphore sem_wakeup_main;
132 public final Semaphore sem_wait;
135 sem_wakeup_main = new Semaphore(0);
136 sem_wait = new Semaphore(0);
  /art/test/1926-missed-frame-pop/src/art/
Test1926.java 21 import java.util.concurrent.Semaphore;
140 public final Semaphore sem_wakeup_main;
141 public final Semaphore sem_wait;
144 sem_wakeup_main = new Semaphore(0);
145 sem_wait = new Semaphore(0);
  /art/test/1930-monitor-info/src/art/
Test1930.java 19 import java.util.concurrent.Semaphore;
59 final Semaphore sem = new Semaphore(0);
93 final Semaphore sem = new Semaphore(0);
  /art/test/1939-proxy-frames/src/art/
Test1939.java 25 import java.util.concurrent.Semaphore;
86 public final Semaphore sem_wakeup_main;
87 public final Semaphore sem_wait;
90 sem_wakeup_main = new Semaphore(0);
91 sem_wait = new Semaphore(0);
  /art/tools/dexfuzz/src/dexfuzz/
StreamConsumer.java 25 import java.util.concurrent.Semaphore;
39 private Semaphore workToBeDone;
40 private Semaphore outputIsReady;
55 workToBeDone = new Semaphore(0);
56 outputIsReady = new Semaphore(0);
  /cts/hostsidetests/devicepolicy/app/DeviceAndProfileOwner/src/com/android/cts/deviceandprofileowner/
DelegationTest.java 35 import java.util.concurrent.Semaphore;
55 private Semaphore mReceivedScopeReportSemaphore;
56 private Semaphore mReceivedRunningSemaphore;
78 mReceivedScopeReportSemaphore = new Semaphore(0);
79 mReceivedRunningSemaphore = new Semaphore(0);
  /cts/hostsidetests/devicepolicy/app/ManagedProfile/src/com/android/cts/managedprofile/
CrossProfileWidgetPrimaryUserTest.java 33 import java.util.concurrent.Semaphore;
113 private final Semaphore mSemaphore = new Semaphore(0);
143 private final Semaphore mSemaphore = new Semaphore(0);
  /external/ltp/testcases/kernel/ipc/semaphore/
sem02.c 82 /* Create the semaphore set */
88 /* initialize data structure associated to the semaphore */
120 /* This thread sleeps 10 seconds then waits on the semaphore. As long
121 as someone has posted on the semaphore, and no undo has taken
139 /* This thread immediately posts on the semaphore and then immediately
sem01.c 22 * DESCRIPTION : Creates a semaphore and two processes. The processes
25 * always be fighting for control of the semaphore.
128 /* set up the semaphore */
  /external/ltp/testcases/kernel/syscalls/ipc/semctl/
semctl04.c 28 * create a semaphore set without read or alter permissions
42 * remove the semaphore set
104 /* if it exists, remove the semaphore resouce */
184 /* create a semaphore set without read or alter permissions */
186 tst_brkm(TBROK, cleanup, "couldn't create semaphore in setup");
  /external/valgrind/drd/tests/
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. */
  /frameworks/base/media/tests/MediaFrameworkTest/src/com/android/mediaframeworktest/functional/camera/
CameraFunctionalTest.java 23 import java.util.concurrent.Semaphore;
60 final Semaphore sem = new Semaphore(0);
99 final Semaphore sem = new Semaphore(0);
  /frameworks/base/media/tests/MediaFrameworkTest/src/com/android/mediaframeworktest/stress/
CameraStressTest.java 26 import java.util.concurrent.Semaphore;
67 final Semaphore sem = new Semaphore(0);
112 final Semaphore sem = new Semaphore(0);
  /packages/services/Car/tests/carservice_test/src/com/android/car/
CarProjectionManagerTest.java 41 import java.util.concurrent.Semaphore;
49 private final Semaphore mLongAvailable = new Semaphore(0);
50 private final Semaphore mAvailable = new Semaphore(0);
  /external/ImageMagick/MagickCore/
linked-list.c 52 #include "MagickCore/semaphore.h"
81 *semaphore;
128 LockSemaphoreInfo(list_info->semaphore);
137 UnlockSemaphoreInfo(list_info->semaphore);
179 LockSemaphoreInfo(list_info->semaphore);
193 UnlockSemaphoreInfo(list_info->semaphore);
233 LockSemaphoreInfo(list_info->semaphore);
243 UnlockSemaphoreInfo(list_info->semaphore);
244 RelinquishSemaphoreInfo(&list_info->semaphore);
281 LockSemaphoreInfo(list_info->semaphore);
79 *semaphore; member in struct:_LinkedListInfo
    [all...]
  /art/test/1900-track-alloc/src/art/
Test1900.java 23 import java.util.concurrent.Semaphore;
82 final Semaphore sem = new Semaphore(0);
  /bionic/tests/
sys_sem_test.cpp 42 // Create a semaphore.
48 // Check semaphore info.
74 // Destroy the semaphore.
  /cts/hostsidetests/ui/control/src/android/taskswitching/control/cts/
TaskSwitchingDeviceTest.java 32 import java.util.concurrent.Semaphore;
45 private final Semaphore mSemaphore = new Semaphore(0);
  /cts/tests/app/src/android/app/cts/
ListActivityTest.java 29 import java.util.concurrent.Semaphore;
111 final Semaphore token = new Semaphore(0);
  /cts/tests/tests/content/src/android/content/cts/
ReadableUriExtraToClipDataTest.java 33 import java.util.concurrent.Semaphore;
41 private final Semaphore mReadSuccessSemaphore = new Semaphore(0);
  /cts/tests/tests/graphics/jni/
VulkanTestHelpers.h 68 VkSemaphore semaphore() { return mSemaphore; } function in class:VkAHardwareBufferImage
91 VkImageView view, VkSemaphore semaphore,
95 VkImageView view, VkSemaphore semaphore,
  /cts/tests/tests/openglperf/src/android/openglperf/cts/
GlPlanetsActivity.java 24 import java.util.concurrent.Semaphore;
42 private final Semaphore mSem = new Semaphore(0);
  /cts/tests/tests/view/src/android/view/cts/
TextureViewStressTestActivity.java 33 import java.util.concurrent.Semaphore;
42 private final Semaphore mSemaphore = new Semaphore(0);

Completed in 845 milliseconds

<<11121314151617181920>>