Home
last modified time | relevance | path

Searched refs:startup (Results 1 – 25 of 31) 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
Drun17 …piler-option --compiler-filter=speed-profile -Xcompiler-option --resolve-startup-const-strings=true
/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.cc333 GetClassesAndMethodsHelper(bool startup, in GetClassesAndMethodsHelper() argument
337 : startup_(startup), in GetClassesAndMethodsHelper()
339 hot_method_sample_threshold_(CalculateHotMethodSampleThreshold(startup, options)), in GetClassesAndMethodsHelper()
429 static uint32_t CalculateHotMethodSampleThreshold(bool startup, in CalculateHotMethodSampleThreshold() argument
432 if (startup) { in CalculateHotMethodSampleThreshold()
442 ALWAYS_INLINE static bool ShouldCollectClasses(bool startup) { in ShouldCollectClasses() argument
444 return startup; in ShouldCollectClasses()
484 const bool startup = startup_; in CollectInternal() local
498 if (!ShouldCollectClasses(startup)) { in CollectInternal()
628 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()
Druntime.cc919 VLOG(startup) << "Runtime::Start entering"; in Start()
1039 VLOG(startup) << "Runtime::Start exiting"; in Start()
1243 VLOG(startup) << "Runtime::StartDaemonThreads entering"; in StartDaemonThreads()
1258 VLOG(startup) << "Runtime::StartDaemonThreads exiting"; in StartDaemonThreads()
1442 VLOG(startup) << "Runtime::Init -verbose:startup enabled"; in Init()
2045 VLOG(startup) << "Runtime::Init exiting"; in Init()
2130 VLOG(startup) << "Runtime::InitNativeMethods entering"; in InitNativeMethods()
2183 VLOG(startup) << "Runtime::InitNativeMethods exiting"; in InitNativeMethods()
3243 VLOG(startup) << "NotifyStartupCompletedTask running"; in Run()
3286 VLOG(startup) << app_info_; in NotifyStartupCompleted()
[all …]
Dparsed_options_test.cc111 EXPECT_FALSE(VLOG_IS_ON(startup)); in TEST_F()
Druntime_options.def194 // Switching this on adds ~500us to the startup on userdebug builds, or for
/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/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/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/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/libprofile/profile/
Dprofile_compilation_info_test.cc1404 MethodReference startup(dex.get(), 2); in TEST_F() local
1411 ASSERT_TRUE(info.AddMethod(ProfileMethodInfo(startup), Hotness::kFlagStartup)); in TEST_F()
1421 EXPECT_TRUE(info.GetMethodHotness(startup).IsInProfile()); in TEST_F()
1422 EXPECT_EQ(info.GetMethodHotness(startup).GetFlags(), Hotness::kFlagStartup); in TEST_F()
1429 MethodReference startup(dex1, 2); in TEST_F() local
1436 info.AddMethod(ProfileMethodInfo(startup, inline_caches), Hotness::kFlagStartup); in TEST_F()
1445 ASSERT_FALSE(GetMethod(info, dex1, startup.index).IsHot()); in TEST_F()
Dprofile_compilation_info.cc2056 bool startup = true; in DumpInfo() local
2058 os << "\n\t" << (startup ? "startup methods: " : "post startup methods: "); in DumpInfo()
2061 if (startup ? hotness_info.IsStartup() : hotness_info.IsPostStartup()) { in DumpInfo()
2069 if (startup == false) { in DumpInfo()
2072 startup = false; in DumpInfo()
/art/cmdline/
Dcmdline_parser_test.cc273 log_verbosity.startup = true; in TEST_F()

12