Lines Matching refs:Method
32 struct Method;
46 void addUserDefinedMethod(Method* method);
47 bool addAllReservedMethods(const std::map<std::string, Method*>& allReservedMethods);
64 const std::vector<Method *> &userDefinedMethods() const;
66 const std::vector<Method *> &hidlReservedMethods() const;
68 std::vector<Method *> methods() const;
141 std::vector<Method*> mUserMethods;
142 std::vector<Method*> mReservedMethods;
146 bool fillPingMethod(Method* method) const;
147 bool fillDescriptorChainMethod(Method* method) const;
148 bool fillGetDescriptorMethod(Method* method) const;
149 bool fillHashChainMethod(Method* method) const;
150 bool fillSyspropsChangedMethod(Method* method) const;
151 bool fillLinkToDeathMethod(Method* method) const;
152 bool fillUnlinkToDeathMethod(Method* method) const;
153 bool fillSetHALInstrumentationMethod(Method* method) const;
154 bool fillGetDebugInfoMethod(Method* method) const;
155 bool fillDebugMethod(Method* method) const;
166 InterfaceAndMethod(const Interface *iface, Method *method) in InterfaceAndMethod()
169 Method *method() const { return mMethod; } in method()
175 Method *mMethod;