Home
last modified time | relevance | path

Searched refs:functionName (Results 1 – 4 of 4) sorted by relevance

/system/chre/platform/shared/nanoapp/
Dnanoapp_support_lib_dso.cc75 #define CHRE_NSL_LAZY_LOOKUP(functionName) ({ \ argument
77 static decltype(functionName) *fptr = nullptr; \
80 dlsym(RTLD_NEXT, STRINGIFY(functionName))); \
/system/chre/core/
Devent_loop_manager.cc29 Nanoapp *EventLoopManager::validateChreApiCall(const char *functionName) { in validateChreApiCall() argument
33 functionName); in validateChreApiCall()
/system/chre/core/include/chre/core/
Devent_loop_manager.h96 static Nanoapp *validateChreApiCall(const char *functionName);
/system/tools/hidl/
DgenerateCpp.cpp104 const std::string functionName = isTry ? "tryGetService" : "getService"; in declareGetService() local
106 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() local
144 << "::android::sp<" << interfaceName << "> " << interfaceName << "::" << functionName << "(" in implementGetService()