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

/system/tools/hidl/
H A DInterface.h31 struct InterfaceAndMethod;
76 std::vector<InterfaceAndMethod> allMethodsFromRoot() const;
79 std::vector<InterfaceAndMethod> allSuperMethodsFromRoot() const;
165 struct InterfaceAndMethod { struct in namespace:android
166 InterfaceAndMethod(const Interface *iface, Method *method) function in struct:android::InterfaceAndMethod
H A DInterface.cpp686 std::vector<InterfaceAndMethod> Interface::allMethodsFromRoot() const {
687 std::vector<InterfaceAndMethod> v;
692 v.push_back(InterfaceAndMethod(iface, userMethod));
696 v.push_back(InterfaceAndMethod(
703 std::vector<InterfaceAndMethod> Interface::allSuperMethodsFromRoot() const {
704 return isIBase() ? std::vector<InterfaceAndMethod>() : superType()->allMethodsFromRoot();

Completed in 32 milliseconds