HomeSort by relevance Sort by last modified time
    Searched defs:self (Results 276 - 300 of 437) sorted by null

<<1112131415161718

  /art/dex2oat/
dex2oat.cc 421 WatchDog* self = reinterpret_cast<WatchDog*>(arg); local
423 self->Wait();
1436 Thread* self = Thread::Current(); local
2246 Thread* self = Thread::Current(); local
    [all...]
  /art/oatdump/
oatdump.cc 1405 Thread* self = Thread::Current(); local
2271 Thread* self = Thread::Current(); local
    [all...]
  /art/runtime/
check_jni.cc 464 Thread* self = Thread::Current(); local
465 if ((flags_ & kFlag_Invocation) == 0 || self != nullptr) {
466 traceMethod = self->GetCurrentMethod(nullptr);
512 Thread* self = Thread::Current(); local
513 if ((flags_ & kFlag_Invocation) == 0 || self != nullptr) {
514 ScopedObjectAccess soa(self);
515 ArtMethod* traceMethod = self->GetCurrentMethod(nullptr);
532 Thread* self = Thread::Current(); local
533 ScopedObjectAccess soa(self);
534 ArtMethod* traceMethod = self->GetCurrentMethod(nullptr)
1173 Thread* self = Thread::Current(); local
    [all...]
jni_internal.cc 94 soa.Self()->ThrowNewExceptionF("Ljava/lang/NoSuchMethodError;",
105 soa.Self()->ThrowNewExceptionF("Ljava/lang/NoSuchMethodError;",
109 static mirror::Class* EnsureInitialized(Thread* self, mirror::Class* klass)
114 StackHandleScope<1> hs(self);
116 if (!Runtime::Current()->GetClassLinker()->EnsureInitialized(self, h_klass, true, true)) {
125 mirror::Class* c = EnsureInitialized(soa.Self(), soa.Decode<mirror::Class*>(jni_class));
152 ArtMethod* method = soa.Self()->GetCurrentMethod(nullptr);
155 return soa.Decode<mirror::ClassLoader*>(soa.Self()->GetClassLoaderOverride());
168 class_loader = soa.Decode<mirror::ClassLoader*>(soa.Self()->GetClassLoaderOverride());
183 StackHandleScope<2> hs(soa.Self());
526 Thread* self = down_cast<JNIEnvExt*>(env)->self; local
538 Thread* self = down_cast<JNIEnvExt*>(env)->self; local
    [all...]
thread.cc 415 Thread* self = reinterpret_cast<Thread*>(arg); local
418 LOG(ERROR) << "Thread attaching to non-existent runtime: " << *self;
422 // TODO: pass self to MutexLock - requires self to equal Thread::Current(), which is only true
423 // after self->Init().
432 CHECK(self->Init(runtime->GetThreadList(), runtime->GetJavaVM(), self->tlsPtr_.tmp_jni_env));
433 self->tlsPtr_.tmp_jni_env = nullptr;
437 ScopedObjectAccess soa(self);
438 self->InitStringEntryPoints()
586 Thread* self = static_cast<JNIEnvExt*>(env)->self; local
739 Thread* self; local
842 Thread* self = this; local
1219 Thread* self = Thread::Current(); local
1541 Thread* self = reinterpret_cast<Thread*>(arg); local
1691 Thread* self = this; local
1954 Thread* self = Thread::Current(); local
    [all...]
class_linker.cc 108 Thread* self = Thread::Current(); local
109 self->ThrowNewExceptionV("Ljava/lang/NoClassDefFoundError;", fmt, args);
113 static bool HasInitWithString(Thread* self, ClassLinker* class_linker, const char* descriptor)
115 ArtMethod* method = self->GetCurrentMethod(nullptr);
116 StackHandleScope<1> hs(self);
119 mirror::Class* exception_class = class_linker->FindClass(self, descriptor, class_loader);
123 CHECK(self->IsExceptionPending());
124 self->ClearException();
134 static void HandleEarlierVerifyError(Thread* self, ClassLinker* class_linker, mirror::Class* c)
138 self->AssertNoPendingException()
182 Thread* self = Thread::Current(); local
213 Thread* self = Thread::Current(); local
355 Thread* const self = Thread::Current(); local
752 Thread* self = Thread::Current(); local
936 Thread* const self = Thread::Current(); local
1234 Thread* const self = Thread::Current(); local
1573 Thread* const self = Thread::Current(); local
1826 Thread* const self = Thread::Current(); local
1921 Thread* const self = Thread::Current(); local
1967 Thread* const self = Thread::Current(); local
2032 Thread* const self = Thread::Current(); local
3191 Thread* const self = Thread::Current(); local
3232 Thread* self = Thread::Current(); local
3313 Thread* const self = Thread::Current(); local
3339 Thread* self = Thread::Current(); local
3651 Thread* self = Thread::Current(); local
3757 Thread* const self = Thread::Current(); local
4129 Thread* self = soa.Self(); local
4287 Thread* const self = Thread::Current(); local
4935 Thread* self = Thread::Current(); local
5026 Thread* const self = Thread::Current(); local
7341 Thread* self = Thread::Current(); local
7617 Thread* const self = Thread::Current(); local
7659 Thread* self = Thread::Current(); local
7984 Thread* const self = Thread::Current(); local
7994 Thread* const self = Thread::Current(); local
8007 Thread* const self = Thread::Current(); local
8019 Thread* const self = Thread::Current(); local
8109 Thread* const self = Thread::Current(); local
    [all...]
debugger.cc 344 MutexLock mu(soa.Self(), *Locks::thread_suspend_count_lock_);
398 MutexLock mu(soa.Self(), *Locks::thread_list_lock_);
603 Thread* const self = Thread::Current(); local
606 ReaderMutexLock mu(self, *Locks::breakpoint_lock_);
611 MutexLock mu(self, *Locks::deoptimization_lock_);
628 ScopedObjectAccess soa(self);
651 Thread* self = Thread::Current(); local
654 gc::ScopedGCCriticalSection gcs(self,
658 ThreadState old_state = self->SetStateUnsafe(kRunnable);
665 MutexLock mu(self, *Locks::deoptimization_lock_)
798 Thread* self = Thread::Current(); local
1266 Thread* self = Thread::Current(); local
1286 Thread* self = Thread::Current(); local
1318 Thread* self = Thread::Current(); local
1546 Thread* self = Thread::Current(); local
2373 Thread* self = Thread::Current(); local
2834 Thread* const self = Thread::Current(); local
2967 Thread* const self = Thread::Current(); local
3211 Thread* const self = Thread::Current(); local
3340 Thread* const self = Thread::Current(); local
3663 Thread* self = Thread::Current(); local
3831 Thread* const self = Thread::Current(); local
3981 Thread* const self = Thread::Current(); local
4187 Thread* self = Thread::Current(); local
4269 Thread* self = Thread::Current(); local
4336 Thread* self = Thread::Current(); local
4746 Thread* self = Thread::Current(); local
4933 Thread* self = Thread::Current(); local
    [all...]
  /art/runtime/verifier/
method_verifier.cc 121 MethodVerifier::FailureKind MethodVerifier::VerifyClass(Thread* self,
154 StackHandleScope<2> hs(self);
157 return VerifyClass(self,
189 MethodVerifier::FailureData MethodVerifier::VerifyMethods(Thread* self,
207 self->AllowThreadSuspension();
220 DCHECK(self->IsExceptionPending());
222 self->ClearException();
226 StackHandleScope<1> hs(self);
228 MethodVerifier::FailureData result = VerifyMethod(self,
262 MethodVerifier::FailureKind MethodVerifier::VerifyClass(Thread* self,
4790 Thread* self = Thread::Current(); local
    [all...]
  /external/valgrind/coregrind/m_demangle/
cp-demangle.c 5393 struct d_component_stack self; local
    [all...]
  /packages/apps/Messaging/src/com/android/messaging/ui/conversation/
ConversationFragment.java 181 // ComposeMessageView to be the only source of truth (incl. the conversation self id). However,
1436 final ParticipantData self = mBinding.getData().getSelfParticipantById(selfParticipantId); local
    [all...]
  /toolchain/binutils/binutils-2.25/libiberty/
cp-demangle.c 5377 struct d_component_stack self; local
    [all...]
  /prebuilts/tools/common/lombok-ast/
lombok-ast-0.2.1.jar 
lombok-ast-0.2.jar 
  /prebuilts/tools/common/m2/repository/com/android/tools/external/lombok/lombok-ast/0.2.1/
lombok-ast-0.2.1.jar 
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
org.eclipse.equinox.registry_3.5.0.v20100503.jar 
  /prebuilts/eclipse/mavenplugins/tycho/tycho-dependencies-m2repo/org/eclipse/tycho/tycho-bundles-external/0.20.0/eclipse/plugins/
org.eclipse.equinox.registry_3.5.301.v20130717-1549.jar 
  /prebuilts/tools/common/m2/repository/org/eclipse/tycho/tycho-bundles-external/0.18.1/eclipse/plugins/
org.eclipse.equinox.registry_3.5.300.v20130327-1442.jar 
  /prebuilts/eclipse/maven/apache-maven-3.2.1/boot/
plexus-classworlds-2.5.1.jar 
  /prebuilts/tools/common/m2/repository/org/codehaus/plexus/plexus-classworlds/2.4/
plexus-classworlds-2.4.jar 
  /art/runtime/gc/
heap.cc 619 PrintFileToLog("/proc/self/maps", LogSeverity::ERROR);
728 Thread* const self = Thread::Current(); local
973 Thread* self = Thread::Current(); local
1003 Thread* self = Thread::Current(); local
1011 Thread* self = Thread::Current(); local
1870 Thread* const self = Thread::Current(); local
2024 Thread* self = Thread::Current(); local
2103 Thread* const self = Thread::Current(); local
2433 Thread* self = Thread::Current(); local
2610 Thread* self = Thread::Current(); local
3078 Thread* self = Thread::Current(); local
3208 Thread* self = Thread::Current(); local
3332 Thread* const self = Thread::Current(); local
3380 Thread* const self = Thread::Current(); local
3412 Thread* const self = Thread::Current(); local
3754 Thread* self = Thread::Current(); local
3871 Thread* self = ThreadForEnv(env); local
4105 Thread* const self = Thread::Current(); local
    [all...]
  /external/clang/lib/CodeGen/
CGObjC.cpp 319 // We generally assume that 'self' lives throughout a method call.
363 // safe because the receiver value is always loaded from 'self',
433 // self. This represents the call taking direct ownership of that
435 // arguments because they might also reference self, but we don't
436 // have to worry about any of them modifying self because that would
443 // Do an unsafe store of null into self.
470 // the call back into self. This takes ownership of the value.
499 llvm::Value *self = CGF.LoadObjCSelf(); variable
507 self,
938 llvm::Value *self = Builder.CreateBitCast(LoadObjCSelf(), VoidPtrTy); local
1227 llvm::Value *self = local
1376 llvm::Value *self = CGF.LoadObjCSelf(); local
    [all...]
CGObjCGNU.cpp 663 llvm::Value *self; variable
666 self = CGF.LoadObjCSelf();
668 self = llvm::ConstantPointerNull::get(IdTy);
    [all...]
  /external/skia/src/ports/
SkFontHost_mac.cpp 110 CFRef self = fCFRef; local
112 return self;
498 CTFontRef self = (CTFontRef)context; local
501 return CFEqual(self, other);
1766 NonDefaultAxesContext* self = static_cast<NonDefaultAxesContext*>(context); local
    [all...]
  /external/skia/tests/
PathTest.cpp 3966 SkPath& self = p; local
    [all...]
  /libcore/luni/src/test/java/libcore/javax/net/ssl/
SSLSocketTest.java 636 final Thread self = Thread.currentThread(); local
637 final UncaughtExceptionHandler original = self.getUncaughtExceptionHandler();
641 self.setUncaughtExceptionHandler(test);
667 self.setUncaughtExceptionHandler(original);
    [all...]

Completed in 1427 milliseconds

<<1112131415161718