/art/test/1002-notify-startup/ |
D | Android.bp | 3 // 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"],
|
D | info.txt | 1 Test that the startup completed callback works.
|
/art/test/1003-metadata-section-strings/ |
D | expected-stdout.txt | 5 After startup completed
|
D | run | 17 …piler-option --compiler-filter=speed-profile -Xcompiler-option --resolve-startup-const-strings=true
|
/art/test/1971-multi-force-early-return/src/art/ |
D | Test1971.java | 106 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/ |
D | Test925.java | 57 final CountDownLatch startup = new CountDownLatch(1); in doTest() local 60 startup.countDown(); in doTest() 67 startup.await(); in doTest()
|
/art/runtime/jit/ |
D | profile_saver.cc | 333 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 …]
|
D | profile_saver.h | 103 void FetchAndCacheResolvedClassesAndMethods(bool startup) REQUIRES(!Locks::profiler_lock_);
|
/art/runtime/ |
D | native_bridge_art_interface.cc | 95 VLOG(startup) << "Runtime::Setup native bridge library: " in LoadNativeBridge() 102 VLOG(startup) << "Runtime::Pre-initialize native bridge"; in PreInitializeNativeBridge()
|
D | app_info.cc | 68 VLOG(startup) << "Registering code path. " in RegisterAppInfo() 89 VLOG(startup) << "Registering odex status. " in RegisterOdexStatus()
|
D | runtime.cc | 919 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 …]
|
D | parsed_options_test.cc | 111 EXPECT_FALSE(VLOG_IS_ON(startup)); in TEST_F()
|
D | runtime_options.def | 194 // Switching this on adds ~500us to the startup on userdebug builds, or for
|
/art/libartbase/base/ |
D | flags.h | 109 if (VLOG_IS_ON(startup)) { in ReloadAllFlags() 110 VLOG_STREAM(startup) << "Dumping flags for " << caller; in ReloadAllFlags() 111 DumpFlags(VLOG_STREAM(startup)); in ReloadAllFlags()
|
D | logging.h | 53 bool startup; member
|
/art/tools/jvmti-agents/breakpoint-logger/ |
D | README.md | 29 that cannot be found using standard or bootstrap classloader at startup. 32 startup will cause the runtime to abort.
|
/art/runtime/gc/space/ |
D | rosalloc_space.cc | 143 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()
|
D | dlmalloc_space.cc | 117 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/ |
D | README.txt | 38 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/ |
D | README.md | 60 * `startup`
|
/art/openjdkjvmti/ |
D | ti_logging.cc | 122 art::gLogVerbosity.startup = val; in SetVerboseFlag()
|
/art/tools/ahat/ |
D | README.txt | 92 Improve startup performance, in some cases significantly. 100 Improve startup performance by roughly 25%.
|
/art/libprofile/profile/ |
D | profile_compilation_info_test.cc | 1404 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()
|
D | profile_compilation_info.cc | 2056 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/ |
D | cmdline_parser_test.cc | 273 log_verbosity.startup = true; in TEST_F()
|