Lines Matching refs:mock_props

329     auto mock_props = std::make_unique<MockSystemProperties>();  in SetUp()  local
330 mock_props_ = mock_props.get(); in SetUp()
335 std::move(mock_props), in SetUp()
995 static void SetDefaultResourceControlProps(MockSystemProperties* mock_props) { in SetDefaultResourceControlProps() argument
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()
1036 static void SetAllResourceControlProps(MockSystemProperties* mock_props) { in SetAllResourceControlProps() argument
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()
2659 auto mock_props = std::make_unique<NiceMock<MockSystemProperties>>(); in SetUp() local
2660 mock_props_ = mock_props.get(); in SetUp()
2665 std::move(mock_props), in SetUp()