Searched refs:packageInterfaces (Results 1 – 4 of 4) sorted by relevance
/system/tools/hidl/ |
D | main.cpp | 197 std::vector<FQName> packageInterfaces; in appendTargets() local 198 status_t err = coordinator->appendPackageInterfacesToVector(fqName, &packageInterfaces); in appendTargets() 200 for (const FQName& packageInterface : packageInterfaces) { in appendTargets() 339 std::vector<FQName> packageInterfaces; in dumpDefinedButUnreferencedTypeNames() local 340 status_t err = coordinator->appendPackageInterfacesToVector(packageFQName, &packageInterfaces); in dumpDefinedButUnreferencedTypeNames() 345 err = coordinator->addUnreferencedTypes(packageInterfaces, &unreferencedDefinitions, in dumpDefinedButUnreferencedTypeNames() 406 std::vector<FQName> packageInterfaces; in isPackageJavaCompatible() local 408 package, &packageInterfaces); in isPackageJavaCompatible() 414 for (const auto &iface : packageInterfaces) { in isPackageJavaCompatible() 430 const std::vector<FQName> &packageInterfaces, AST *typesAST) { in packageNeedsJavaCode() argument [all …]
|
D | Coordinator.cpp | 507 std::vector<FQName> *packageInterfaces) const { in appendPackageInterfacesToVector() 508 packageInterfaces->clear(); in appendPackageInterfacesToVector() 519 packageInterfaces->push_back(subFQName); in appendPackageInterfacesToVector() 541 std::vector<FQName> packageInterfaces; in isTypesOnlyPackage() local 543 status_t err = appendPackageInterfacesToVector(package, &packageInterfaces); in isTypesOnlyPackage() 550 *result = packageInterfaces.size() == 1 && packageInterfaces[0].name() == "types"; in isTypesOnlyPackage() 554 status_t Coordinator::addUnreferencedTypes(const std::vector<FQName>& packageInterfaces, in addUnreferencedTypes() argument 565 for (const auto& fqName : packageInterfaces) { in addUnreferencedTypes() 723 std::vector<FQName> packageInterfaces; in enforceMinorVersionUprevs() local 724 err = appendPackageInterfacesToVector(currentPackage, &packageInterfaces); in enforceMinorVersionUprevs() [all …]
|
D | Coordinator.h | 124 std::vector<FQName> *packageInterfaces) const; 129 status_t addUnreferencedTypes(const std::vector<FQName>& packageInterfaces,
|
D | AST.cpp | 388 std::vector<FQName> packageInterfaces; in importFQName() local 390 status_t err = mCoordinator->appendPackageInterfacesToVector(fqName, &packageInterfaces); in importFQName() 396 for (const auto& subFQName : packageInterfaces) { in importFQName()
|