Lines Matching refs:functionName
90 const std::string functionName = isTry ? "tryGetService" : "getService"; in declareGetService() local
115 out << "static ::android::sp<" << interfaceName << "> " << functionName << "(" in declareGetService()
117 DocComment("Deprecated. See " + functionName + "(std::string, bool)", HIDL_LOCATION_HERE) in declareGetService()
119 out << "static ::android::sp<" << interfaceName << "> " << functionName << "(" in declareGetService()
122 << " return " << functionName << "(str, getStub); }\n"; in declareGetService()
123 DocComment("Deprecated. See " + functionName + "(std::string, bool)", HIDL_LOCATION_HERE) in declareGetService()
125 out << "static ::android::sp<" << interfaceName << "> " << functionName << "(" in declareGetService()
129 << " return " << functionName << "(str, getStub); }\n"; in declareGetService()
130 DocComment("Calls " + functionName + in declareGetService()
135 out << "static ::android::sp<" << interfaceName << "> " << functionName << "(" in declareGetService()
136 << "bool getStub) { return " << functionName << "(\"default\", getStub); }\n"; in declareGetService()
166 const std::string functionName = isTry ? "tryGetService" : "getService"; in implementGetService() local
168 out << "::android::sp<" << interfaceName << "> " << interfaceName << "::" << functionName << "(" in implementGetService()