Searched refs:functionName (Results 1 – 4 of 4) sorted by relevance
75 #define CHRE_NSL_LAZY_LOOKUP(functionName) ({ \ argument77 static decltype(functionName) *fptr = nullptr; \80 dlsym(RTLD_NEXT, STRINGIFY(functionName))); \
29 Nanoapp *EventLoopManager::validateChreApiCall(const char *functionName) { in validateChreApiCall() argument33 functionName); in validateChreApiCall()
96 static Nanoapp *validateChreApiCall(const char *functionName);
104 const std::string functionName = isTry ? "tryGetService" : "getService"; in declareGetService() local106 out << "static ::android::sp<" << interfaceName << "> " << functionName << "(" in declareGetService()108 out << "static ::android::sp<" << interfaceName << "> " << functionName << "(" in declareGetService()111 << " return " << functionName << "(str, getStub); }\n"; in declareGetService()112 out << "static ::android::sp<" << interfaceName << "> " << functionName << "(" in declareGetService()116 << " return " << functionName << "(str, getStub); }\n"; in declareGetService()117 out << "static ::android::sp<" << interfaceName << "> " << functionName << "(" in declareGetService()118 << "bool getStub) { return " << functionName << "(\"default\", getStub); }\n"; in declareGetService()141 const std::string functionName = isTry ? "tryGetService" : "getService"; in implementGetService() local144 << "::android::sp<" << interfaceName << "> " << interfaceName << "::" << functionName << "(" in implementGetService()