OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:GetThinLockId
(Results
1 - 3
of
3
) sorted by null
/art/runtime/mirror/
object-inl.h
46
inline uint32_t Object::
GetThinLockId
() {
47
return Monitor::
GetThinLockId
(monitor_);
/art/runtime/
monitor.cc
585
DCHECK_EQ(LW_LOCK_OWNER(*obj->GetRawLockWordAddress()), static_cast<int32_t>(self->
GetThinLockId
()));
589
VLOG(monitor) << "monitor: thread " << self->
GetThinLockId
()
603
uint32_t threadId = self->
GetThinLockId
();
714
if (LW_LOCK_OWNER(thin) == self->
GetThinLockId
()) {
767
if (LW_LOCK_OWNER(thin) != self->
GetThinLockId
()) {
778
VLOG(monitor) << StringPrintf("monitor: thread %d fattened lock %p by wait()", self->
GetThinLockId
(), thinp);
790
if (LW_LOCK_OWNER(thin) != self->
GetThinLockId
()) {
811
if (LW_LOCK_OWNER(thin) != self->
GetThinLockId
()) {
825
uint32_t Monitor::
GetThinLockId
(uint32_t raw_lock_word) {
830
return owner ? owner->
GetThinLockId
() : 0
[
all
...]
thread.h
251
uint32_t
GetThinLockId
() const {
Completed in 1983 milliseconds