Searched refs:errCodeVal (Results 1 – 1 of 1) sorted by relevance
| /foundation/multimedia/player_framework/frameworks/js/common/ |
| D | common_napi.cpp | 170 napi_value errCodeVal = nullptr; in FillErrorArgs() local 172 status = napi_create_int32(env, errCodeInt, &errCodeVal); in FillErrorArgs() 173 CHECK_AND_RETURN_RET_LOG(status == napi_ok && errCodeVal != nullptr, napi_invalid_arg, in FillErrorArgs() 176 status = napi_set_property(env, args, codeStr, errCodeVal); in FillErrorArgs() 217 napi_value errCodeVal = nullptr; in CreateError() local 218 nstatus = napi_create_int32(env, errCode, &errCodeVal); in CreateError() 219 if (nstatus != napi_ok || errCodeVal == nullptr) { in CreateError() 224 nstatus = napi_set_property(env, errVal, codeStr, errCodeVal); in CreateError()
|