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

  /cts/suite/audio_quality/lib/include/
Semaphore.h 21 #include <semaphore.h>
26 * Simple semaphore interface for synchronization between client and server
28 class Semaphore {
30 Semaphore(int count = 0);
32 ~Semaphore();
34 /// down semaphore if it is already positive.
  /hardware/ti/omap4xxx/libtiutils/
Semaphore.h 20 #include <semaphore.h>
29 class Semaphore
33 Semaphore();
34 ~Semaphore();
36 //Release semaphore
39 ///Create the semaphore with initial count value
48 ///Current semaphore count
Semaphore.cpp 19 #include "Semaphore.h"
27 @brief Constructor for the semaphore class
32 Semaphore::Semaphore()
34 ///Initialize the semaphore to NULL
39 @brief Destructor of the semaphore class
45 Semaphore::~Semaphore()
51 @brief: Releases semaphore
55 @return One of the android error codes based on semaphore de-initializatio
    [all...]
  /cts/suite/audio_quality/lib/src/
Semaphore.cpp 17 #include "Semaphore.h"
20 Semaphore::Semaphore(int count)
27 Semaphore::~Semaphore()
32 void Semaphore::tryWait()
37 bool Semaphore::wait()
46 bool Semaphore::timedWait(int timeInMSec)
67 //LOGV("Semaphore::timedWait now %d-%d until %d-%d for %d msecs",
76 void Semaphore::post(
    [all...]
  /libcore/luni/src/main/java/java/util/concurrent/
Semaphore.java 12 * A counting semaphore. Conceptually, a semaphore maintains a set of
16 * However, no actual permit objects are used; the {@code Semaphore} just
21 * a class that uses a semaphore to control access to a pool of items:
25 * private final Semaphore available = new Semaphore(MAX_AVAILABLE, true);
67 * the semaphore, guaranteeing that an item is available for use. When
69 * pool and a permit is returned to the semaphore, allowing another
72 * from being returned to the pool. The semaphore encapsulates the
77 * <p>A semaphore initialized to one, and which is used such that i
    [all...]
  /external/v8/src/
platform.h 94 class Semaphore;
234 // Factory method for creating platform dependent Semaphore.
235 // Please use delete to reclaim the storage for the returned Semaphore.
236 static Semaphore* CreateSemaphore(int count);
579 // Semaphore
581 // A semaphore object is a synchronization object that maintains a count. The
582 // count is decremented each time a thread completes a wait for the semaphore
583 // object and incremented each time a thread signals the semaphore. When the
584 // count reaches zero, threads waiting for the semaphore blocks until the
587 class Semaphore {
    [all...]
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
org.eclipse.core.jobs_3.5.1.R36x_v20100824.jar 
org.eclipse.osgi_3.6.1.R36x_v20100806.jar 
org.eclipse.osgi_3.6.2.R36x_v20101103.jar 
org.eclipse.ui.workbench_3.6.1.M20101117-0800.jar 
  /prebuilts/tools/common/eclipse/
org.eclipse.osgi_3.6.2.R36x_v20110210.jar 
org.eclipse.ui.workbench_3.6.2.M20110210-1200.jar 
  /prebuilts/sdk/10/
android.jar 
  /prebuilts/sdk/11/
android.jar 
  /prebuilts/sdk/13/
android.jar 
  /prebuilts/sdk/16/
android.jar 
  /prebuilts/sdk/4/
android.jar 
  /prebuilts/sdk/5/
android.jar 
  /prebuilts/sdk/6/
android.jar 
  /prebuilts/sdk/7/
android.jar 
  /prebuilts/sdk/8/
android.jar 
  /prebuilts/sdk/9/
android.jar 
  /prebuilts/sdk/current/
android.jar 

Completed in 182 milliseconds