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

  /art/runtime/
sirt_ref.h 29 SirtRef(Thread* self, T* object) : self_(self), sirt_(object) {
30 self_->PushSirt(&sirt_);
33 CHECK(self_->PopSirt() == &sirt_);
47 Thread* const self_; member in class:art::SirtRef
scoped_thread_state_change.h 34 : self_(self), thread_state_(new_thread_state), expected_has_no_thread_(false) {
35 if (UNLIKELY(self_ == NULL)) {
50 self_->SetState(new_thread_state);
55 self_->TransitionFromSuspendedToRunnable();
58 self_->TransitionFromRunnableToSuspended(new_thread_state);
65 if (UNLIKELY(self_ == NULL)) {
75 self_->TransitionFromSuspendedToRunnable();
77 self_->TransitionFromRunnableToSuspended(old_thread_state_);
80 self_->SetState(old_thread_state_);
87 return self_;
96 Thread* const self_; member in class:art::ScopedThreadStateChange
    [all...]
thread.cc 1345 Thread* const self_; member in class:art::BuildInternalStackTraceVisitor
1889 Thread* const self_; member in class:art::CatchBlockStackVisitor
    [all...]
object_utils.h 40 : self_(self), obj_(object) {
42 obj_->MonitorEnter(self_);
46 obj_->MonitorExit(self_);
50 Monitor::Wait(self_, obj_, 0, 0, false, kWaiting);
54 obj_->Notify(self_);
58 obj_->NotifyAll(self_);
62 Thread* const self_; member in class:art::ObjectLock
thread.h 419 return ThreadOffset(OFFSETOF_MEMBER(Thread, self_));
704 Thread* self_; variable
  /external/embunit/src/
TestCase.c 40 static TestCase* self_; variable
55 TestCase* ws = self_; /*push*/
57 self_ = self;
60 self_ = ws; /*pop*/
81 TestResult_addFailure(result_, (Test*)self_, (char*)msg, line, (char*)file);
  /art/runtime/base/
mutex.h 356 explicit MutexLock(Thread* self, Mutex& mu) EXCLUSIVE_LOCK_FUNCTION(mu) : self_(self), mu_(mu) {
357 mu_.ExclusiveLock(self_);
361 mu_.ExclusiveUnlock(self_);
365 Thread* const self_; member in class:art::MutexLock
377 self_(self), mu_(mu) {
378 mu_.SharedLock(self_);
382 mu_.SharedUnlock(self_);
386 Thread* const self_; member in class:art::ReaderMutexLock
399 self_(self), mu_(mu) {
400 mu_.ExclusiveLock(self_);
408 Thread* const self_; member in class:art::WriterMutexLock
    [all...]
  /external/chromium_org/remoting/host/win/
rdp_client.cc 83 scoped_refptr<Core> self_; member in class:remoting::RdpClient::Core
131 DCHECK(!self_);
169 self_ = this;
199 self_ = NULL;
  /art/runtime/arch/x86/
thread_x86.cc 123 self_ = this;
128 CHECK_EQ(THREAD_SELF_OFFSET, OFFSETOF_MEMBER(Thread, self_));
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_richcmp.py 195 def __lt__(self_, other): return 0
196 def __gt__(self_, other): return 0
197 def __eq__(self_, other): return 0
198 def __le__(self_, other): self.fail("This shouldn't happen")
199 def __ge__(self_, other): self.fail("This shouldn't happen")
200 def __ne__(self_, other): self.fail("This shouldn't happen")
201 def __cmp__(self_, other): raise RuntimeError, "expected"
test_exceptions.py 156 def __init__(self_):
test_descr.py     [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_richcmp.py 195 def __lt__(self_, other): return 0
196 def __gt__(self_, other): return 0
197 def __eq__(self_, other): return 0
198 def __le__(self_, other): self.fail("This shouldn't happen")
199 def __ge__(self_, other): self.fail("This shouldn't happen")
200 def __ne__(self_, other): self.fail("This shouldn't happen")
201 def __cmp__(self_, other): raise RuntimeError, "expected"
test_exceptions.py 156 def __init__(self_):
test_descr.py     [all...]
  /prebuilts/python/darwin-x86/2.7.5/include/python2.7/
pystate.h 192 typedef struct _frame *(*PyThreadFrameGetter)(PyThreadState *self_);
  /prebuilts/python/linux-x86/2.7.5/include/python2.7/
pystate.h 192 typedef struct _frame *(*PyThreadFrameGetter)(PyThreadState *self_);
  /external/chromium_org/v8/test/cctest/
test-log.cc 207 self_ = pthread_self();
211 void SendSigProf() { pthread_kill(self_, SIGPROF); }
231 pthread_t self_;
  /external/v8/test/cctest/
test-log.cc 178 self_ = pthread_self();
182 void SendSigProf() { pthread_kill(self_, SIGPROF); }
202 pthread_t self_;
  /external/chromium_org/remoting/host/
remoting_me2me_host.cc 292 scoped_refptr<HostProcess> self_; member in class:remoting::HostProcess
312 self_(this),
647 self_ = NULL;
    [all...]
  /external/chromium_org/third_party/cld/base/
logging.h 888 LogStream *self_; \/\/ Consistency check hack member in class:LogMessage::LogStream
    [all...]

Completed in 314 milliseconds