Searched refs:Opt (Results 1 – 2 of 2) sorted by relevance
79 using Opt = RuntimeArgumentMap; in TEST_F() typedef86 EXPECT_PARSED_EQ_AS_STRING_VECTOR(expected_boot_class_path, Opt::BootClassPath); in TEST_F()87 EXPECT_PARSED_EQ(class_path, Opt::ClassPath); in TEST_F()88 EXPECT_PARSED_EQ(std::string("boot_image"), Opt::Image); in TEST_F()89 EXPECT_PARSED_EXISTS(Opt::CheckJni); in TEST_F()90 EXPECT_PARSED_EQ(2048U, Opt::MemoryInitialSize); in TEST_F()91 EXPECT_PARSED_EQ(4 * KB, Opt::MemoryMaximumSize); in TEST_F()92 EXPECT_PARSED_EQ(1 * MB, Opt::StackSize); in TEST_F()93 EXPECT_DOUBLE_EQ(0.75, map.GetOrDefault(Opt::HeapTargetUtilization)); in TEST_F()94 EXPECT_TRUE(test_vfprintf == map.GetOrDefault(Opt::HookVfprintf)); in TEST_F()[all …]
1122 using Opt = RuntimeArgumentMap; in Init() typedef1123 Opt runtime_options(std::move(runtime_options_in)); in Init()1128 if (runtime_options.Exists(Opt::UseStderrLogger)) { in Init()1165 Thread::SetSensitiveThreadHook(runtime_options.GetOrDefault(Opt::HookIsSensitiveThread)); in Init()1166 Monitor::Init(runtime_options.GetOrDefault(Opt::LockProfThreshold), in Init()1167 runtime_options.GetOrDefault(Opt::StackDumpLockProfThreshold)); in Init()1169 image_location_ = runtime_options.GetOrDefault(Opt::Image); in Init()1175 SetInstructionSet(runtime_options.GetOrDefault(Opt::ImageInstructionSet)); in Init()1176 boot_class_path_ = runtime_options.ReleaseOrDefault(Opt::BootClassPath); in Init()1177 boot_class_path_locations_ = runtime_options.ReleaseOrDefault(Opt::BootClassPathLocations); in Init()[all …]