Home
last modified time | relevance | path

Searched defs:self (Results 151 – 175 of 284) sorted by relevance

12345678910>>...12

/art/test/common/
Druntime_state.cc170 Thread* self = Thread::Current(); in Java_Main_isAotCompiled() local
208 Thread* self = Thread::Current(); in Java_Main_hasJitCompiledEntrypoint() local
225 Thread* self = Thread::Current(); in Java_Main_hasJitCompiledCode() local
232 static void ForceJitCompiled(Thread* self, ArtMethod* method) REQUIRES(!Locks::mutator_lock_) { in ForceJitCompiled()
301 Thread* self = Thread::Current(); in Java_Main_ensureMethodJitCompiled() local
319 Thread* self = Thread::Current(); in Java_Main_ensureJitCompiled() local
/art/runtime/
Doat_file_manager.cc224 Thread* const self = Thread::Current(); in OpenDexFilesFromOat() local
646 Thread* const self = Thread::Current(); in BackgroundVerificationTask() local
654 Thread* const self = Thread::Current(); in ~BackgroundVerificationTask() local
659 void Run(Thread* self) override { in Run()
743 Thread* const self = Thread::Current(); in RunBackgroundVerification() local
797 Thread* const self = Thread::Current(); in WaitForBackgroundVerificationTasks() local
Druntime.cc318 Thread* self = Thread::Current(); in ~Runtime() local
528 Thread* self = Thread::Current(); in Dump() local
827 void Runtime::RunRootClinits(Thread* self) { in RunRootClinits()
860 Thread* self = Thread::Current(); in Start() local
1094 bool Runtime::IsShuttingDown(Thread* self) { in IsShuttingDown()
1103 Thread* self = Thread::Current(); in StartDaemonThreads() local
1159 static inline void CreatePreAllocatedException(Thread* self, in CreatePreAllocatedException()
1545 Thread* self = Thread::Attach("main", false, nullptr, false); in Init() local
1873 Thread* self = Thread::Current(); in InitNativeMethods() local
1928 void Runtime::InitThreadGroups(Thread* self) { in InitThreadGroups()
[all …]
Ddebugger.cc208 Thread* self = Thread::Current(); in DdmHandleChunk() local
256 Thread* self = Thread::Current(); in DdmHandleChunk() local
270 Thread* self = Thread::Current(); in DdmBroadcast() local
343 Thread* self = Thread::Current(); in DdmSetThreadNotification() local
724 Thread* self = Thread::Current(); in DdmSendHeapSegments() local
949 Thread* self = Thread::Current(); in GetRecentAllocations() local
1099 void Dbg::DbgThreadLifecycleCallback::ThreadStart(Thread* self) { in ThreadStart()
1103 void Dbg::DbgThreadLifecycleCallback::ThreadDeath(Thread* self) { in ThreadDeath()
Dmonitor.h88 static void Notify(Thread* self, ObjPtr<mirror::Object> obj) in Notify()
92 static void NotifyAll(Thread* self, ObjPtr<mirror::Object> obj) in NotifyAll()
Dquick_exception_handler.cc48 QuickExceptionHandler::QuickExceptionHandler(Thread* self, bool is_deoptimization) in QuickExceptionHandler()
66 CatchBlockStackVisitor(Thread* self, in CatchBlockStackVisitor()
303 DeoptimizeStackVisitor(Thread* self, in DeoptimizeStackVisitor()
665 void QuickExceptionHandler::DumpFramesWithType(Thread* self, bool details) { in DumpFramesWithType()
Dmonitor_android.cc33 void Monitor::LogContentionEvent(Thread* self, in LogContentionEvent()
Dobj_ptr-inl.h30 Thread* self = Thread::Current(); in GetCurrentTrimedCookie() local
/art/runtime/entrypoints/quick/
Dquick_trampoline_entrypoints.cc589 Thread* self = Thread::Current(); in HandleDeoptimization() local
647 extern "C" uint64_t artQuickToInterpreterBridge(ArtMethod* method, Thread* self, ArtMethod** sp) in artQuickToInterpreterBridge()
808 ArtMethod* proxy_method, mirror::Object* receiver, Thread* self, ArtMethod** sp) in artQuickProxyInvokeHandler()
1029 Thread* self, in artInstrumentationMethodEntryFromCode()
1086 extern "C" TwoWordReturn artInstrumentationMethodExitFromCode(Thread* self, in artInstrumentationMethodExitFromCode()
1220 ArtMethod* called, mirror::Object* receiver, Thread* self, ArtMethod** sp) in artQuickResolutionTrampoline()
1814 uintptr_t* ComputeLayout(Thread* self, in ComputeLayout()
1944 BuildGenericJniFrameVisitor(Thread* self, in BuildGenericJniFrameVisitor()
2105 void BuildGenericJniFrameVisitor::FinalizeHandleScope(Thread* self) { in FinalizeHandleScope()
2130 extern "C" const void* artQuickGenericJniTrampoline(Thread* self, in artQuickGenericJniTrampoline()
[all …]
/art/openjdkjvmti/
Dti_ddms.cc63 art::Thread* self = art::Thread::Current(); in HandleChunk() local
Dti_stack.cc332 art::Thread* self = art::Thread::Current(); in Run() local
372 art::Thread* self = art::Thread::Current(); in RunCheckpointAndWait() local
604 art::Thread* self = data.threads[index]; in GetThreadListStackTraces() local
930 art::Thread* self = art::Thread::Current(); in GetOwnedMonitorInfoCommon() local
1035 art::Thread* self = art::Thread::Current(); in NotifyFramePop() local
1117 NonStandardExitFrames(art::Thread* self, jvmtiEnv* env, jthread thread) in NonStandardExitFrames()
1203 art::Thread* self = art::Thread::Current(); in RELEASE_SHARED() local
1249 SetupMethodExitEvents(art::Thread* self, in SetupMethodExitEvents()
1342 bool ValidReturnType<jobject>(art::Thread* self, in ValidReturnType()
1358 art::Thread* self = art::Thread::Current(); in PopFrame() local
[all …]
Dti_heap.cc695 art::Thread* self = art::Thread::Current(); in IterateOverInstancesOfClass() local
757 art::Thread* self = art::Thread::Current(); in DoIterateThroughHeap() local
1210 art::Thread* self = art::Thread::Current(); in VisitClass() local
1397 art::Thread* self = art::Thread::Current(); in FollowReferences() local
1440 explicit ReportClassVisitor(art::Thread* self) : self_(self) {} in GetLoadedClasses()
1454 art::Thread* self = art::Thread::Current(); in GetLoadedClasses() local
1521 art::Thread* self = art::Thread::Current(); in GetObjectHeapId() local
1697 static void ReplaceStrongRoots(art::Thread* self, const ObjectMap& map) in ReplaceStrongRoots()
1790 static void ReplaceWeakRoots(art::Thread* self, in ReplaceWeakRoots()
1875 void HeapExtensions::ReplaceReference(art::Thread* self, in ReplaceReference()
[all …]
/art/runtime/gc/space/
Ddlmalloc_space.cc167 mirror::Object* DlMallocSpace::AllocWithGrowth(Thread* self, size_t num_bytes, in AllocWithGrowth()
226 size_t DlMallocSpace::Free(Thread* self, mirror::Object* ptr) { in Free()
240 size_t DlMallocSpace::FreeList(Thread* self, size_t num_ptrs, mirror::Object** ptrs) { in FreeList()
364 Thread* const self = Thread::Current(); in LogFragmentationAllocFailure() local
Dspace_create_test.cc96 Thread* self = Thread::Current(); in TEST_P() local
227 Thread* self = Thread::Current(); in TEST_P() local
306 Thread* self = Thread::Current(); in TEST_P() local
Ddlmalloc_space-inl.h28 inline mirror::Object* DlMallocSpace::AllocNonvirtual(Thread* self, size_t num_bytes, in AllocNonvirtual()
/art/runtime/jni/
Djni_env_ext.cc174 static uintptr_t GetJavaCallFrame(Thread* self) REQUIRES_SHARED(Locks::mutator_lock_) { in GetJavaCallFrame()
194 static std::string ComputeMonitorDescription(Thread* self, in ComputeMonitorDescription()
212 static void RemoveMonitors(Thread* self, in RemoveMonitors()
/art/runtime/jit/
Dprofiling_info_test.cc49 Thread* self = Thread::Current(); in GetVirtualMethods() local
202 Thread* self = Thread::Current(); in TEST_F() local
260 Thread* self = Thread::Current(); in TEST_F() local
/art/runtime/gc/accounting/
Dmod_union_table_test.cc51 Thread* self, space::ContinuousMemMapAllocSpace* space, size_t component_count) in AllocObjectArray()
72 mirror::Class* GetObjectArrayClass(Thread* self, space::ContinuousMemMapAllocSpace* space) in GetObjectArrayClass()
179 Thread* const self = Thread::Current(); in RunTest() local
/art/runtime/gc/
Dsystem_weak_test.cc87 Thread* self = Thread::Current(); in Get() local
97 Thread* self = Thread::Current(); in Set() local
Dallocation_record.cc141 Thread* self = Thread::Current(); in SetAllocTrackingEnabled() local
185 void AllocRecordObjectMap::RecordAllocation(Thread* self, in RecordAllocation()
/art/perfetto_hprof/
Dperfetto_hprof.cc267 void WaitForDataSource(art::Thread* self) { in WaitForDataSource()
463 void DumpPerfetto(art::Thread* self) { in DumpPerfetto()
676 art::Thread* self = art::Thread::Current(); in ArtPlugin_Initialize() local
725 art::Thread* self = art::Thread::Current(); in ArtPlugin_Initialize() local
769 art::Thread* self = art::Thread::Current(); in ArtPlugin_Deinitialize() local
/art/runtime/verifier/
Dmethod_verifier_test.cc40 Thread* self = Thread::Current(); in VerifyClass() local
/art/test/661-oat-writer-layout/
Doat_writer_layout.cc53 Thread* self = Thread::Current(); in Java_Main_hasOatCompiledCode() local
/art/runtime/mirror/
Dmethod_handle_impl.cc45 ObjPtr<mirror::MethodHandleImpl> MethodHandleImpl::Create(Thread* const self, in Create()
/art/compiler/optimizing/
Dintrinsic_objects.cc31 Thread* self, ClassLinker* class_linker) { in LookupIntegerCache()

12345678910>>...12