Lines Matching full:method
32 struct Method;
47 void addUserDefinedMethod(Method* method);
48 bool addAllReservedMethods(const std::map<std::string, Method*>& allReservedMethods);
67 const std::vector<Method *> &userDefinedMethods() const;
69 const std::vector<Method *> &hidlReservedMethods() const;
71 std::vector<Method *> methods() const;
143 std::vector<Method*> mUserMethods;
144 std::vector<Method*> mReservedMethods;
148 bool fillPingMethod(Method* method) const;
149 bool fillDescriptorChainMethod(Method* method) const;
150 bool fillGetDescriptorMethod(Method* method) const;
151 bool fillHashChainMethod(Method* method) const;
152 bool fillSyspropsChangedMethod(Method* method) const;
153 bool fillLinkToDeathMethod(Method* method) const;
154 bool fillUnlinkToDeathMethod(Method* method) const;
155 bool fillSetHALInstrumentationMethod(Method* method) const;
156 bool fillGetDebugInfoMethod(Method* method) const;
157 bool fillDebugMethod(Method* method) const;
166 // An interface / method tuple.
168 InterfaceAndMethod(const Interface *iface, Method *method) in InterfaceAndMethod()
170 mMethod(method) {} in InterfaceAndMethod()
171 Method *method() const { return mMethod; } in method() function
177 Method *mMethod;