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

1 2 3

  /art/runtime/gc/
scoped_gc_critical_section.cc 30 : self_(self) {
37 if (self_ != nullptr) {
38 self_->EndAssertNoThreadSuspension(old_cause_);
40 Runtime::Current()->GetHeap()->FinishGC(self_, collector::kGcTypeNone);
scoped_gc_critical_section.h 40 Thread* const self_; member in class:art::gc::ScopedGCCriticalSection
  /external/webrtc/webrtc/modules/audio_processing/aec/
system_delay_unittest.cc 45 Aec* self_; member in class:__anon38949::SystemDelayTest
57 : handle_(NULL), self_(NULL), samples_per_frame_(0) {
71 self_ = reinterpret_cast<Aec*>(handle_);
101 EXPECT_EQ(0, WebRtcAec_system_delay(self_->aec));
128 WebRtcAec_system_delay(self_->aec));
139 if (WebRtcAec_delay_agnostic_enabled(self_->aec) == 1) {
145 EXPECT_EQ(0, self_->startup_phase);
153 if (self_->startup_phase == 0) {
163 WebRtcAec_system_delay(self_->aec));
200 WebRtcAec_enable_extended_filter(self_->aec, extended_filter)
    [all...]
  /prebuilts/misc/common/swig/include/2.0.11/typemaps/
attribute.swg 152 template < class C > inline AttributeType %mangle(Class) ##_## AttributeName ## _get(const C* self_) {
155 template < class C > inline AttributeType %mangle(Class) ##_## AttributeName ## _get(C* self_) {
158 template < class C > inline void %mangle(Class) ##_## AttributeName ## _set(C* self_, AttributeType val_) {
164 #define %mangle(Class) ##_## AttributeName ## _get(self_) GetMethodCall
165 #define %mangle(Class) ##_## AttributeName ## _set(self_, val_) SetMethodCall
179 template < class C > inline AttributeType %mangle(Class) ##_## AttributeName ## _get(const C* self_) {
182 template < class C > inline AttributeType %mangle(Class) ##_## AttributeName ## _get(C* self_) {
188 #define %mangle(Class) ##_## AttributeName ## _get(self_) GetMethodCall
198 %attribute_custom(%arg(Class), %arg(AttributeType), AttributeName, GetMethod, SetMethod, self_->GetMethod(), self_->SetMethod(val_)
    [all...]
  /art/runtime/
object_lock.cc 26 ObjectLock<T>::ObjectLock(Thread* self, Handle<T> object) : self_(self), obj_(object) {
28 obj_->MonitorEnter(self_);
33 obj_->MonitorExit(self_);
38 Monitor::Wait(self_, obj_.Get(), 0, 0, false, kWaiting);
43 obj_->Notify(self_);
48 obj_->NotifyAll(self_);
52 ObjectTryLock<T>::ObjectTryLock(Thread* self, Handle<T> object) : self_(self), obj_(object) {
54 acquired_ = obj_->MonitorTryEnter(self_) != nullptr;
60 obj_->MonitorExit(self_);
scoped_thread_state_change-inl.h 31 : self_(self), thread_state_(new_thread_state), expected_has_no_thread_(false) {
32 if (UNLIKELY(self_ == nullptr)) {
36 CHECK(runtime == nullptr || !runtime->IsStarted() || runtime->IsShuttingDown(self_));
44 self_->TransitionFromSuspendedToRunnable();
46 self_->TransitionFromRunnableToSuspended(new_thread_state);
49 self_->SetState(new_thread_state);
56 if (UNLIKELY(self_ == nullptr)) {
65 self_->TransitionFromSuspendedToRunnable();
67 self_->TransitionFromRunnableToSuspended(old_thread_state_);
70 self_->SetState(old_thread_state_)
    [all...]
scoped_thread_state_change.h 50 return self_;
57 Thread* const self_ = nullptr; member in class:art::ScopedThreadStateChange
72 return self_;
115 : self_(nullptr), env_(nullptr), vm_(reinterpret_cast<JavaVMExt*>(vm)) {}
124 Thread* const self_; member in class:art::ScopedObjectAccessAlreadyRunnable
203 Thread* const self_; member in class:art::ScopedThreadSuspension
object_lock.h 42 Thread* const self_; member in class:art::ObjectLock
60 Thread* const self_; member in class:art::ObjectTryLock
handle_scope-inl.h 47 self_(self) {
49 self_->PushHandleScope(this);
54 BaseHandleScope* top_handle_scope = self_->PopHandleScope();
57 Locks::mutator_lock_->AssertSharedHeld(self_);
201 self_(self) {
203 self_->PushHandleScope(this);
207 BaseHandleScope* top_handle_scope = self_->PopHandleScope();
quick_exception_handler.cc 42 : self_(self),
147 self_->DumpStack(LOG_STREAM(INFO) << "Delivering exception: " << exception->PrettyTypeOf()
150 StackHandleScope<1> hs(self_);
154 CatchBlockStackVisitor visitor(self_, context_, &exception_ref, this);
170 DCHECK(!self_->IsExceptionPending());
173 self_->SetException(exception_ref.Get());
221 self_->DumpStack(LOG_STREAM(INFO) << "Setting catch phis: ");
512 self_->SetException(Thread::GetDeoptimizationException());
518 reinterpret_cast<uint8_t*>(self_) + offset);
525 self_->DumpStack(LOG_STREAM(INFO) << "Deoptimizing: ")
    [all...]
quick_exception_handler.h 137 Thread* const self_; member in class:art::QuickExceptionHandler
thread.h 1725 Thread* self_; member in class:art::ScopedAssertNoThreadSuspension
1740 Thread* const self_; member in class:art::ScopedStackedShadowFramePusher
1757 Thread* const self_; member in class:art::ScopedDebugDisallowReadBarriers
1777 Thread* const self_; member in class:art::ScopedTransitioningToRunnable
    [all...]
handle_scope.h 267 return self_;
273 Thread* const self_; variable
311 Thread* const self_; member in class:art::VariableSizedHandleScope
  /art/runtime/entrypoints/quick/
callee_save_frame.h 43 REQUIRES_SHARED(Locks::mutator_lock_) : self_(self), exit_check_(exit_check) {
57 Locks::mutator_lock_->AssertSharedHeld(self_);
58 self_->VerifyStack();
62 Locks::mutator_lock_->AssertSharedHeld(self_);
63 self_->VerifyStack();
66 Thread* const self_; member in class:art::ScopedQuickEntrypointChecks
  /cts/tests/aslr/src/
AslrMallocTest.cpp 54 std::string self_; member in class:AslrMallocTest
66 self_ = path;
86 ASSERT_TRUE(execl(self_.c_str(), self_.c_str(), argPrint.c_str(),
  /art/runtime/openjdkjvmti/
ti_redefine.cc 301 GetMirrorClass()->MonitorEnter(driver_->self_);
306 GetMirrorClass()->MonitorExit(driver_->self_);
449 return driver_->self_->DecodeJObject(klass_)->AsClass();
458 art::StackHandleScope<2> hs(driver_->self_);
462 cl->GetClassRoot(art::ClassLinker::kJavaLangDexCache)->AllocObject(driver_->self_))));
464 driver_->self_->AssertPendingOOMException();
470 driver_->self_->AssertPendingOOMException();
473 art::WriterMutexLock mu(driver_->self_, *art::Locks::dex_lock_);
474 art::mirror::DexCache::InitializeDexCache(driver_->self_,
497 driver_->self_,
1297 art::Thread* self_; member in class:openjdkjvmti::ScopedDisableConcurrentAndMovingGc
    [all...]
  /art/runtime/base/
mutex.h 493 MutexLock(Thread* self, Mutex& mu) ACQUIRE(mu) : self_(self), mu_(mu) {
494 mu_.ExclusiveLock(self_);
498 mu_.ExclusiveUnlock(self_);
502 Thread* const self_; member in class:art::MutexLock
518 Thread* const self_; member in class:art::ReaderMutexLock
528 self_(self), mu_(mu) {
529 mu_.ExclusiveLock(self_);
533 mu_.ExclusiveUnlock(self_);
537 Thread* const self_; member in class:art::WriterMutexLock
mutex-inl.h 255 : self_(self), mu_(mu) {
256 mu_.SharedLock(self_);
260 mu_.SharedUnlock(self_);
  /art/runtime/native/
dalvik_system_ZygoteHooks.cc 87 explicit ClassSet(Thread* const self) : self_(self) {
88 self_->GetJniEnv()->PushFrame(kClassSetCapacity);
92 self_->GetJniEnv()->PopFrame();
96 class_set_.insert(self_->GetJniEnv()->AddLocalReference<jclass>(klass.Ptr()));
104 Thread* const self_; member in class:art::ClassSet
  /art/runtime/gc/collector/
semi_space.cc 65 WriterMutexLock mu(self_, *Locks::heap_bitmap_lock_);
100 self_(nullptr),
154 self_ = Thread::Current();
177 CHECK(Locks::mutator_lock_->IsExclusiveHeld(self_));
179 Locks::mutator_lock_->AssertExclusiveHeld(self_);
182 ThreadState old_state = self_->SetStateUnsafe(kRunnable);
188 CHECK_EQ(self_->SetStateUnsafe(old_state), kRunnable);
216 Locks::mutator_lock_->AssertExclusiveHeld(self_);
240 heap_->RevokeAllThreadLocalAllocationStacks(self_);
244 WriterMutexLock mu(self_, *Locks::heap_bitmap_lock_)
    [all...]
  /external/libmojo/mojo/edk/system/
channel_win.cc 79 self_(this),
204 self_ = nullptr;
210 if (self_)
323 scoped_refptr<Channel> self_; member in class:mojo::edk::__anon23692::ChannelWin
  /external/webrtc/webrtc/modules/audio_processing/utility/
delay_estimator_unittest.cc 52 DelayEstimator* self_; member in class:__anon39000::DelayEstimatorTest
68 self_(NULL),
95 self_ = reinterpret_cast<DelayEstimator*>(handle_);
105 self_ = NULL;
121 EXPECT_EQ(0, self_->near_spectrum_initialized);
402 EXPECT_EQ(0, self_->near_spectrum_initialized);
405 EXPECT_EQ(1, self_->near_spectrum_initialized);
418 EXPECT_EQ(0, self_->near_spectrum_initialized);
421 EXPECT_EQ(1, self_->near_spectrum_initialized);
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/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"
  /external/python/cpython2/Lib/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"
  /prebuilts/gdb/darwin-x86/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"

Completed in 559 milliseconds

1 2 3