Home | History | Annotate | Download | only in http

Lines Matching refs:truncated

983 // Creates a truncated entry that can be resumed using byte ranges.
4099 bool truncated = false;
4100 EXPECT_TRUE(MockHttpCache::ReadResponseInfo(entry, &response, &truncated));
4101 EXPECT_TRUE(truncated);
4105 truncated = true;
4106 EXPECT_TRUE(MockHttpCache::ReadResponseInfo(entry, &response, &truncated));
4107 EXPECT_FALSE(truncated);
4299 bool truncated = false;
4300 EXPECT_TRUE(MockHttpCache::ReadResponseInfo(entry, &response, &truncated));
4301 EXPECT_TRUE(truncated);
4344 bool truncated = true;
4346 EXPECT_TRUE(MockHttpCache::ReadResponseInfo(entry, &response, &truncated));
4347 EXPECT_FALSE(truncated);
4353 // Tests that we delete truncated entries if the server changes its mind midway.
4390 // Tests that we always validate a truncated request.
4455 bool truncated = true;
4457 EXPECT_TRUE(MockHttpCache::ReadResponseInfo(entry, &response, &truncated));
4458 EXPECT_FALSE(truncated);
4465 // as truncated.
4496 // a truncated one.
4507 bool truncated = false;
4509 EXPECT_TRUE(MockHttpCache::ReadResponseInfo(entry, &response, &truncated));
4510 EXPECT_TRUE(truncated);
4515 // Tests that we can handle range requests when we have a truncated entry.