Lines Matching refs:functionName
104 const std::string functionName = isTry ? "tryGetService" : "getService"; in declareGetService() local
127 out << "static ::android::sp<" << interfaceName << "> " << functionName << "(" in declareGetService()
129 DocComment("Deprecated. See " + functionName + "(std::string, bool)").emit(out); in declareGetService()
130 out << "static ::android::sp<" << interfaceName << "> " << functionName << "(" in declareGetService()
133 << " return " << functionName << "(str, getStub); }\n"; in declareGetService()
134 DocComment("Deprecated. See " + functionName + "(std::string, bool)").emit(out); in declareGetService()
135 out << "static ::android::sp<" << interfaceName << "> " << functionName << "(" in declareGetService()
139 << " return " << functionName << "(str, getStub); }\n"; in declareGetService()
140 DocComment("Calls " + functionName + in declareGetService()
143 out << "static ::android::sp<" << interfaceName << "> " << functionName << "(" in declareGetService()
144 << "bool getStub) { return " << functionName << "(\"default\", getStub); }\n"; in declareGetService()
172 const std::string functionName = isTry ? "tryGetService" : "getService"; in implementGetService() local
174 out << "::android::sp<" << interfaceName << "> " << interfaceName << "::" << functionName << "(" in implementGetService()