Home
last modified time | relevance | path

Searched refs:owner (Results 1 – 4 of 4) sorted by relevance

/dalvik/vm/
DSync.c118 Thread* owner; /* which thread currently owns the lock? */ member
253 Thread *owner; in lockOwner() local
265 owner = LW_MONITOR(lock)->owner; in lockOwner()
266 return owner ? owner->threadId : 0; in lockOwner()
465 if (mon->owner == self) { in lockMonitor()
496 mon->owner = self; in lockMonitor()
531 if (mon->owner == self) { in tryLockMonitor()
536 mon->owner = self; in tryLockMonitor()
556 if (mon->owner == self) { in unlockMonitor()
561 mon->owner = NULL; in unlockMonitor()
[all …]
/dalvik/libnativehelper/
DNOTICE25 "Licensor" shall mean the copyright owner or entity authorized by
26 the copyright owner that is granting the License.
64 submitted to Licensor for inclusion in the Work by the copyright owner
66 the copyright owner. For the purposes of this definition, "submitted"
73 designated in writing by the copyright owner as "Not a Contribution."
/dalvik/
DNOTICE25 "Licensor" shall mean the copyright owner or entity authorized by
26 the copyright owner that is granting the License.
64 submitted to Licensor for inclusion in the Work by the copyright owner
66 the copyright owner. For the purposes of this definition, "submitted"
73 designated in writing by the copyright owner as "Not a Contribution."
/dalvik/vm/interp/
DStack.c1252 Thread* owner; in dumpFrames() local
1253 if (extractMonitorEnterObject(thread, &obj, &owner)) { in dumpFrames()
1255 if (owner != NULL) { in dumpFrames()
1256 char* threadName = dvmGetThreadName(owner); in dumpFrames()
1259 obj, className, owner->threadId, threadName); in dumpFrames()