Home
last modified time | relevance | path

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

/system/tools/hidl/
DInterface.h32 struct InterfaceAndMethod;
73 std::vector<InterfaceAndMethod> allMethodsFromRoot() const;
76 std::vector<InterfaceAndMethod> allSuperMethodsFromRoot() const;
163 struct InterfaceAndMethod { struct
164 InterfaceAndMethod(const Interface *iface, Method *method) in InterfaceAndMethod() argument
DInterface.cpp683 std::vector<InterfaceAndMethod> Interface::allMethodsFromRoot() const { in allMethodsFromRoot()
684 std::vector<InterfaceAndMethod> v; in allMethodsFromRoot()
689 v.push_back(InterfaceAndMethod(iface, userMethod)); in allMethodsFromRoot()
693 v.push_back(InterfaceAndMethod( in allMethodsFromRoot()
700 std::vector<InterfaceAndMethod> Interface::allSuperMethodsFromRoot() const { in allSuperMethodsFromRoot()
701 return isIBase() ? std::vector<InterfaceAndMethod>() : superType()->allMethodsFromRoot(); in allSuperMethodsFromRoot()