Lines Matching defs:slave
119 // slave to make sure it reads the data properly.
132 // Create a slave database.
133 VisitedLinkSlave slave;
137 slave.OnUpdateVisitedLinks(new_handle);
138 g_slaves.push_back(&slave);
146 found = slave.IsVisited(cur);
147 EXPECT_TRUE(found) << "URL " << i << "not found in slave.";
153 found = slave.IsVisited(GURL("http://unfound.site/"));
274 VisitedLinkSlave slave;
278 slave.OnUpdateVisitedLinks(new_handle);
279 g_slaves.push_back(&slave);
288 // Make sure the slave picked up the adds.
290 EXPECT_TRUE(slave.IsVisited(TestURL(i)));
292 // Clear the table and make sure the slave picked it up.
297 EXPECT_FALSE(slave.IsVisited(TestURL(i)));
322 // ...and a slave
323 VisitedLinkSlave slave;
327 slave.OnUpdateVisitedLinks(new_handle);
328 g_slaves.push_back(&slave);
348 // Verify that the slave got the resize message and has the same
352 slave.GetUsageStatistics(&child_table_size, &child_table);