Home | History | Annotate | Download | only in ftp

Lines Matching defs:entry1

42   FtpAuthCache::Entry* entry1 = cache.Lookup(origin1);
43 ASSERT_TRUE(entry1);
44 EXPECT_EQ(origin1, entry1->origin);
45 EXPECT_EQ(kUsername1, entry1->username);
46 EXPECT_EQ(kPassword1, entry1->password);
56 // The original entry1 should still be there.
57 EXPECT_EQ(entry1, cache.Lookup(origin1));
101 FtpAuthCache::Entry* entry1 = cache.Lookup(GURL("ftp://HoSt:21"));
102 ASSERT_TRUE(entry1);
103 EXPECT_EQ(entry1, cache.Lookup(GURL("ftp://host:21")));
104 EXPECT_EQ(entry1, cache.Lookup(GURL("ftp://host")));