Home
last modified time | relevance | path

Searched defs:self (Results 26 – 50 of 284) sorted by relevance

12345678910>>...12

/art/test/971-iface-super/util-src/
Dgenerate_java.py43 def __init__(self, inner): argument
46 def get_name(self): argument
50 def __str__(self): argument
58 def __init__(self, sources, javac, temp_dir, classes_dir): argument
64 def compile_files(self, args, files): argument
75 def execute(self): argument
/art/test/968-default-partial-compile-gen/util-src/
Dgenerate_java.py43 def __init__(self, inner): argument
46 def get_name(self): argument
50 def __str__(self): argument
58 def __init__(self, sources, javac, temp_dir, classes_dir): argument
64 def compile_files(self, args, files): argument
75 def execute(self): argument
/art/runtime/
Dbarrier.cc38 void Barrier::Pass(Thread* self) { in Pass()
43 void Barrier::Wait(Thread* self) { in Wait()
47 void Barrier::Init(Thread* self, int count) { in Init()
53 void Barrier::Increment(Thread* self, int delta) { in Increment()
73 bool Barrier::Increment(Thread* self, int delta, uint32_t timeout_ms) { in Increment()
94 int Barrier::GetCount(Thread* self) { in GetCount()
99 void Barrier::SetCountLocked(Thread* self, int count) { in SetCountLocked()
Dthread_pool.cc100 Thread* self = Thread::Current(); in Run() local
132 void ThreadPool::AddTask(Thread* self, Task* task) { in AddTask()
141 void ThreadPool::RemoveAllTasks(Thread* self) { in RemoveAllTasks()
174 Thread* self = Thread::Current(); in CreateThreads() local
201 Thread* self = Thread::Current(); in DeleteThreads() local
226 void ThreadPool::StartWorkers(Thread* self) { in StartWorkers()
234 void ThreadPool::StopWorkers(Thread* self) { in StopWorkers()
239 Task* ThreadPool::GetTask(Thread* self) { in GetTask()
271 Task* ThreadPool::TryGetTask(Thread* self) { in TryGetTask()
285 void ThreadPool::Wait(Thread* self, bool do_work, bool may_hold_locks) { in Wait()
[all …]
Dscoped_thread_state_change-inl.h33 inline ScopedThreadStateChange::ScopedThreadStateChange(Thread* self, ThreadState new_thread_state) in ScopedThreadStateChange()
99 inline ScopedObjectAccessAlreadyRunnable::ScopedObjectAccessAlreadyRunnable(Thread* self) in ScopedObjectAccessAlreadyRunnable()
110 inline ScopedObjectAccessUnchecked::ScopedObjectAccessUnchecked(Thread* self) in ScopedObjectAccessUnchecked()
117 inline ScopedObjectAccess::ScopedObjectAccess(Thread* self) : ScopedObjectAccessUnchecked(self) {} in ScopedObjectAccess()
120 inline ScopedThreadSuspension::ScopedThreadSuspension(Thread* self, ThreadState suspended_state) in ScopedThreadSuspension()
Dthread_pool_test.cc32 void Run(Thread* self) override { in Run()
63 Thread* self = Thread::Current(); in TEST_F() local
78 Thread* self = Thread::Current(); in TEST_F() local
103 Thread* self = Thread::Current(); in TEST_F() local
132 void Run(Thread* self) override { in Run()
153 Thread* self = Thread::Current(); in TEST_F() local
167 void Run(Thread* self) override { in Run()
181 void Run(Thread* self) override { in Run()
193 Thread* self = Thread::Current(); in TEST_F() local
Dreflective_handle_scope-inl.h29 StackReflectiveHandleScope<kNumFields, kNumMethods>::StackReflectiveHandleScope(Thread* self) : fie… in StackReflectiveHandleScope()
37 Thread* self = Thread::Current(); in VisitTargets() local
56 void BaseReflectiveHandleScope::PushScope(Thread* self) { in PushScope()
/art/runtime/base/
Dmutex.h181 void Lock(Thread* self) ACQUIRE() { ExclusiveLock(self); } in Lock()
185 bool TryLock(Thread* self) TRY_ACQUIRE(true) { return ExclusiveTryLock(self); } in TryLock()
191 void Unlock(Thread* self) RELEASE() { ExclusiveUnlock(self); } in Unlock()
201 void AssertNotHeldExclusive(const Thread* self) ASSERT_CAPABILITY(!*this) { in AssertNotHeldExclusive()
206 void AssertNotHeld(const Thread* self) ASSERT_CAPABILITY(!*this) { in AssertNotHeld()
308 void WriterLock(Thread* self) ACQUIRE() { ExclusiveLock(self); } in WriterLock()
312 void WriterUnlock(Thread* self) RELEASE() { ExclusiveUnlock(self); } in WriterUnlock()
323 void ReaderLock(Thread* self) ACQUIRE_SHARED() { SharedLock(self); } in ReaderLock()
330 void ReaderUnlock(Thread* self) RELEASE_SHARED() { SharedUnlock(self); } in ReaderUnlock()
340 void AssertNotExclusiveHeld(const Thread* self) ASSERT_CAPABILITY(!this) { in AssertNotExclusiveHeld()
[all …]
/art/openjdkjvmti/
Dalloc_manager.cc54 void AllocationManager::PauseForAllocation(art::Thread* self, T msg) { in PauseForAllocation()
86 void JvmtiAllocationListener::ObjectAllocated(art::Thread* self, in ObjectAllocated()
99 void JvmtiAllocationListener::PreObjectAllocated(art::Thread* self, in PreObjectAllocated()
122 void AllocationManager::DisableAllocationCallback(art::Thread* self) { in DisableAllocationCallback()
127 void AllocationManager::EnableAllocationCallback(art::Thread* self) { in EnableAllocationCallback()
143 void AllocationManager::DecrListenerInstall(art::Thread* self) { in DecrListenerInstall()
153 void AllocationManager::IncrListenerInstall(art::Thread* self) { in IncrListenerInstall()
163 void AllocationManager::PauseAllocations(art::Thread* self) { in PauseAllocations()
208 void AllocationManager::ResumeAllocations(art::Thread* self) { in ResumeAllocations()
Djvmti_weak_table-inl.h80 bool JvmtiWeakTable<T>::GetTagSlowPath(art::Thread* self, art::ObjPtr<art::mirror::Object> obj, T* … in GetTagSlowPath()
91 art::Thread* self = art::Thread::Current(); in Remove() local
99 art::Thread* self = art::Thread::Current(); in RemoveLocked() local
107 bool JvmtiWeakTable<T>::RemoveLocked(art::Thread* self, art::ObjPtr<art::mirror::Object> obj, T* ta… in RemoveLocked()
136 art::Thread* self = art::Thread::Current(); in Set() local
144 art::Thread* self = art::Thread::Current(); in SetLocked() local
152 bool JvmtiWeakTable<T>::SetLocked(art::Thread* self, art::ObjPtr<art::mirror::Object> obj, T new_ta… in SetLocked()
198 art::Thread* self = art::Thread::Current(); in SweepImpl() local
Ddeopt_manager.cc117 void DeoptManager::DumpDeoptInfo(art::Thread* self, std::ostream& stream) { in DumpDeoptInfo()
165 art::Thread* self = art::Thread::Current(); in FinishSetup() local
221 art::Thread* self = art::Thread::Current(); in RemoveDeoptimizeAllMethods() local
228 art::Thread* self = art::Thread::Current(); in AddDeoptimizeAllMethods() local
239 art::Thread* self = art::Thread::Current(); in AddMethodBreakpoint() local
279 art::Thread* self = art::Thread::Current(); in RemoveMethodBreakpoint() local
316 void DeoptManager::WaitForDeoptimizationToFinishLocked(art::Thread* self) { in WaitForDeoptimizationToFinishLocked()
322 void DeoptManager::WaitForDeoptimizationToFinish(art::Thread* self) { in WaitForDeoptimizationToFinish()
331 ScopedDeoptimizationContext(art::Thread* self, DeoptManager* deopt) in ScopedDeoptimizationContext()
371 void DeoptManager::AddDeoptimizeAllMethodsLocked(art::Thread* self) { in AddDeoptimizeAllMethodsLocked()
[all …]
/art/tools/bisection_search/
Dbisection_search.py73 def __init__(self, base_cmd, test_env, expected_retcode=None, argument
97 def Test(self, compiled_methods, passes_to_run=None): argument
126 def GetAllMethods(self): argument
143 def GetAllPassesForMethod(self, compiled_method): argument
163 def _PrepareCmd(self, compiled_methods=None, passes_to_run=None): argument
185 def Check(self, output): argument
199 def __init__(self, expected_output): argument
207 def Check(self, output): argument
220 def __init__(self, script_path, expected_output_path, logfile): argument
232 def Check(self, output): argument
/art/runtime/interpreter/mterp/
Dmterp.cc51 void InitMterpTls(Thread* self) { in InitMterpTls()
163 extern "C" size_t MterpInvokeVirtual(Thread* self, in MterpInvokeVirtual()
174 extern "C" size_t MterpInvokeSuper(Thread* self, in MterpInvokeSuper()
185 extern "C" size_t MterpInvokeInterface(Thread* self, in MterpInvokeInterface()
196 extern "C" size_t MterpInvokeDirect(Thread* self, in MterpInvokeDirect()
207 extern "C" size_t MterpInvokeStatic(Thread* self, in MterpInvokeStatic()
218 extern "C" size_t MterpInvokeCustom(Thread* self, in MterpInvokeCustom()
229 extern "C" size_t MterpInvokePolymorphic(Thread* self, in MterpInvokePolymorphic()
240 extern "C" size_t MterpInvokeVirtualRange(Thread* self, in MterpInvokeVirtualRange()
251 extern "C" size_t MterpInvokeSuperRange(Thread* self, in MterpInvokeSuperRange()
[all …]
/art/tools/jvmti-agents/ti-alloc-sample/
Dmkflame.py25 def __init__(self, args): argument
34 def definition(self, index): argument
40 def set_definition(self, index, definition): argument
46 def weight(self, index): argument
52 def set_weight(self, index, weight): argument
58 def read_file(self, filename): argument
182 def dump_flame_graph(self): argument
/art/runtime/gc/
Dreference_processor.cc73 void ReferenceProcessor::DisableSlowPath(Thread* self) { in DisableSlowPath()
84 void ReferenceProcessor::BroadcastForSlowPath(Thread* self) { in BroadcastForSlowPath()
89 ObjPtr<mirror::Object> ReferenceProcessor::GetReferent(Thread* self, in GetReferent()
140 void ReferenceProcessor::StartPreservingReferences(Thread* self) { in StartPreservingReferences()
145 void ReferenceProcessor::StopPreservingReferences(Thread* self) { in StopPreservingReferences()
158 Thread* self = Thread::Current(); in ProcessReferences() local
253 Thread* self = Thread::Current(); in DelayReferenceReferent() local
293 SelfDeletingTask* ReferenceProcessor::CollectClearedReferences(Thread* self) { in CollectClearedReferences()
322 Thread* self = Thread::Current(); in ClearReferent() local
336 void ReferenceProcessor::WaitUntilDoneProcessingReferences(Thread* self) { in WaitUntilDoneProcessingReferences()
[all …]
Dtask_processor.cc41 void TaskProcessor::AddTask(Thread* self, HeapTask* task) { in AddTask()
48 HeapTask* TaskProcessor::GetTask(Thread* self) { in GetTask()
79 void TaskProcessor::UpdateTargetRunTime(Thread* self, HeapTask* task, uint64_t new_target_time) { in UpdateTargetRunTime()
111 void TaskProcessor::Stop(Thread* self) { in Stop()
118 void TaskProcessor::Start(Thread* self) { in Start()
124 void TaskProcessor::RunAllTasks(Thread* self) { in RunAllTasks()
/art/runtime/interpreter/
Dlock_count_data.cc28 void LockCountData::AddMonitor(Thread* self, mirror::Object* obj) { in AddMonitor()
45 void LockCountData::RemoveMonitorOrThrow(Thread* self, const mirror::Object* obj) { in RemoveMonitorOrThrow()
72 void MonitorExitHelper(Thread* self, mirror::Object* obj) NO_THREAD_SAFETY_ANALYSIS { in MonitorExitHelper()
78 bool LockCountData::CheckAllMonitorsReleasedOrThrow(Thread* self) { in CheckAllMonitorsReleasedOrThrow()
Dunstarted_runtime.cc75 static void AbortTransactionOrFail(Thread* self, const char* fmt, ...) { in AbortTransactionOrFail()
93 static void CharacterLowerUpper(Thread* self, in CharacterLowerUpper()
119 Thread* self, ShadowFrame* shadow_frame, JValue* result, size_t arg_offset) { in UnstartedCharacterToLowerCase()
124 Thread* self, ShadowFrame* shadow_frame, JValue* result, size_t arg_offset) { in UnstartedCharacterToUpperCase()
129 static void UnstartedRuntimeFindClass(Thread* self, Handle<mirror::String> className, in UnstartedRuntimeFindClass()
163 static void CheckExceptionGenerateClassNotFound(Thread* self) in CheckExceptionGenerateClassNotFound()
175 static ObjPtr<mirror::String> GetClassName(Thread* self, in GetClassName()
204 void UnstartedRuntime::UnstartedClassForNameCommon(Thread* self, in UnstartedClassForNameCommon()
248 Thread* self, ShadowFrame* shadow_frame, JValue* result, size_t arg_offset) { in UnstartedClassForName()
253 Thread* self, ShadowFrame* shadow_frame, JValue* result, size_t arg_offset) { in UnstartedClassForNameLong()
[all …]
/art/runtime/entrypoints/quick/
Dquick_field_entrypoints.cc37 Thread* self, in FindInstanceField()
52 static ArtMethod* GetReferrer(Thread* self) REQUIRES_SHARED(Locks::mutator_lock_) { in GetReferrer()
333 Thread* self) in artSet8StaticFromCompiledCode()
340 Thread* self) in artSet16StaticFromCompiledCode()
348 Thread* self) in artSet8InstanceFromCompiledCode()
356 Thread* self) in artSet16InstanceFromCompiledCode()
364 Thread* self) in artSet8StaticFromCode()
372 Thread* self) in artSet16StaticFromCode()
381 Thread* self) in artSet8InstanceFromCode()
390 Thread* self) in artSet16InstanceFromCode()
Dquick_deoptimization_entrypoints.cc28 NO_RETURN static void artDeoptimizeImpl(Thread* self, DeoptimizationKind kind, bool single_frame) in artDeoptimizeImpl()
60 extern "C" NO_RETURN void artDeoptimize(Thread* self) REQUIRES_SHARED(Locks::mutator_lock_) { in artDeoptimize()
66 extern "C" NO_RETURN void artDeoptimizeFromCompiledCode(DeoptimizationKind kind, Thread* self) in artDeoptimizeFromCompiledCode()
/art/tools/checker/common/
Dimmutables.py16 def __setitem__(self, key, value): argument
19 def __delitem__(self, key): argument
22 def copyWith(self, key, value): argument
/art/runtime/mirror/
Dclass-alloc-inl.h50 inline ObjPtr<Object> Class::Alloc(Thread* self, gc::AllocatorType allocator_type) { in Alloc()
77 inline ObjPtr<Object> Class::AllocObject(Thread* self) { in AllocObject()
81 inline ObjPtr<Object> Class::AllocNonMovableObject(Thread* self) { in AllocNonMovableObject()
/art/test/970-iface-super-resolution-gen/util-src/
Dgenerate_java.py40 def __init__(self, inner): argument
43 def get_name(self): argument
46 def __str__(self): argument
/art/runtime/gc/collector/
Dconcurrent_copying-inl.h36 Thread* const self, in MarkUnevacFromSpaceRegion()
95 inline mirror::Object* ConcurrentCopying::MarkImmuneSpace(Thread* const self, in MarkImmuneSpace()
127 inline mirror::Object* ConcurrentCopying::Mark(Thread* const self, in Mark()
201 Thread* const self = Thread::Current(); in MarkFromReadBarrier() local
/art/runtime/arch/
Dstub_test.cc69 Thread::tls_ptr_sized_values* GetTlsPtr(Thread* self) { in GetTlsPtr()
74 size_t Invoke3(size_t arg0, size_t arg1, size_t arg2, uintptr_t code, Thread* self) { in Invoke3()
79 size_t Invoke3WithReferrer(size_t arg0, size_t arg1, size_t arg2, uintptr_t code, Thread* self, in Invoke3WithReferrer()
86 Thread* self, ArtMethod* referrer, size_t hidden) { in Invoke3WithReferrerAndHidden()
405 static uintptr_t GetEntrypoint(Thread* self, QuickEntrypointEnum entrypoint) { in GetEntrypoint()
418 Thread* self = Thread::Current(); in TEST_F() local
458 Thread* self = Thread::Current(); in TEST_F() local
532 Thread* self = Thread::Current(); in TestUnlockObject() local
687 Thread* self = Thread::Current(); in TEST_F() local
791 Thread* self = Thread::Current(); in TEST_F() local
[all …]

12345678910>>...12