Lines Matching refs:path
24 std::string path = "/asdf/asdf"; in TEST() local
26 EXPECT_CALL(*m1ptr, canHandleBlob(path)).WillOnce(Return(false)); in TEST()
27 EXPECT_FALSE(mgr.open(flags, path, &sess)); in TEST()
40 std::string path = "/asdf/asdf"; in TEST() local
42 EXPECT_CALL(*m1ptr, canHandleBlob(path)).WillOnce(Return(true)); in TEST()
43 EXPECT_CALL(*m1ptr, open(_, flags, path)).WillOnce(Return(false)); in TEST()
44 EXPECT_FALSE(mgr.open(flags, path, &sess)); in TEST()
58 std::string path = "/asdf/asdf"; in TEST() local
61 EXPECT_CALL(*m1ptr, canHandleBlob(path)).WillOnce(Return(true)); in TEST()
63 EXPECT_FALSE(mgr.open(flags, path, &sess)); in TEST()
76 std::string path = "/asdf/asdf"; in TEST() local
78 EXPECT_CALL(*m1ptr, canHandleBlob(path)).WillOnce(Return(true)); in TEST()
79 EXPECT_CALL(*m1ptr, open(_, flags, path)).WillOnce(Return(true)); in TEST()
80 EXPECT_TRUE(mgr.open(flags, path, &sess)); in TEST()