Searched defs:owner (Results 1 - 2 of 2) sorted by relevance

/art/runtime/
H A Dmonitor.cc83 Monitor::Monitor(Thread* self, Thread* owner, mirror::Object* obj, int32_t hash_code) argument
87 owner_(owner),
99 // We should only inflate a lock if the owner is ourselves or suspended. This avoids a race
100 // with the owner unlocking the thin-lock.
101 CHECK(owner == nullptr || owner == self || owner->IsSuspended());
105 Monitor::Monitor(Thread* self, Thread* owner, mirror::Object* obj, int32_t hash_code, argument
110 owner_(owner),
121 // We should only inflate a lock if the owner i
385 Thread* owner = owner_; local
401 FailedUnlock(GetObject(), self, owner, this); local
624 Thread* owner = monitor->owner_; local
653 Inflate(Thread* self, Thread* owner, mirror::Object* obj, int32_t hash_code) argument
686 Thread* owner; local
803 Thread* owner = local
1104 Thread* owner = owner_; local
[all...]
H A Dutils.cc66 uint64_t owner; local
67 CHECK_PTHREAD_CALL(pthread_threadid_np, (NULL, &owner), __FUNCTION__); // Requires Mac OS 10.6
68 return owner;

Completed in 7 milliseconds