Lines Matching refs:prefs
2293 EXPECT_FALSE(FakeSystemState::Get()->prefs()->Exists(last_active_key)); in TEST_F()
2296 EXPECT_FALSE(FakeSystemState::Get()->prefs()->Exists(last_rollcall_key)); in TEST_F()
2322 MemoryPrefs prefs; in TEST_F() local
2323 FakeSystemState::Get()->set_prefs(&prefs); in TEST_F()
2335 FakeSystemState::Get()->prefs()->SetString(active_key, "z2yz"); in TEST_F()
2336 FakeSystemState::Get()->prefs()->SetString(last_active_key, "z2yz"); in TEST_F()
2337 FakeSystemState::Get()->prefs()->SetString(last_rollcall_key, "z2yz"); in TEST_F()
2367 FakeSystemState::Get()->prefs()->SetInt64(active_key, 1); in TEST_F()
2368 FakeSystemState::Get()->prefs()->SetInt64(last_active_key, 78); in TEST_F()
2369 FakeSystemState::Get()->prefs()->SetInt64(last_rollcall_key, 99); in TEST_F()
2393 FakeSystemState::Get()->prefs()->SetInt64(active_key, kPingInactiveValue); in TEST_F()
2394 FakeSystemState::Get()->prefs()->SetInt64(last_active_key, 0); in TEST_F()
2395 FakeSystemState::Get()->prefs()->SetInt64(last_rollcall_key, 0); in TEST_F()
2396 EXPECT_TRUE(FakeSystemState::Get()->prefs()->Exists(active_key)); in TEST_F()
2397 EXPECT_TRUE(FakeSystemState::Get()->prefs()->Exists(last_active_key)); in TEST_F()
2398 EXPECT_TRUE(FakeSystemState::Get()->prefs()->Exists(last_rollcall_key)); in TEST_F()
2404 EXPECT_FALSE(FakeSystemState::Get()->prefs()->Exists(last_active_key)); in TEST_F()
2405 EXPECT_FALSE(FakeSystemState::Get()->prefs()->Exists(last_rollcall_key)); in TEST_F()
2407 EXPECT_TRUE(FakeSystemState::Get()->prefs()->Exists(active_key)); in TEST_F()
2409 EXPECT_TRUE(FakeSystemState::Get()->prefs()->GetInt64(active_key, &temp_int)); in TEST_F()
2419 EXPECT_TRUE(FakeSystemState::Get()->prefs()->Exists(active_key)); in TEST_F()
2420 EXPECT_TRUE(FakeSystemState::Get()->prefs()->GetInt64(active_key, &temp_int)); in TEST_F()
2430 FakeSystemState::Get()->prefs()->SetInt64(key, 1); in TEST_F()
2431 EXPECT_TRUE(FakeSystemState::Get()->prefs()->Exists(key)); in TEST_F()
2436 EXPECT_FALSE(FakeSystemState::Get()->prefs()->Exists(key)); in TEST_F()