Home
last modified time | relevance | path

Searched refs:PlayerAdapterErrorType (Results 1 – 7 of 7) sorted by relevance

/ohos5.0/base/web/webview/test/unittest/ohos_adapter/media_adapter_test/
H A Dplayer_framework_adapter_impl_test.cpp34 void OnError(PlayerAdapterErrorType errorType) override in OnError()
39 PlayerAdapterErrorType errorType_ = PlayerAdapterErrorType::INVALID_CODE;
165 EXPECT_EQ(callbackImpl->errorType_, PlayerAdapterErrorType::INVALID_CODE);
173 … public testing::WithParamInterface<std::tuple<PlayerAdapterErrorType, int32_t>> {
185 PlayerAdapterErrorType errorType = PlayerAdapterErrorType::INVALID_CODE;
192 testing::Combine(testing::Values(PlayerAdapterErrorType::UNSUPPORT_TYPE),
201 …testing::Combine(testing::Values(PlayerAdapterErrorType::FATAL_ERROR), testing::ValuesIn(fatalErro…
204 testing::Combine(testing::Values(PlayerAdapterErrorType::INVALID_CODE),
/ohos5.0/base/web/webview/test/fuzztest/ohos_adapter/media_adapter/playerframeworkadapterimpl_fuzzer/
H A Dplayerframeworkadapterimpl_fuzzer.cpp31 void OnError(PlayerAdapterErrorType errorType) override in OnError()
36 PlayerAdapterErrorType errorType_ = PlayerAdapterErrorType::INVALID_CODE;
/ohos5.0/base/web/webview/ohos_interface/include/ohos_adapter/
H A Dmedia_adapter.h25 enum class PlayerAdapterErrorType : int32_t { enum
62 virtual void OnError(PlayerAdapterErrorType errorType) = 0;
/ohos5.0/base/web/webview/ohos_adapter/media_adapter/src/
H A Dplayer_framework_adapter_impl.cpp162 auto errorType = PlayerAdapterErrorType::INVALID_CODE; in OnError()
164 errorType = PlayerAdapterErrorType::UNSUPPORT_TYPE; in OnError()
166 errorType = PlayerAdapterErrorType::FATAL_ERROR; in OnError()
/ohos5.0/base/web/webview/ohos_interface/ohos_glue/ohos_adapter/bridge/webview/
H A Dark_player_callback_adapter_wrapper.cpp31 void ArkPlayerCallbackAdapterWrapper::OnError(OHOS::NWeb::PlayerAdapterErrorType errorType) in OnError()
H A Dark_player_callback_adapter_wrapper.h31 void OnError(OHOS::NWeb::PlayerAdapterErrorType errorType) override;
/ohos5.0/base/web/webview/ohos_interface/ohos_glue/ohos_adapter/bridge/webcore/
H A Dark_player_callback_adapter_impl.cpp31 real_->OnError((OHOS::NWeb::PlayerAdapterErrorType)errorType); in OnError()