Home
last modified time | relevance | path

Searched refs:SetPlaybackStrategy (Results 1 – 20 of 20) sorted by relevance

/ohos5.0/foundation/multimedia/player_framework/services/services/player/ipc/
H A Dplayer_service_stub.h68 int32_t SetPlaybackStrategy(AVPlayStrategy playbackStrategy) override;
152 int32_t SetPlaybackStrategy(MessageParcel &data, MessageParcel &reply);
H A Dplayer_service_stub.cpp174 … [this](MessageParcel &data, MessageParcel &reply) { return SetPlaybackStrategy(data, reply); } }; in FillPlayerFuncPart2()
1072 int32_t PlayerServiceStub::SetPlaybackStrategy(MessageParcel &data, MessageParcel &reply) in SetPlaybackStrategy() function in OHOS::Media::PlayerServiceStub
1081 reply.WriteInt32(SetPlaybackStrategy(avPlaybackStrategy)); in SetPlaybackStrategy()
1085 int32_t PlayerServiceStub::SetPlaybackStrategy(AVPlayStrategy playbackStrategy) in SetPlaybackStrategy() function in OHOS::Media::PlayerServiceStub
1089 return playerServer_->SetPlaybackStrategy(playbackStrategy); in SetPlaybackStrategy()
H A Dplayer_service_proxy.h58 int32_t SetPlaybackStrategy(AVPlayStrategy playbackStrategy) override;
H A Di_standard_player_service.h91 virtual int32_t SetPlaybackStrategy(AVPlayStrategy playbackStrategy) in SetPlaybackStrategy() function
H A Dplayer_service_proxy.cpp947 int32_t PlayerServiceProxy::SetPlaybackStrategy(AVPlayStrategy playbackStrategy) in SetPlaybackStrategy() function in OHOS::Media::PlayerServiceProxy
/ohos5.0/foundation/multimedia/player_framework/services/include/
H A Di_player_service.h505 virtual int32_t SetPlaybackStrategy(AVPlayStrategy playbackStrategy) in SetPlaybackStrategy() function
/ohos5.0/foundation/multimedia/player_framework/services/services/player/client/
H A Dplayer_client.h78 int32_t SetPlaybackStrategy(AVPlayStrategy playbackStrategy) override;
H A Dplayer_client.cpp429 int32_t PlayerClient::SetPlaybackStrategy(AVPlayStrategy playbackStrategy) in SetPlaybackStrategy() function in OHOS::Media::PlayerClient
432 return playerProxy_->SetPlaybackStrategy(playbackStrategy); in SetPlaybackStrategy()
/ohos5.0/foundation/multimedia/player_framework/frameworks/native/player/
H A Dplayer_impl.h79 int32_t SetPlaybackStrategy(AVPlayStrategy playbackStrategy) override;
H A Dplayer_impl.cpp492 int32_t PlayerImpl::SetPlaybackStrategy(AVPlayStrategy playbackStrategy) in SetPlaybackStrategy() function in OHOS::Media::PlayerImpl
496 return playerService_->SetPlaybackStrategy(playbackStrategy); in SetPlaybackStrategy()
/ohos5.0/foundation/multimedia/player_framework/services/services/engine_intf/
H A Di_player_engine.h222 virtual int32_t SetPlaybackStrategy(AVPlayStrategy playbackStrategy) in SetPlaybackStrategy() function
/ohos5.0/foundation/multimedia/player_framework/frameworks/native/player/test/unittest/include/
H A Dplayer_mock.h160 int32_t SetPlaybackStrategy(AVPlayStrategy strategy);
/ohos5.0/foundation/multimedia/player_framework/frameworks/native/player/test/unittest/src/
H A Dplayer_mock.cpp748 int32_t PlayerMock::SetPlaybackStrategy(AVPlayStrategy strategy) in SetPlaybackStrategy() function in OHOS::Media::PlayerMock
752 return player_->SetPlaybackStrategy(strategy); in SetPlaybackStrategy()
H A Dplayer_unit_test.cpp3410 ASSERT_NE(MSERR_OK, player_->SetPlaybackStrategy(playbackStrategy));
3412 ASSERT_EQ(MSERR_OK, player_->SetPlaybackStrategy(playbackStrategy));
/ohos5.0/foundation/multimedia/player_framework/interfaces/inner_api/native/
H A Dplayer.h614 virtual int32_t SetPlaybackStrategy(AVPlayStrategy playbackStrategy) in SetPlaybackStrategy() function
/ohos5.0/foundation/multimedia/player_framework/services/services/player/server/
H A Dplayer_server.h108 int32_t SetPlaybackStrategy(AVPlayStrategy playbackStrategy) override;
H A Dplayer_server.cpp1817 int32_t PlayerServer::SetPlaybackStrategy(AVPlayStrategy playbackStrategy) in SetPlaybackStrategy() function in OHOS::Media::PlayerServer
1825 return playerEngine_->SetPlaybackStrategy(playbackStrategy); in SetPlaybackStrategy()
/ohos5.0/foundation/multimedia/player_framework/services/engine/histreamer/player/
H A Dhiplayer_impl.h162 int32_t SetPlaybackStrategy(AVPlayStrategy playbackStrategy) override;
H A Dhiplayer_impl.cpp2938 int32_t HiPlayerImpl::SetPlaybackStrategy(AVPlayStrategy playbackStrategy) in SetPlaybackStrategy() function in OHOS::Media::HiPlayerImpl
/ohos5.0/foundation/multimedia/player_framework/frameworks/js/avplayer/
H A Davplayer_napi.cpp1497 int32_t ret = player_->SetPlaybackStrategy(playStrategy); in SetPlaybackStrategyTask()