Home
last modified time | relevance | path

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

/ohos5.0/base/global/resource_management/interfaces/js/innerkits/core/src/
H A Dresource_manager_napi_utils.cpp556 napi_value napi_val; in SetIntProperty() local
557 napi_status status = napi_create_int32(env, value, &napi_val); in SetIntProperty()
562 status = napi_set_named_property(env, object, property.c_str(), napi_val); in SetIntProperty()
606 napi_value napi_val; in GetEnumParamOfConfig() local
607 napi_status status = napi_get_named_property(env, object, property.c_str(), &napi_val); in GetEnumParamOfConfig()
612 if (napi_val == nullptr) { in GetEnumParamOfConfig()
616 if (ResourceManagerNapiUtils::GetType(env, napi_val) != napi_number) { in GetEnumParamOfConfig()
622 status = napi_get_value_int32(env, napi_val, &value); in GetEnumParamOfConfig()