Home
last modified time | relevance | path

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

/arkcompiler/ets_runtime/ecmascript/tests/
Daccessor_data_test.cpp238 JSHandle<JSTaggedValue> exceptionHandle(thread, thread->GetException()); in HWTEST_F_L0() local
241 factory->NewCompletionRecord(CompletionRecordType::NORMAL, exceptionHandle); in HWTEST_F_L0()
245 factory->NewCompletionRecord(CompletionRecordType::THROW, exceptionHandle); in HWTEST_F_L0()
/arkcompiler/ets_runtime/ecmascript/
Decma_context.cpp521 JSHandle<JSTaggedValue> exceptionHandle = GetEcmaUncaughtException(); in GetAndClearEcmaUncaughtException() local
523 return exceptionHandle; in GetAndClearEcmaUncaughtException()
599 JSHandle<JSTaggedValue> exceptionHandle(thread_, thread_->GetException()); in GetEcmaUncaughtException() local
600 return exceptionHandle; in GetEcmaUncaughtException()
614 JSHandle<JSTaggedValue> exceptionHandle(thread_, exception); in HandleUncaughtException() local
617 if (exceptionHandle->IsJSError()) { in HandleUncaughtException()
618 PrintJSErrorInfo(thread_, exceptionHandle); in HandleUncaughtException()
621 JSHandle<EcmaString> result = JSTaggedValue::ToString(thread_, exceptionHandle); in HandleUncaughtException()
Djs_proxy.cpp527 JSHandle<JSTaggedValue> exceptionHandle(thread, JSTaggedValue::Exception()); in GetProperty() local
530 … OperationResult(thread, exceptionHandle.GetTaggedValue(), PropertyMetaData(false))); in GetProperty()
538 thread, OperationResult(thread, exceptionHandle.GetTaggedValue(), PropertyMetaData(false))); in GetProperty()
549 thread, OperationResult(thread, exceptionHandle.GetTaggedValue(), PropertyMetaData(false))); in GetProperty()
556 thread, OperationResult(thread, exceptionHandle.GetTaggedValue(), PropertyMetaData(false))); in GetProperty()
563 thread, OperationResult(thread, exceptionHandle.GetTaggedValue(), PropertyMetaData(false))); in GetProperty()
574 … OperationResult(thread, exceptionHandle.GetTaggedValue(), PropertyMetaData(false))); in GetProperty()
585 … OperationResult(thread, exceptionHandle.GetTaggedValue(), PropertyMetaData(false))); in GetProperty()
Decma_vm.cpp416 JSHandle<JSTaggedValue> exceptionHandle = GetEcmaUncaughtException(); in GetAndClearEcmaUncaughtException() local
418 return exceptionHandle; in GetAndClearEcmaUncaughtException()
426 JSHandle<JSTaggedValue> exceptionHandle(thread_, thread_->GetException()); in GetEcmaUncaughtException() local
427 return exceptionHandle; in GetEcmaUncaughtException()
/arkcompiler/ets_runtime/ecmascript/napi/
Djsnapi_expo.cpp2922 JSHandle<JSTaggedValue> exceptionHandle = JSNApiHelper::ToJSHandle(exception); in PrintExceptionInfo() local
2923 if (exceptionHandle->IsJSError()) { in PrintExceptionInfo()
2924 vm->PrintJSErrorInfo(exceptionHandle); in PrintExceptionInfo()
2928 JSHandle<EcmaString> result = JSTaggedValue::ToString(thread, exceptionHandle); in PrintExceptionInfo()
/arkcompiler/ets_runtime/ecmascript/module/
Djs_module_source_text.cpp2027 JSHandle<JSTaggedValue> exceptionHandle(thread, error); in AsyncModuleExecutionRejected() local
2029 if (exceptionHandle->IsJSError()) { in AsyncModuleExecutionRejected()