Lines Matching refs:times
348 void expectVendorManifest(size_t times = 1) { in expectVendorManifest() argument
349 EXPECT_CALL(fetcher(), fetch(StrEq(kVendorManifest), _)).Times(times); in expectVendorManifest()
353 .Times(times); in expectVendorManifest()
356 .Times(times); in expectVendorManifest()
358 EXPECT_CALL(fetcher(), fetch(StrEq(kOdmLegacyManifest), _)).Times(times); in expectVendorManifest()
359 EXPECT_CALL(fetcher(), fetch(StrEq(kOdmManifest), _)).Times(times); in expectVendorManifest()
360 EXPECT_CALL(fetcher(), fetch(StrEq(kVendorLegacyManifest), _)).Times(times); in expectVendorManifest()
363 void expectSystemManifest(size_t times = 1) { in expectSystemManifest() argument
364 EXPECT_CALL(fetcher(), fetch(StrEq(kSystemManifest), _)).Times(times); in expectSystemManifest()
367 void expectVendorMatrix(size_t times = 1) { in expectVendorMatrix() argument
368 EXPECT_CALL(fetcher(), fetch(StrEq(kVendorMatrix), _)).Times(times); in expectVendorMatrix()
369 EXPECT_CALL(fetcher(), fetch(StrEq(kVendorLegacyMatrix), _)).Times(times); in expectVendorMatrix()
372 void expectSystemMatrix(size_t times = 1) { in expectSystemMatrix() argument
373 EXPECT_CALL(fetcher(), fetch(StrEq(kSystemLegacyMatrix), _)).Times(times); in expectSystemMatrix()