Home
last modified time | relevance | path

Searched refs:startup (Results 1 – 25 of 34) sorted by relevance

12

/art/test/1002-notify-startup/
DAndroid.bp3 // Build rules for ART run-test `1002-notify-startup`.
16 name: "art-run-test-1002-notify-startup",
21 ":art-run-test-1002-notify-startup-expected-stdout",
22 ":art-run-test-1002-notify-startup-expected-stderr",
28 name: "art-run-test-1002-notify-startup-expected-stdout",
29 out: ["art-run-test-1002-notify-startup-expected-stdout.txt"],
36 name: "art-run-test-1002-notify-startup-expected-stderr",
37 out: ["art-run-test-1002-notify-startup-expected-stderr.txt"],
Dinfo.txt1 Test that the startup completed callback works.
/art/test/1003-metadata-section-strings/
Dexpected-stdout.txt5 After startup completed
/art/test/1971-multi-force-early-return/src/art/
DTest1971.java106 final CountDownLatch startup = new CountDownLatch(NUM_THREADS); in run() local
111 startup.countDown(); in run()
125 startup.await(); in run()
/art/test/925-threadgroups/src/art/
DTest925.java57 final CountDownLatch startup = new CountDownLatch(1); in doTest() local
60 startup.countDown(); in doTest()
67 startup.await(); in doTest()
/art/runtime/jit/
Dprofile_saver.cc332 GetClassesAndMethodsHelper(bool startup, in GetClassesAndMethodsHelper() argument
336 : startup_(startup), in GetClassesAndMethodsHelper()
338 hot_method_sample_threshold_(CalculateHotMethodSampleThreshold(startup, options)), in GetClassesAndMethodsHelper()
428 static uint32_t CalculateHotMethodSampleThreshold(bool startup, in CalculateHotMethodSampleThreshold() argument
431 if (startup) { in CalculateHotMethodSampleThreshold()
441 ALWAYS_INLINE static bool ShouldCollectClasses(bool startup) { in ShouldCollectClasses() argument
443 return startup; in ShouldCollectClasses()
483 const bool startup = startup_; in CollectInternal() local
497 if (!ShouldCollectClasses(startup)) { in CollectInternal()
627 const bool startup = startup_; in UpdateProfile() local
[all …]
Dprofile_saver.h103 void FetchAndCacheResolvedClassesAndMethods(bool startup) REQUIRES(!Locks::profiler_lock_);
/art/runtime/
Dnative_bridge_art_interface.cc95 VLOG(startup) << "Runtime::Setup native bridge library: " in LoadNativeBridge()
102 VLOG(startup) << "Runtime::Pre-initialize native bridge"; in PreInitializeNativeBridge()
Dapp_info.cc68 VLOG(startup) << "Registering code path. " in RegisterAppInfo()
89 VLOG(startup) << "Registering odex status. " in RegisterOdexStatus()
Dstartup_completed_task.cc77 VLOG(startup) << "StartupCompletedTask running"; in DeleteStartupDexCaches()
Dparsed_options_test.cc111 EXPECT_FALSE(VLOG_IS_ON(startup)); in TEST_F()
Druntime.cc938 VLOG(startup) << "Runtime::Start entering"; in Start()
1047 VLOG(startup) << "Runtime::Start exiting"; in Start()
1262 VLOG(startup) << "Runtime::StartDaemonThreads entering"; in StartDaemonThreads()
1273 VLOG(startup) << "Runtime::StartDaemonThreads exiting"; in StartDaemonThreads()
1458 VLOG(startup) << "Runtime::Init -verbose:startup enabled"; in Init()
2078 VLOG(startup) << "Runtime::Init exiting"; in Init()
2163 VLOG(startup) << "Runtime::InitNativeMethods entering"; in InitNativeMethods()
2219 VLOG(startup) << "Runtime::InitNativeMethods exiting"; in InitNativeMethods()
3377 VLOG(startup) << app_info_; in NotifyStartupCompleted()
/art/libartbase/base/
Dflags.h109 if (VLOG_IS_ON(startup)) { in ReloadAllFlags()
110 VLOG_STREAM(startup) << "Dumping flags for " << caller; in ReloadAllFlags()
111 DumpFlags(VLOG_STREAM(startup)); in ReloadAllFlags()
Dlogging.h53 bool startup; member
/art/tools/jvmti-agents/breakpoint-logger/
DREADME.md29 that cannot be found using standard or bootstrap classloader at startup.
32 startup will cause the runtime to abort.
/art/runtime/interpreter/mterp/
DREADME.txt38 exceed "handler-size", but the VM will abort on startup if it detects an
51 message and abort during startup.
/art/runtime/gc/space/
Drosalloc_space.cc143 if (VLOG_IS_ON(heap) || VLOG_IS_ON(startup)) { in Create()
145 VLOG(startup) << "RosAllocSpace::Create entering " << name in Create()
172 if (VLOG_IS_ON(heap) || VLOG_IS_ON(startup)) { in Create()
Ddlmalloc_space.cc117 if (VLOG_IS_ON(heap) || VLOG_IS_ON(startup)) { in Create()
144 if (VLOG_IS_ON(heap) || VLOG_IS_ON(startup)) { in Create()
/art/tools/jvmti-agents/enable-vlog/
DREADME.md60 * `startup`
/art/openjdkjvmti/
Dti_logging.cc122 art::gLogVerbosity.startup = val; in SetVerboseFlag()
/art/tools/ahat/
DREADME.txt92 Improve startup performance, in some cases significantly.
100 Improve startup performance by roughly 25%.
/art/runtime/mirror/
Ddex_cache-inl.h57 T* DexCache::AllocArray(MemberOffset obj_offset, size_t num, LinearAllocKind kind, bool startup) { in AllocArray() argument
71 LinearAlloc* alloc = (startup && startup_linear_alloc != nullptr) in AllocArray()
Ddex_cache.h411 array_kind* Allocate ##getter_setter(bool startup = false) \
414 getter_setter ##Offset(), GetDexFile()->ids(), alloc_kind, startup)); \
561 T* AllocArray(MemberOffset obj_offset, size_t num, LinearAllocKind kind, bool startup = false)
/art/libprofile/profile/
Dprofile_compilation_info_test.cc1450 MethodReference startup(dex.get(), 2); in TEST_F() local
1457 ASSERT_TRUE(info.AddMethod(ProfileMethodInfo(startup), Hotness::kFlagStartup)); in TEST_F()
1467 EXPECT_TRUE(info.GetMethodHotness(startup).IsInProfile()); in TEST_F()
1468 EXPECT_EQ(info.GetMethodHotness(startup).GetFlags(), Hotness::kFlagStartup); in TEST_F()
1475 MethodReference startup(dex1, 2); in TEST_F() local
1482 info.AddMethod(ProfileMethodInfo(startup, inline_caches), Hotness::kFlagStartup); in TEST_F()
1491 ASSERT_FALSE(GetMethod(info, dex1, startup.index).IsHot()); in TEST_F()
/art/libartservice/service/
DREADME.md22 loaded by Framework on app startup.

12