Home | History | Annotate | Download | only in geolocation

Lines Matching defs:attempts

90   size_t attempts() const { return attempts_; }
123 size_t attempts() const { return url_callback_->attempts(); }
186 EXPECT_EQ(1U, url_factory.attempts());
207 EXPECT_EQ(4U, url_factory.attempts());
237 EXPECT_GE(url_factory.attempts(), 2U);
238 if (url_factory.attempts() > expected_retries + 1) {
240 << "SimpleGeolocationTest::InvalidResponse: Too many attempts ("
241 << url_factory.attempts() << "), no more then " << expected_retries + 1
244 if (url_factory.attempts() < expected_retries - 1) {
246 << "SimpleGeolocationTest::InvalidResponse: Too little attempts ("
247 << url_factory.attempts() << "), greater then " << expected_retries - 1