Lines Matching refs:Method

81 bool Interface::fillPingMethod(Method *method) const {  in fillPingMethod()
113 bool Interface::fillLinkToDeathMethod(Method *method) const { in fillLinkToDeathMethod()
157 bool Interface::fillUnlinkToDeathMethod(Method *method) const { in fillUnlinkToDeathMethod()
205 bool Interface::fillSyspropsChangedMethod(Method *method) const { in fillSyspropsChangedMethod()
223 bool Interface::fillSetHALInstrumentationMethod(Method *method) const { in fillSetHALInstrumentationMethod()
256 bool Interface::fillDescriptorChainMethod(Method *method) const { in fillDescriptorChainMethod()
310 bool Interface::fillHashChainMethod(Method *method) const { in fillHashChainMethod()
345 bool Interface::fillGetDescriptorMethod(Method *method) const { in fillGetDescriptorMethod()
367 bool Interface::fillGetDebugInfoMethod(Method *method) const { in fillGetDebugInfoMethod()
421 bool Interface::fillDebugMethod(Method *method) const { in fillDebugMethod()
445 static std::map<std::string, Method *> gAllReservedMethods;
447 bool Interface::addMethod(Method *method) { in addMethod()
483 std::map<int32_t, Method *> reservedMethodsById; in addAllReservedMethods()
485 Method *method = pair.second->copySignature(); in addAllReservedMethods()
546 const std::vector<Method *> &Interface::userDefinedMethods() const { in userDefinedMethods()
550 const std::vector<Method *> &Interface::hidlReservedMethods() const { in hidlReservedMethods()
554 std::vector<Method *> Interface::methods() const { in methods()
555 std::vector<Method *> v(mUserMethods); in methods()
565 for (Method *userMethod : iface->userDefinedMethods()) { in allMethodsFromRoot()
569 for (Method *reservedMethod : hidlReservedMethods()) { in allMethodsFromRoot()
577 Method *Interface::lookupMethod(std::string name) const { in lookupMethod()
579 Method *method = tuple.method(); in lookupMethod()