Home
last modified time | relevance | path

Searched refs:errorObserver_ (Results 1 – 3 of 3) sorted by relevance

/ohos5.0/foundation/ability/ability_runtime/frameworks/native/appkit/app/
H A Dapplication_data_manager.cpp35 errorObserver_ = observer; in AddErrorObserver()
40 if (errorObserver_) { in NotifyUnhandledException()
41 errorObserver_->OnUnhandledException(errMsg); in NotifyUnhandledException()
52 if (errorObserver_) { in NotifyCJUnhandledException()
53 errorObserver_->OnUnhandledException(errMsg); in NotifyCJUnhandledException()
64 errorObserver_ = nullptr; in RemoveErrorObserver()
69 if (errorObserver_) { in NotifyExceptionObject()
70 errorObserver_->OnExceptionObject(errorObj); in NotifyExceptionObject()
82 if (errorObserver_) { in NotifyCJExceptionObject()
83 errorObserver_->OnExceptionObject(errorObj); in NotifyCJExceptionObject()
/ohos5.0/foundation/ability/ability_runtime/test/unittest/frameworks_kits_appkit_native_test/
H A Dapplication_data_manager_test.cpp108 EXPECT_EQ(nullptr, ApplicationDataManager::GetInstance().errorObserver_);
126 EXPECT_NE(nullptr, ApplicationDataManager::GetInstance().errorObserver_);
129 EXPECT_EQ(nullptr, ApplicationDataManager::GetInstance().errorObserver_);
146 EXPECT_EQ(nullptr, ApplicationDataManager::GetInstance().errorObserver_);
/ohos5.0/foundation/ability/ability_runtime/interfaces/kits/native/appkit/app/
H A Dapplication_data_manager.h40 std::shared_ptr<IErrorObserver> errorObserver_; variable