Home
last modified time | relevance | path

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

/ohos5.0/foundation/arkui/ace_engine/frameworks/bridge/js_frontend/engine/jsi/
H A Djsi_engine.h183 bool CallAppFunc(const std::string& appFuncName);
184 bool CallAppFunc(const std::string& appFuncName, std::vector<shared_ptr<JsValue>>& argv);
H A Djsi_engine.cpp3685 bool JsiEngine::CallAppFunc(const std::string& appFuncName) in CallAppFunc() argument
3688 return CallAppFunc(appFuncName, argv); in CallAppFunc()
3691 bool JsiEngine::CallAppFunc(const std::string& appFuncName, std::vector<shared_ptr<JsValue>>& argv) in CallAppFunc() argument
3706 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()
/ohos5.0/foundation/arkui/ace_engine/frameworks/bridge/declarative_frontend/engine/jsi/
H A Djsi_declarative_engine.h476 bool CallAppFunc(const std::string& appFuncName);
478 bool CallAppFunc(const std::string& appFuncName, std::vector<shared_ptr<JsValue>>& argv);
H A Djsi_declarative_engine.cpp2395 bool JsiDeclarativeEngine::CallAppFunc(const std::string& appFuncName) in CallAppFunc() argument
2398 return CallAppFunc(appFuncName, argv); in CallAppFunc()
2401 bool JsiDeclarativeEngine::CallAppFunc(const std::string& appFuncName, std::vector<shared_ptr<JsVal… in CallAppFunc() argument
2414 shared_ptr<JsValue> func = defaultObject->GetProperty(runtime, appFuncName); in CallAppFunc()