Searched refs:exceptionHandle (Results 1 – 6 of 6) sorted by relevance
/arkcompiler/ets_runtime/ecmascript/tests/ |
D | accessor_data_test.cpp | 238 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/ |
D | ecma_context.cpp | 521 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()
|
D | js_proxy.cpp | 527 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()
|
D | ecma_vm.cpp | 416 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/ |
D | jsnapi_expo.cpp | 2922 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/ |
D | js_module_source_text.cpp | 2027 JSHandle<JSTaggedValue> exceptionHandle(thread, error); in AsyncModuleExecutionRejected() local 2029 if (exceptionHandle->IsJSError()) { in AsyncModuleExecutionRejected()
|