Home
last modified time | relevance | path

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

/ohos5.0/base/notification/distributed_notification_service/frameworks/js/napi/src/manager/
H A Dnapi_push_callback.cpp189 napi_value promiseThen = nullptr; in HandleCheckPromise() local
191 napi_get_named_property(env_, funcResult, "then", &promiseThen); in HandleCheckPromise()
195 napi_is_callable(env_, promiseThen, &isCallable); in HandleCheckPromise()
214 status = napi_call_function(env_, funcResult, promiseThen, ARGC_ONE, argvPromise, nullptr); in HandleCheckPromise()
/ohos5.0/foundation/ability/ability_runtime/frameworks/native/appkit/app_startup/
H A Djs_startup_task_executor.cpp129 napi_value promiseThen = nullptr; in HandleReturnVal() local
130 napi_get_named_property(env, returnVal, "then", &promiseThen); in HandleReturnVal()
135 napi_call_function(env, returnVal, promiseThen, 1, argvThen, nullptr); in HandleReturnVal()
/ohos5.0/foundation/multimedia/camera_framework/frameworks/js/camera_napi/src/
H A Dcamera_napi_utils.cpp265 napi_value promiseThen = nullptr; in CallPromiseFun() local
266 napi_get_named_property(env, promiseValue, "then", &promiseThen); in CallPromiseFun()
267 if (promiseThen == nullptr) { in CallPromiseFun()
286 ret = napi_call_function(env, promiseValue, promiseThen, THEN_ARGC, thenArgv, &thenReturnValue); in CallPromiseFun()
/ohos5.0/foundation/communication/ipc/ipc/native/src/napi_common/source/
H A Dnapi_remote_object.cpp762 napi_value promiseThen = nullptr; in OnJsRemoteRequest() local
763 napi_get_named_property(param->env, returnVal, "then", &promiseThen); in OnJsRemoteRequest()
764 if (promiseThen == nullptr) { in OnJsRemoteRequest()
789 … ret = napi_call_function(env, returnVal, promiseThen, THEN_ARGC, thenArgv, &thenReturnValue); in OnJsRemoteRequest()