Searched refs:appFuncName (Results 1 – 4 of 4) sorted by relevance
183 bool CallAppFunc(const std::string& appFuncName);184 bool CallAppFunc(const std::string& appFuncName, std::vector<shared_ptr<JsValue>>& argv);
3685 bool JsiEngine::CallAppFunc(const std::string& appFuncName) in CallAppFunc() argument3688 return CallAppFunc(appFuncName, argv); in CallAppFunc()3691 bool JsiEngine::CallAppFunc(const std::string& appFuncName, std::vector<shared_ptr<JsValue>>& argv) in CallAppFunc() argument3706 shared_ptr<JsValue> func = defaultObject->GetProperty(runtime, appFuncName); in CallAppFunc()3708 LOGE("%{public}s not found or is not a function!", appFuncName.c_str()); in CallAppFunc()
476 bool CallAppFunc(const std::string& appFuncName);478 bool CallAppFunc(const std::string& appFuncName, std::vector<shared_ptr<JsValue>>& argv);
2395 bool JsiDeclarativeEngine::CallAppFunc(const std::string& appFuncName) in CallAppFunc() argument2398 return CallAppFunc(appFuncName, argv); in CallAppFunc()2401 bool JsiDeclarativeEngine::CallAppFunc(const std::string& appFuncName, std::vector<shared_ptr<JsVal… in CallAppFunc() argument2414 shared_ptr<JsValue> func = defaultObject->GetProperty(runtime, appFuncName); in CallAppFunc()