Lines Matching refs:GetProperty
297 MOCK_METHOD(std::string, GetProperty, (const std::string& key), (const, override));
331 EXPECT_CALL(*mock_props_, GetProperty).Times(AnyNumber()).WillRepeatedly(Return("")); in SetUp()
929 EXPECT_CALL(*mock_props_, GetProperty("dalvik.vm.dex2oat-swap")).WillOnce(Return("0")); in TEST_F()
930 EXPECT_CALL(*mock_props_, GetProperty("dalvik.vm.isa.arm64.features")) in TEST_F()
932 EXPECT_CALL(*mock_props_, GetProperty("dalvik.vm.isa.arm64.variant")).WillOnce(Return("variant")); in TEST_F()
933 EXPECT_CALL(*mock_props_, GetProperty("dalvik.vm.dex2oat-max-image-block-size")) in TEST_F()
935 EXPECT_CALL(*mock_props_, GetProperty("dalvik.vm.dex2oat-very-large")) in TEST_F()
937 EXPECT_CALL(*mock_props_, GetProperty("dalvik.vm.dex2oat-resolve-startup-strings")) in TEST_F()
939 EXPECT_CALL(*mock_props_, GetProperty("debug.generate-debug-info")).WillOnce(Return("1")); in TEST_F()
940 EXPECT_CALL(*mock_props_, GetProperty("dalvik.vm.dex2oat-minidebuginfo")).WillOnce(Return("1")); in TEST_F()
941 EXPECT_CALL(*mock_props_, GetProperty("odsign.verification.success")).WillOnce(Return("1")); in TEST_F()
942 EXPECT_CALL(*mock_props_, GetProperty("dalvik.vm.dex2oat-Xms")).WillOnce(Return("xms")); in TEST_F()
943 EXPECT_CALL(*mock_props_, GetProperty("dalvik.vm.dex2oat-Xmx")).WillOnce(Return("xmx")); in TEST_F()
944 EXPECT_CALL(*mock_props_, GetProperty("ro.config.low_ram")).WillOnce(Return("1")); in TEST_F()
945 EXPECT_CALL(*mock_props_, GetProperty("dalvik.vm.appimageformat")).WillOnce(Return("imgfmt")); in TEST_F()
946 EXPECT_CALL(*mock_props_, GetProperty("dalvik.vm.boot-image")).WillOnce(Return("boot-image")); in TEST_F()
947 EXPECT_CALL(*mock_props_, GetProperty("dalvik.vm.dex2oat-flags")) in TEST_F()
980 GetProperty("persist.device_config.runtime_native_boot.profilebootclasspath")) in TEST_F()
982 ON_CALL(*mock_props_, GetProperty("dalvik.vm.boot-image")).WillByDefault(Return("boot-image")); in TEST_F()
996 EXPECT_CALL(*mock_props, GetProperty("dalvik.vm.dex2oat-cpu-set")).WillRepeatedly(Return("0,2")); in SetDefaultResourceControlProps()
997 EXPECT_CALL(*mock_props, GetProperty("dalvik.vm.dex2oat-threads")).WillRepeatedly(Return("4")); in SetDefaultResourceControlProps()
1037 EXPECT_CALL(*mock_props, GetProperty("dalvik.vm.dex2oat-cpu-set")).WillRepeatedly(Return("0,2")); in SetAllResourceControlProps()
1038 EXPECT_CALL(*mock_props, GetProperty("dalvik.vm.dex2oat-threads")).WillRepeatedly(Return("4")); in SetAllResourceControlProps()
1039 EXPECT_CALL(*mock_props, GetProperty("dalvik.vm.boot-dex2oat-cpu-set")) in SetAllResourceControlProps()
1041 EXPECT_CALL(*mock_props, GetProperty("dalvik.vm.boot-dex2oat-threads")) in SetAllResourceControlProps()
1043 EXPECT_CALL(*mock_props, GetProperty("dalvik.vm.restore-dex2oat-cpu-set")) in SetAllResourceControlProps()
1045 EXPECT_CALL(*mock_props, GetProperty("dalvik.vm.restore-dex2oat-threads")) in SetAllResourceControlProps()
1047 EXPECT_CALL(*mock_props, GetProperty("dalvik.vm.background-dex2oat-cpu-set")) in SetAllResourceControlProps()
1049 EXPECT_CALL(*mock_props, GetProperty("dalvik.vm.background-dex2oat-threads")) in SetAllResourceControlProps()
2608 EXPECT_CALL(*mock_props_, GetProperty("ro.build.version.release")).WillRepeatedly(Return("15")); in TEST_F()
2661 ON_CALL(*mock_props_, GetProperty).WillByDefault(Return("")); in SetUp()