Home
last modified time | relevance | path

Searched defs:thread (Results 1 – 25 of 37) sorted by relevance

12

/art/runtime/
Dthread_list.cc71 bool ThreadList::Contains(Thread* thread) { in Contains()
76 for (const auto& thread : list_) { in Contains() local
90 for (const auto& thread : list_) { in DumpNativeStacks() local
145 for (const auto& thread : list_) { in DumpLocked() local
154 for (const auto& thread : list_) { in AssertThreadsAreSuspended() local
214 for (const auto& thread : list_) { in RunCheckpoint() local
241 for (const auto& thread : suspended_count_modified_threads) { in RunCheckpoint() local
290 for (const auto& thread : list_) { in RunCheckpointOnRunnableThreads() local
327 for (const auto& thread : list_) { in SuspendAll() local
390 for (const auto& thread : list_) { in ResumeAll() local
[all …]
Dtrace.cc88 explicit BuildStackTraceVisitor(Thread* thread) : StackVisitor(thread, NULL), in BuildStackTraceVisitor()
236 static void GetSample(Thread* thread, void* arg) SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) { in GetSample()
244 static void ClearThreadStackTraceAndClockBase(Thread* thread, void* arg) { in ClearThreadStackTraceAndClockBase()
251 void Trace::CompareAndUpdateStackTrace(Thread* thread, in CompareAndUpdateStackTrace()
568 void Trace::DexPcMoved(Thread* thread, mirror::Object* this_object, in DexPcMoved()
589 void Trace::MethodEntered(Thread* thread, mirror::Object* this_object, in MethodEntered()
598 void Trace::MethodExited(Thread* thread, mirror::Object* this_object, in MethodExited()
609 void Trace::MethodUnwind(Thread* thread, mirror::Object* this_object, in MethodUnwind()
618 void Trace::ExceptionCaught(Thread* thread, const ThrowLocation& throw_location, in ExceptionCaught()
625 void Trace::ReadClocks(Thread* thread, uint32_t* thread_clock_diff, uint32_t* wall_clock_diff) { in ReadClocks()
[all …]
Dinstrumentation.h260 void MethodEnterEvent(Thread* thread, mirror::Object* this_object, in MethodEnterEvent()
269 void MethodExitEvent(Thread* thread, mirror::Object* this_object, in MethodExitEvent()
284 void DexPcMovedEvent(Thread* thread, mirror::Object* this_object, in DexPcMovedEvent()
293 void FieldReadEvent(Thread* thread, mirror::Object* this_object, in FieldReadEvent()
303 void FieldWriteEvent(Thread* thread, mirror::Object* this_object, in FieldWriteEvent()
Dinstrumentation.cc200 static void InstrumentationInstallStack(Thread* thread, void* arg) in InstrumentationInstallStack()
339 static void InstrumentationRestoreStack(Thread* thread, void* arg) in InstrumentationRestoreStack()
619 static void ResetQuickAllocEntryPointsForThread(Thread* thread, void* arg) { in ResetQuickAllocEntryPointsForThread()
936 void Instrumentation::MethodEnterEventImpl(Thread* thread, mirror::Object* this_object, in MethodEnterEventImpl()
950 void Instrumentation::MethodExitEventImpl(Thread* thread, mirror::Object* this_object, in MethodExitEventImpl()
964 void Instrumentation::MethodUnwindEvent(Thread* thread, mirror::Object* this_object, in MethodUnwindEvent()
974 void Instrumentation::DexPcMovedEventImpl(Thread* thread, mirror::Object* this_object, in DexPcMovedEventImpl()
985 void Instrumentation::FieldReadEventImpl(Thread* thread, mirror::Object* this_object, in FieldReadEventImpl()
996 void Instrumentation::FieldWriteEventImpl(Thread* thread, mirror::Object* this_object, in FieldWriteEventImpl()
1007 void Instrumentation::ExceptionCaughtEvent(Thread* thread, const ThrowLocation& throw_location, in ExceptionCaughtEvent()
Dmonitor.cc185 void Monitor::AppendToWaitSet(Thread* thread) { in AppendToWaitSet()
206 void Monitor::RemoveFromWaitSet(Thread *thread) { in RemoveFromWaitSet()
313 static std::string ThreadToString(Thread* thread) { in ThreadToString()
581 Thread* thread = wait_set_; in Notify() local
604 Thread* thread = wait_set_; in NotifyAll() local
928 void Monitor::DescribeWait(std::ostream& os, const Thread* thread) { in DescribeWait()
975 mirror::Object* Monitor::GetContendedMonitor(Thread* thread) { in GetContendedMonitor()
Dstack.cc91 StackVisitor::StackVisitor(Thread* thread, Context* context) in StackVisitor()
98 StackVisitor::StackVisitor(Thread* thread, Context* context, size_t num_frames) in StackVisitor()
413 size_t StackVisitor::ComputeNumFrames(Thread* thread) { in ComputeNumFrames()
465 void StackVisitor::DescribeStack(Thread* thread) { in DescribeStack()
493 static instrumentation::InstrumentationStackFrame& GetInstrumentationStackFrame(Thread* thread, in GetInstrumentationStackFrame()
Ddebugger.cc237 void MethodEntered(Thread* thread, mirror::Object* this_object, mirror::ArtMethod* method, in MethodEntered()
247 void MethodExited(Thread* thread, mirror::Object* this_object, mirror::ArtMethod* method, in MethodExited()
257 void MethodUnwind(Thread* thread, mirror::Object* this_object, mirror::ArtMethod* method, in MethodUnwind()
265 void DexPcMoved(Thread* thread, mirror::Object* this_object, mirror::ArtMethod* method, in DexPcMoved()
271 void FieldRead(Thread* thread, mirror::Object* this_object, mirror::ArtMethod* method, in FieldRead()
277 void FieldWritten(Thread* thread, mirror::Object* this_object, mirror::ArtMethod* method, in FieldWritten()
283 void ExceptionCaught(Thread* thread, const ThrowLocation& throw_location, in ExceptionCaught()
396 static bool IsSuspendedForDebugger(ScopedObjectAccessUnchecked& soa, Thread* thread) in IsSuspendedForDebugger()
434 …JdwpError DecodeThread(ScopedObjectAccessUnchecked& soa, JDWP::ObjectId thread_id, Thread*& thread) in DecodeThread()
983 Thread* thread; in GetOwnedMonitors() local
[all …]
Dthread-inl.h43 void* thread = pthread_getspecific(Thread::pthread_key_self_); in Current() local
Dexception_test.cc159 Thread* thread = Thread::Current(); in TEST_F() local
Dthread.cc622 static void UnsafeLogFatalForSuspendCount(Thread* self, Thread* thread) NO_THREAD_SAFETY_ANALYSIS { in UnsafeLogFatalForSuspendCount()
751 void Thread::DumpState(std::ostream& os, const Thread* thread, pid_t tid) { in DumpState()
955 const Thread* thread; member
963 static bool ShouldShowNativeStack(const Thread* thread) in ShouldShowNativeStack()
1453 explicit BuildInternalStackTraceVisitor(Thread* self, Thread* thread, int skip_depth) in BuildInternalStackTraceVisitor()
2037 ReferenceMapVisitor(Thread* thread, Context* context, const RootVisitor& visitor) in ReferenceMapVisitor()
2300 std::ostream& operator<<(std::ostream& os, const Thread& thread) { in operator <<()
/art/runtime/entrypoints/portable/
Dportable_invoke_entrypoints.cc77Thread* thread) in art_portable_find_static_method_from_code_with_access_check()
85Thread* thread) in art_portable_find_direct_method_from_code_with_access_check()
93Thread* thread) in art_portable_find_virtual_method_from_code_with_access_check()
101Thread* thread) in art_portable_find_super_method_from_code_with_access_check()
109Thread* thread) in art_portable_find_interface_method_from_code_with_access_check()
117 Thread* thread) in art_portable_find_interface_method_from_code()
Dportable_dexcache_entrypoints.cc26 Thread* thread) in art_portable_initialize_static_storage_from_code()
33 Thread* thread) in art_portable_initialize_type_from_code()
40 Thread* thread) in art_portable_initialize_type_and_verify_access_from_code()
Dportable_alloc_entrypoints.cc28 Thread* thread) in art_portable_alloc_object_from_code()
35 Thread* thread) in art_portable_alloc_object_from_code_with_access_check()
61 Thread* thread) in art_portable_check_and_alloc_array_from_code()
70Thread* thread) in art_portable_check_and_alloc_array_from_code_with_access_check()
Dportable_lock_entrypoints.cc22 extern "C" void art_portable_lock_object_from_code(mirror::Object* obj, Thread* thread) in art_portable_lock_object_from_code()
32 extern "C" void art_portable_unlock_object_from_code(mirror::Object* obj, Thread* thread) in art_portable_unlock_object_from_code()
Dportable_thread_entrypoints.cc85 extern "C" ShadowFrame* art_portable_push_shadow_frame_from_code(Thread* thread, in art_portable_push_shadow_frame_from_code()
/art/runtime/native/
Djava_lang_Thread.cc43 Thread* thread = Thread::FromManagedThread(soa, java_thread); in Thread_isInterrupted() local
64 Thread* thread = Thread::FromManagedThread(soa, java_thread); in Thread_nativeGetStatus() local
104 Thread* thread = Thread::FromManagedThread(soa, java_thread); in Thread_nativeHoldsLock() local
111 Thread* thread = Thread::FromManagedThread(soa, java_thread); in Thread_nativeInterrupt() local
134 Thread* thread; in Thread_nativeSetName() local
159 Thread* thread = Thread::FromManagedThread(soa, java_thread); in Thread_nativeSetPriority() local
Ddalvik_system_ZygoteHooks.cc114 Thread* thread = reinterpret_cast<Thread*>(token); in ZygoteHooks_nativePostForkChild() local
Ddalvik_system_VMStack.cc39 Thread* thread; in GetThreadStack() local
/art/runtime/entrypoints/quick/
Dquick_thread_entrypoints.cc24 extern "C" void artTestSuspendFromCode(Thread* thread, StackReference<mirror::ArtMethod>* sp) in artTestSuspendFromCode()
Dquick_throw_entrypoints.cc27 extern "C" void artDeliverPendingExceptionFromCode(Thread* thread, in artDeliverPendingExceptionFromCode()
/art/compiler/llvm/
Druntime_support_builder.cc67 Value* thread = EmitGetCurrentThread(); in EmitLoadFromThreadOffset() local
73 Value* thread = EmitGetCurrentThread(); in EmitStoreToThreadOffset() local
77 ::llvm::Value* RuntimeSupportBuilder::EmitSetCurrentThread(::llvm::Value* thread) { in EmitSetCurrentThread()
Druntime_support_builder_arm.cc65 CallInst* thread = irb_.CreateCall(func); in EmitGetCurrentThread() local
98 Value* RuntimeSupportBuilderARM::EmitSetCurrentThread(Value* thread) { in EmitSetCurrentThread()
Druntime_support_builder_x86.cc48 CallInst* thread = irb_.CreateCall(func); in EmitGetCurrentThread() local
/art/runtime/gc/space/
Dbump_pointer_space.cc95 void BumpPointerSpace::RevokeThreadLocalBuffers(Thread* thread) { in RevokeThreadLocalBuffers()
111 void BumpPointerSpace::AssertThreadLocalBuffersAreRevoked(Thread* thread) { in AssertThreadLocalBuffersAreRevoked()
244 void BumpPointerSpace::RevokeThreadLocalBuffersLocked(Thread* thread) { in RevokeThreadLocalBuffersLocked()
/art/test/051-thread/src/
DMain.java124 Thread thread = new Thread() { in testSetName() local

12