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

  /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-initialization
    [all...]
  /libcore/luni/src/main/java/java/util/concurrent/
Semaphore.java 13 * A counting semaphore. Conceptually, a semaphore maintains a set of
17 * However, no actual permit objects are used; the {@code Semaphore} just
22 * a class that uses a semaphore to control access to a pool of items:
26 * private final Semaphore available = new Semaphore(MAX_AVAILABLE, true);
70 * the semaphore, guaranteeing that an item is available for use. When
72 * pool and a permit is returned to the semaphore, allowing another
75 * from being returned to the pool. The semaphore encapsulates the
80 * <p>A semaphore initialized to one, and which is used such that i
    [all...]
  /external/v8/src/
platform.h 128 class Semaphore;
246 // Factory method for creating platform dependent Semaphore.
247 // Please use delete to reclaim the storage for the returned Semaphore.
248 static Semaphore* CreateSemaphore(int count);
502 // Semaphore
504 // A semaphore object is a synchronization object that maintains a count. The
505 // count is decremented each time a thread completes a wait for the semaphore
506 // object and incremented each time a thread signals the semaphore. When the
507 // count reaches zero, threads waiting for the semaphore blocks until the
510 class Semaphore {
    [all...]
  /prebuilt/sdk/10/
android.jar 
  /prebuilt/sdk/11/
android.jar 
  /prebuilt/sdk/13/
android.jar 
  /prebuilt/sdk/4/
android.jar 
  /prebuilt/sdk/5/
android.jar 
  /prebuilt/sdk/6/
android.jar 
  /prebuilt/sdk/7/
android.jar 
  /prebuilt/sdk/8/
android.jar 
  /prebuilt/sdk/9/
android.jar 

Completed in 724 milliseconds