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

  /external/webkit/Source/JavaScriptCore/wtf/
Locker.h 35 template <typename T> class Locker {
36 WTF_MAKE_NONCOPYABLE(Locker);
38 Locker(T& lockable) : m_lockable(lockable) { m_lockable.lock(); }
39 ~Locker() { m_lockable.unlock(); }
46 using WTF::Locker;
  /hardware/libhardware/modules/gralloc/
gr.h 49 class Locker {
53 Locker& locker; member in class:Locker::Autolock
55 inline Autolock(Locker& locker) : locker(locker) { locker.lock(); }
56 inline ~Autolock() { locker.unlock(); }
58 inline Locker() { pthread_mutex_init(&mutex, 0);
    [all...]
  /hardware/msm7k/libgralloc/
gr.h 49 class Locker {
53 Locker& locker; member in class:Locker::Autolock
55 inline Autolock(Locker& locker) : locker(locker) { locker.lock(); }
56 inline ~Autolock() { locker.unlock(); }
58 inline Locker() { pthread_mutex_init(&mutex, 0);
    [all...]
  /hardware/msm7k/libgralloc-qsd8k/
gr.h 48 class Locker {
52 Locker& locker; member in class:Locker::Autolock
54 inline Autolock(Locker& locker) : locker(locker) { locker.lock(); }
55 inline ~Autolock() { locker.unlock(); }
57 inline Locker() { pthread_mutex_init(&mutex, 0);
    [all...]
  /external/v8/src/
v8threads.cc 40 // Track whether this V8 instance has ever called v8::Locker. This allows the
42 bool Locker::active_ = false;
45 // Constructor for the Locker object. Once the Locker is constructed the
47 Locker::Locker() : has_lock_(false), top_level_(true) {
48 // TODO(isolates): When Locker has Isolate parameter and it is provided, grab
50 // We pull default isolate for Locker constructor w/o p[arameter.
59 // Record that the Locker has been used at least once.
76 // initialize here, before anyone can call ~Locker() or Unlocker()
    [all...]
  /external/v8/include/
v8.h     [all...]

Completed in 1307 milliseconds