Home
last modified time | relevance | path

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

/system/chre/apps/nearby/location/lbs/contexthub/nanoapps/nearby/
Dnearby_extension_support_lib.cc31 #define CHRE_NSL_LAZY_LOOKUP(functionName) \ argument
34 static decltype(functionName) *funcPtr = nullptr; \
37 dlsym(RTLD_DEFAULT, STRINGIFY(functionName))); \
/system/chre/core/
Devent_loop_manager.cc26 Nanoapp *EventLoopManager::validateChreApiCall(const char *functionName) { in validateChreApiCall() argument
30 functionName); in validateChreApiCall()
/system/tools/hidl/
DgenerateCpp.cpp90 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()
[all …]
/system/chre/platform/shared/nanoapp/
Dnanoapp_support_lib_dso.cc234 #define CHRE_NSL_LAZY_LOOKUP(functionName) \ argument
237 static decltype(functionName) *funcPtr = nullptr; \
240 dlsym(RTLD_NEXT, STRINGIFY(functionName))); \
/system/chre/core/include/chre/core/
Devent_loop_manager.h94 static Nanoapp *validateChreApiCall(const char *functionName);