Home
last modified time | relevance | path

Searched refs:outNames (Results 1 – 3 of 3) sorted by relevance

/packages/services/Car/cpp/computepipe/tests/
DPipeQueryTest.cpp108 std::vector<std::string>* outNames = new std::vector<std::string>(); in TEST_F() local
110 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()
/packages/services/Car/cpp/computepipe/router/1.0/
DPipeQuery.cpp32 ScopedAStatus PipeQuery::getGraphList(std::vector<std::string>* outNames) { in getGraphList() argument
33 if (!mRegistry || !outNames) { in getGraphList()
37 std::copy(names.begin(), names.end(), std::back_inserter(*outNames)); in getGraphList()
/packages/services/Car/cpp/computepipe/router/1.0/include/
DPipeQuery.h38 ndk::ScopedAStatus getGraphList(::std::vector<std::string>* outNames) override;