/art/build/ |
D | Android.gtest.mk | 69 runtime/arch/arch_test.cc \ 70 runtime/arch/memcmp16_test.cc \ 71 runtime/arch/stub_test.cc \ 72 runtime/barrier_test.cc \ 73 runtime/base/bit_field_test.cc \ 74 runtime/base/bit_vector_test.cc \ 75 runtime/base/hex_dump_test.cc \ 76 runtime/base/histogram_test.cc \ 77 runtime/base/mutex_test.cc \ 78 runtime/base/scoped_flock_test.cc \ [all …]
|
D | Android.cpplint.mk | 20 …on,-readability/streams,-readability/todo,-runtime/references,-runtime/sizeof,-runtime/threadsafe_… 21 … -name "*$(ART_CPP_EXTENSION)" | grep -v art/compiler/llvm/generated/ | grep -v art/runtime/elf\.h)
|
D | Android.oat.mk | 32 …$$(hide) $$(DEX2OATD) --runtime-arg -Xms$(DEX2OAT_IMAGE_XMS) --runtime-arg -Xmx$(DEX2OAT_IMAGE_XMX… 55 $$(hide) $$(DEX2OATD) --runtime-arg -Xms$(DEX2OAT_XMS) --runtime-arg -Xmx$(DEX2OAT_XMX) \
|
/art/runtime/ |
D | signal_catcher.cc | 120 Runtime* runtime = Runtime::Current(); in HandleSigQuit() local 121 ThreadList* thread_list = runtime->GetThreadList(); in HandleSigQuit() 139 os << "ABI: " << GetInstructionSetString(runtime->GetInstructionSet()) << "\n"; in HandleSigQuit() 143 runtime->DumpForSigQuit(os); in HandleSigQuit() 192 Runtime* runtime = Runtime::Current(); in Run() local 193 CHECK(runtime->AttachCurrentThread("Signal Catcher", true, runtime->GetSystemThreadGroup(), in Run() 194 !runtime->IsCompiler())); in Run() 212 runtime->DetachCurrentThread(); in Run()
|
D | runtime_android.cc | 45 Runtime* runtime = Runtime::Current(); in HandleUnexpectedSignal() local 46 if (runtime != nullptr) { in HandleUnexpectedSignal() 48 LOG(INTERNAL_FATAL) << "Fault message: " << runtime->GetFaultMessage(); in HandleUnexpectedSignal() 49 gc::Heap* heap = runtime->GetHeap(); in HandleUnexpectedSignal()
|
D | trace.cc | 295 Runtime* runtime = Runtime::Current(); in RunSamplingThread() local 298 CHECK(runtime->AttachCurrentThread("Sampling Profiler", true, runtime->GetSystemThreadGroup(), in RunSamplingThread() 299 !runtime->IsCompiler())); in RunSamplingThread() 314 runtime->GetThreadList()->SuspendAll(); in RunSamplingThread() 317 runtime->GetThreadList()->ForEach(GetSample, the_trace); in RunSamplingThread() 319 runtime->GetThreadList()->ResumeAll(); in RunSamplingThread() 323 runtime->DetachCurrentThread(); in RunSamplingThread() 363 Runtime* runtime = Runtime::Current(); in Start() local 368 runtime->GetThreadList()->SuspendAll(); in Start() 383 runtime->GetInstrumentation()->AddListener(the_trace_, in Start() [all …]
|
D | scoped_thread_state_change.h | 40 Runtime* runtime = Runtime::Current(); in ScopedThreadStateChange() local 41 CHECK(runtime == NULL || !runtime->IsStarted() || runtime->IsShuttingDown(self_)); in ScopedThreadStateChange() 63 Runtime* runtime = Runtime::Current(); in LOCKS_EXCLUDED() local 64 bool shutting_down = (runtime == NULL) || runtime->IsShuttingDown(nullptr); in LOCKS_EXCLUDED()
|
D | intern_table.cc | 112 Runtime* runtime = Runtime::Current(); in InsertStrong() local 113 if (runtime->IsActiveTransaction()) { in InsertStrong() 114 runtime->RecordStrongStringInsertion(s); in InsertStrong() 124 Runtime* runtime = Runtime::Current(); in InsertWeak() local 125 if (runtime->IsActiveTransaction()) { in InsertWeak() 126 runtime->RecordWeakStringInsertion(s); in InsertWeak() 137 Runtime* runtime = Runtime::Current(); in RemoveWeak() local 138 if (runtime->IsActiveTransaction()) { in RemoveWeak() 139 runtime->RecordWeakStringRemoval(s); in RemoveWeak()
|
D | thread.cc | 147 Runtime* runtime = Runtime::Current(); in CreateCallback() local 148 if (runtime == nullptr) { in CreateCallback() 158 CHECK(!runtime->IsShuttingDownLocked()); in CreateCallback() 159 self->Init(runtime->GetThreadList(), runtime->GetJavaVM()); in CreateCallback() 288 Runtime* runtime = Runtime::Current(); in CreateNativeThread() local 294 if (runtime->IsShuttingDownLocked()) { in CreateNativeThread() 297 runtime->StartThreadBirth(); in CreateNativeThread() 328 runtime->EndThreadBirth(); in CreateNativeThread() 375 Runtime* runtime = Runtime::Current(); in Attach() local 376 if (runtime == nullptr) { in Attach() [all …]
|
/art/test/119-noimage-patchoat/ |
D | run | 28 ${RUN} ${flags} ${BPATH} --runtime-option -Xnoimage-dex2oat --runtime-option -Xpatchoat:${false_bin} 32 ${RUN} ${flags} ${BPATH} --runtime-option -Ximage-dex2oat
|
/art/test/118-noimage-dex2oat/ |
D | run | 33 ${RUN} ${flags} ${BPATH} --runtime-option -Xnoimage-dex2oat --runtime-option -Xnodex2oat 37 ${RUN} ${flags} ${BPATH} --runtime-option -Ximage-dex2oat
|
/art/test/004-NativeAllocations/src/ |
D | Main.java | 23 static Object runtime; field in Main 33 register_native_allocation.invoke(runtime, bytes); in NativeAllocation() 46 register_native_free.invoke(runtime, bytes); in finalize() 53 runtime = get_runtime.invoke(null); in main()
|
/art/runtime/mirror/ |
D | art_method-inl.h | 234 Runtime* runtime = Runtime::Current(); in GetQuickOatEntryPoint() local 235 const void* entry_point = runtime->GetInstrumentation()->GetQuickCodeFor(this); in GetQuickOatEntryPoint() 239 DCHECK(entry_point != runtime->GetClassLinker()->GetQuickToInterpreterBridgeTrampoline()); in GetQuickOatEntryPoint() 241 UNLIKELY(entry_point == runtime->GetClassLinker()->GetQuickGenericJniTrampoline())) { in GetQuickOatEntryPoint() 307 Runtime* runtime = Runtime::Current(); in IsCalleeSaveMethod() local 310 if (this == runtime->GetCalleeSaveMethod(Runtime::CalleeSaveType(i))) { in IsCalleeSaveMethod() 354 Runtime* runtime = Runtime::Current(); in GetQuickFrameInfo() local 360 return runtime->GetCalleeSaveMethodFrameInfo(Runtime::kRefsAndArgs); in GetQuickFrameInfo() 363 return runtime->GetRuntimeMethodFrameInfo(this); in GetQuickFrameInfo() 366 const void* entry_point = runtime->GetInstrumentation()->GetQuickCodeFor(this); in GetQuickFrameInfo() [all …]
|
D | dex_cache.cc | 54 Runtime* runtime = Runtime::Current(); in Init() local 55 if (runtime->HasResolutionMethod()) { in Init() 57 ArtMethod* trampoline = runtime->GetResolutionMethod(); in Init()
|
D | object.cc | 196 Runtime* runtime = Runtime::Current(); in CheckFieldAssignmentImpl() local 197 if (runtime->GetClassLinker() == nullptr || !runtime->IsStarted() || in CheckFieldAssignmentImpl() 198 !runtime->GetHeap()->IsObjectValidationEnabled() || !c->IsResolved()) { in CheckFieldAssignmentImpl()
|
/art/runtime/native/ |
D | dalvik_system_ZygoteHooks.cc | 62 Runtime* runtime = Runtime::Current(); in EnableDebugFeatures() local 63 JavaVMExt* vm = runtime->GetJavaVM(); in EnableDebugFeatures() 96 Runtime* runtime = Runtime::Current(); in ZygoteHooks_nativePreFork() local 97 CHECK(runtime->IsZygote()) << "runtime instance not started with -Xzygote"; in ZygoteHooks_nativePreFork() 99 runtime->PreZygoteFork(); in ZygoteHooks_nativePreFork()
|
D | java_lang_reflect_Array.cc | 54 Runtime* runtime = Runtime::Current(); in Array_createObjectArray() local 55 ClassLinker* class_linker = runtime->GetClassLinker(); in Array_createObjectArray() 64 runtime->GetHeap()->GetCurrentAllocator()); in Array_createObjectArray()
|
/art/test/ |
D | run-test | 75 runtime="art" 89 runtime="jvm" 97 runtime="dalvik" 225 if [ "$runtime" = "jvm" ]; then 243 if [ ! "$runtime" = "jvm" ]; then 247 if [ "$runtime" = "dalvik" ]; then 255 elif [ "$runtime" = "art" ]; then
|
/art/test/304-method-tracing/ |
D | run | 18 exec ${RUN} "$@" --runtime-option -Xmethod-trace --runtime-option -Xmethod-trace-file:${DEX_LOCATIO…
|
/art/test/116-nodex2oat/ |
D | run | 25 ${RUN} ${flags} --runtime-option -Xnodex2oat 29 ${RUN} ${flags} --runtime-option -Xdex2oat
|
/art/test/117-nopatchoat/ |
D | run | 28 ${RUN} ${flags} --runtime-option -Xnodex2oat 32 ${RUN} ${flags} --runtime-option -Xdex2oat
|
/art/test/104-growth-limit/src/ |
D | Main.java | 39 Object runtime = get_runtime.invoke(null); in main() local 41 clear_growth_limit.invoke(runtime); in main()
|
/art/runtime/base/ |
D | mutex.cc | 282 Runtime* runtime = Runtime::Current(); in ~Mutex() local 283 bool shutting_down = runtime == nullptr || runtime->IsShuttingDown(Thread::Current()); in ~Mutex() 298 Runtime* runtime = Runtime::Current(); in ~Mutex() 299 bool shutting_down = (runtime == NULL) || runtime->IsShuttingDownLocked(); in ~Mutex() 477 Runtime* runtime = Runtime::Current(); in ~ReaderWriterMutex() 478 bool shutting_down = runtime == NULL || runtime->IsShuttingDownLocked(); in ~ReaderWriterMutex() 678 Runtime* runtime = Runtime::Current(); in ~ConditionVariable() local 679 bool shutting_down = runtime == nullptr || runtime->IsShuttingDown(Thread::Current()); in ~ConditionVariable() 690 Runtime* runtime = Runtime::Current(); in ~ConditionVariable() 691 bool shutting_down = (runtime == NULL) || runtime->IsShuttingDownLocked(); in ~ConditionVariable()
|
D | mutex-inl.h | 89 Runtime* runtime = Runtime::Current(); in CheckUnattachedThread() local 90 CHECK(runtime == nullptr || !runtime->IsStarted() || runtime->IsShuttingDownLocked() || in CheckUnattachedThread()
|
/art/runtime/entrypoints/quick/ |
D | quick_instrumentation_entrypoints.cc | 60 Runtime* runtime = Runtime::Current(); in artInstrumentationMethodExitFromCode() local 61 sp->Assign(runtime->GetCalleeSaveMethod(Runtime::kRefsOnly)); in artInstrumentationMethodExitFromCode()
|