Lines Matching refs:Method
26 struct Method;
32 bool addMethod(Method *method);
44 Method *lookupMethod(std::string name) const;
53 const std::vector<Method *> &userDefinedMethods() const;
55 const std::vector<Method *> &hidlReservedMethods() const;
57 std::vector<Method *> methods() const;
114 std::vector<Method *> mUserMethods;
115 std::vector<Method *> mReservedMethods;
117 bool fillPingMethod(Method *method) const;
118 bool fillDescriptorChainMethod(Method *method) const;
119 bool fillGetDescriptorMethod(Method *method) const;
120 bool fillHashChainMethod(Method *method) const;
121 bool fillSyspropsChangedMethod(Method *method) const;
122 bool fillLinkToDeathMethod(Method *method) const;
123 bool fillUnlinkToDeathMethod(Method *method) const;
124 bool fillSetHALInstrumentationMethod(Method *method) const;
125 bool fillGetDebugInfoMethod(Method *method) const;
126 bool fillDebugMethod(Method *method) const;
133 InterfaceAndMethod(const Interface *iface, Method *method) in InterfaceAndMethod()
136 Method *method() const { return mMethod; } in method()
141 Method *mMethod;