HomeSort by relevance Sort by last modified time
    Searched refs:IsSuspended (Results 1 - 13 of 13) sorted by null

  /external/lldb/test/python_api/default-constructor/
sb_thread.py 28 obj.IsSuspended()
  /external/lldb/test/functionalities/thread/state/
TestThreadStates.py 126 self.assertFalse(thread.IsSuspended(), "Thread state is \'suspended\' during breakpoint 1.")
172 self.assertFalse(thread.IsSuspended(), "Thread state is \'suspended\' when it should be running.")
219 self.assertFalse(thread.IsSuspended(), "Thread state is \'suspended\' after expression evaluation.")
315 self.assertFalse(thread.IsSuspended(), "Thread state is \'suspended\' during breakpoint 1.")
324 self.assertFalse(thread.IsSuspended(), "Thread state is \'suspended\' when it should be running.")
340 self.assertFalse(thread.IsSuspended(), "Thread state is \'suspended\' after process stop.")
347 self.assertFalse(thread.IsSuspended(), "Thread state is \'suspended\' after expression evaluation.")
366 self.assertFalse(thread.IsSuspended(), "Thread state is \'suspended\' during breakpoint 2.")
  /external/lldb/scripts/Python/interface/
SBThread.i 179 IsSuspended();
268 __swig_getmethods__["is_suspended"] = IsSuspended
269 if _newclass: is_suspended = property(IsSuspended, None, doc='''A read only property that returns a boolean value that indicates if this thread is suspended.''')
  /external/lldb/include/lldb/API/
SBThread.h 154 IsSuspended();
  /art/runtime/
thread_list.cc 156 CHECK(thread->IsSuspended())
242 if (!thread->IsSuspended()) {
248 } while (!thread->IsSuspended());
424 // To check IsSuspended.
426 DCHECK(thread->IsSuspended());
500 // IsSuspended on the current thread will fail as the current thread is changed into
508 if (thread->IsSuspended()) {
577 // IsSuspended on the current thread will fail as the current thread is changed into
585 if (thread->IsSuspended()) {
610 CHECK(thread == self || thread->IsSuspended());
    [all...]
thread-inl.h 207 DCHECK(this == self || IsSuspended() || GetState() == kWaitingPerformingGc)
monitor.cc 101 CHECK(owner == nullptr || owner == self || owner->IsSuspended());
123 CHECK(owner == nullptr || owner == self || owner->IsSuspended());
139 CHECK(owner_ == nullptr || owner_ == self || owner_->IsSuspended());
    [all...]
stack.cc 95 DCHECK(thread == Thread::Current() || thread->IsSuspended()) << *thread;
102 DCHECK(thread == Thread::Current() || thread->IsSuspended()) << *thread;
524 DCHECK(thread_ == Thread::Current() || thread_->IsSuspended());
thread.cc 195 if (result != nullptr && !result->IsSuspended()) {
648 if (this != self && !IsSuspended()) {
    [all...]
thread.h 197 bool IsSuspended() const {
    [all...]
debugger.cc 401 return thread->IsSuspended() && thread->GetDebugSuspendCount() > 0;
    [all...]
  /external/lldb/source/API/
SBThread.cpp     [all...]
  /art/runtime/gc/collector/
mark_sweep.cc     [all...]

Completed in 406 milliseconds