Home | History | Annotate | Download | only in master

Lines Matching defs:nodeList

130 void displayComponentInfo(hidl_vec<IOmx::ComponentInfo>& nodeList) {
131 for (size_t i = 0; i < nodeList.size(); i++) {
132 printf("%s | ", nodeList[i].mName.c_str());
133 for (size_t j = 0; j < ((nodeList[i]).mRoles).size(); j++) {
134 printf("%s ", nodeList[i].mRoles[j].c_str());
180 hidl_vec<IOmx::ComponentInfo> nodeList;
183 omx->listNodes([&status, &nodeList](
187 nodeList = _nl;
191 if (nodeList.size() == 0)
194 // displayComponentInfo(nodeList);
195 for (size_t i = 0; i < nodeList.size(); i++) {
202 nodeList[i].mName, observer,
212 std::cerr << "[ !OK ] " << nodeList[i].mName.c_str()
217 // std::cout << "[ OK ] " << nodeList[i].mName.c_str() <<