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 D | napi_push_callback.cpp | 189 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 D | js_startup_task_executor.cpp | 129 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 D | camera_napi_utils.cpp | 265 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 D | napi_remote_object.cpp | 762 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()
|