Home
last modified time | relevance | path

Searched refs:napiName (Results 1 – 3 of 3) sorted by relevance

/ohos5.0/foundation/arkui/ace_engine/interfaces/napi/kits/observer/
H A Dui_observer_listener.cpp98 napi_value napiName = nullptr; in OnRouterPageStateChange() local
103 napi_create_string_utf8(env_, pageInfo.name.c_str(), pageInfo.name.length(), &napiName); in OnRouterPageStateChange()
109 napi_set_named_property(env_, objValue, "name", napiName); in OnRouterPageStateChange()
678 napi_value napiName = nullptr; in CreateNavDestinationInfoObj() local
683 napi_create_string_utf8(env_, info.name.c_str(), info.name.length(), &napiName); in CreateNavDestinationInfoObj()
688 napi_set_named_property(env_, objValue, "name", napiName); in CreateNavDestinationInfoObj()
/ohos5.0/base/account/os_account/interfaces/kits/napi/domain_account/src/
H A Dnapi_domain_account_manager.cpp110 napi_value napiName = nullptr; in CreateNapiDomainAccountInfo() local
111 …napi_create_string_utf8(env, domainAccountInfo.accountName_.c_str(), NAPI_AUTO_LENGTH, &napiName)); in CreateNapiDomainAccountInfo()
112 NAPI_CALL(env, napi_set_named_property(env, napiInfo, "accountName", napiName)); in CreateNapiDomainAccountInfo()
326 napi_value napiName = nullptr; in CreatePluginAccountInfoOptions() local
328 param->env, param->domainAccountInfo.accountName_.c_str(), NAPI_AUTO_LENGTH, &napiName)); in CreatePluginAccountInfoOptions()
329 … NAPI_CALL(param->env, napi_set_named_property(param->env, napiOptions, "accountName", napiName)); in CreatePluginAccountInfoOptions()
/ohos5.0/foundation/distributedhardware/device_manager/interfaces/kits/js4.0/src/
H A Dnative_devicemanager_js.cpp1911 napi_value napiName = nullptr; in CreateDeviceManager() local
1914 napi_create_string_utf8(env, bundleName.c_str(), NAPI_AUTO_LENGTH, &napiName); in CreateDeviceManager()
1915 napi_status status = napi_new_instance(env, ctor, DM_NAPI_ARGS_ONE, &napiName, &result); in CreateDeviceManager()