Searched refs:outNames (Results 1 – 3 of 3) sorted by relevance
108 std::vector<std::string>* outNames = new std::vector<std::string>(); in TEST_F() local110 ASSERT_TRUE(qIface->getGraphList(outNames).isOk()); in TEST_F()112 ASSERT_NE(outNames->size(), 0); in TEST_F()113 EXPECT_THAT(std::find(outNames->begin(), outNames->end(), "stub1"), in TEST_F()114 testing::Ne(outNames->end())); in TEST_F()115 EXPECT_THAT(std::find(outNames->begin(), outNames->end(), "stub2"), in TEST_F()116 testing::Ne(outNames->end())); in TEST_F()
32 ScopedAStatus PipeQuery::getGraphList(std::vector<std::string>* outNames) { in getGraphList() argument33 if (!mRegistry || !outNames) { in getGraphList()37 std::copy(names.begin(), names.end(), std::back_inserter(*outNames)); in getGraphList()
38 ndk::ScopedAStatus getGraphList(::std::vector<std::string>* outNames) override;