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

  /external/webkit/JavaScriptCore/wtf/
Locker.h 35 template <typename T> class Locker : public Noncopyable {
37 Locker(T& lockable) : m_lockable(lockable) { m_lockable.lock(); }
38 ~Locker() { m_lockable.unlock(); }
45 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 45 // Track whether this V8 instance has ever called v8::Locker. This allows the
47 bool Locker::active_ = false;
50 // Constructor for the Locker object. Once the Locker is constructed the
52 Locker::Locker() : has_lock_(false), top_level_(true) {
53 // Record that the Locker has been used at least once.
61 // initialize here, before anyone can call ~Locker() or Unlocker().
65 // This may be a locker within an unlocker in which case we have to
82 bool Locker::IsLocked()
    [all...]
  /external/v8/include/
v8.h     [all...]

Completed in 324 milliseconds