Home
last modified time | relevance | path

Searched refs:InterfaceAndMethod (Results 1 – 2 of 2) sorted by relevance

/system/tools/hidl/
DInterface.h33 struct InterfaceAndMethod;
77 std::vector<InterfaceAndMethod> allMethodsFromRoot() const;
80 std::vector<InterfaceAndMethod> allSuperMethodsFromRoot() const;
165 struct InterfaceAndMethod { struct
166 InterfaceAndMethod(const Interface *iface, Method *method) in InterfaceAndMethod() argument
DInterface.cpp632 std::vector<InterfaceAndMethod> Interface::allMethodsFromRoot() const { in allMethodsFromRoot()
633 std::vector<InterfaceAndMethod> v; in allMethodsFromRoot()
638 v.push_back(InterfaceAndMethod(iface, userMethod)); in allMethodsFromRoot()
642 v.push_back(InterfaceAndMethod( in allMethodsFromRoot()
649 std::vector<InterfaceAndMethod> Interface::allSuperMethodsFromRoot() const { in allSuperMethodsFromRoot()
650 return isIBase() ? std::vector<InterfaceAndMethod>() : superType()->allMethodsFromRoot(); in allSuperMethodsFromRoot()