Home
last modified time | relevance | path

Searched refs:SetPlayRangeWithMode (Results 1 - 20 of 20) sorted by relevance

/foundation/multimedia/player_framework/services/services/player/server/
H A Dplayer_server_state.h37 virtual int32_t SetPlayRangeWithMode(int64_t start, int64_t end, PlayerSeekMode mode);
82 int32_t SetPlayRangeWithMode(int64_t start, int64_t end, PlayerSeekMode mode) override;
108 int32_t SetPlayRangeWithMode(int64_t start, int64_t end, PlayerSeekMode mode) override;
150 int32_t SetPlayRangeWithMode(int64_t start, int64_t end, PlayerSeekMode mode) override;
165 int32_t SetPlayRangeWithMode(int64_t start, int64_t end, PlayerSeekMode mode) override;
178 int32_t SetPlayRangeWithMode(int64_t start, int64_t end, PlayerSeekMode mode) override;
H A Dplayer_server_state.cpp98 int32_t PlayerServer::BaseState::SetPlayRangeWithMode(int64_t start, int64_t end, PlayerSeekMode mode) in SetPlayRangeWithMode() function in OHOS::Media::PlayerServer::BaseState
222 int32_t PlayerServer::InitializedState::SetPlayRangeWithMode(int64_t start, int64_t end, PlayerSeekMode mode) in SetPlayRangeWithMode() function in OHOS::Media::PlayerServer::InitializedState
285 int32_t PlayerServer::PreparedState::SetPlayRangeWithMode(int64_t start, int64_t end, PlayerSeekMode mode) in SetPlayRangeWithMode() function in OHOS::Media::PlayerServer::PreparedState
452 int32_t PlayerServer::PausedState::SetPlayRangeWithMode(int64_t start, int64_t end, PlayerSeekMode mode) in SetPlayRangeWithMode() function in OHOS::Media::PlayerServer::PausedState
496 int32_t PlayerServer::StoppedState::SetPlayRangeWithMode(int64_t start, int64_t end, PlayerSeekMode mode) in SetPlayRangeWithMode() function in OHOS::Media::PlayerServer::StoppedState
516 int32_t PlayerServer::PlaybackCompletedState::SetPlayRangeWithMode(int64_t start, int64_t end, PlayerSeekMode mode) in SetPlayRangeWithMode() function in OHOS::Media::PlayerServer::PlaybackCompletedState
H A Dplayer_server.h83 int32_t SetPlayRangeWithMode(int64_t start, int64_t end, PlayerSeekMode mode) override;
H A Dplayer_server.cpp357 int32_t PlayerServer::SetPlayRangeWithMode(int64_t start, int64_t end, PlayerSeekMode mode) in SetPlayRangeWithMode() function in OHOS::Media::PlayerServer
365 MEDIA_LOGE("Can not SetPlayRangeWithMode, currentState is %{public}s", in SetPlayRangeWithMode()
370 MEDIA_LOGE("Can not SetPlayRangeWithMode, it is live-stream"); in SetPlayRangeWithMode()
376 (void)currState->SetPlayRangeWithMode(start, end, mode); in SetPlayRangeWithMode()
379 CHECK_AND_RETURN_RET_LOG(ret == MSERR_OK, ret, "SetPlayRangeWithMode failed"); in SetPlayRangeWithMode()
387 int32_t ret = playerEngine_->SetPlayRangeWithMode(start, end, mode); in HandleSetPlayRange()
390 CHECK_AND_RETURN_RET_LOG(ret == MSERR_OK, MSERR_INVALID_OPERATION, "Engine SetPlayRangeWithMode Failed!"); in HandleSetPlayRange()
/foundation/multimedia/player_framework/test/unittest/hiplayer_impl_test/
H A Dhiplayer_impl_unit_test.cpp724 EXPECT_EQ(hiplayer_->SetPlayRangeWithMode(start, end, mode), MSERR_INVALID_VAL); in HWTEST_F()
733 EXPECT_EQ(hiplayer_->SetPlayRangeWithMode(start, end, mode), MSERR_OK); in HWTEST_F()
742 EXPECT_EQ(hiplayer_->SetPlayRangeWithMode(start, end, mode), MSERR_INVALID_VAL); in HWTEST_F()
751 EXPECT_EQ(hiplayer_->SetPlayRangeWithMode(start, end, mode), MSERR_INVALID_VAL); in HWTEST_F()
762 EXPECT_EQ(hiplayer_->SetPlayRangeWithMode(start, end, mode), MSERR_INVALID_VAL); in HWTEST_F()
/foundation/multimedia/player_framework/services/services/player/ipc/
H A Dplayer_service_stub.h52 int32_t SetPlayRangeWithMode(int64_t start, int64_t end, PlayerSeekMode mode) override;
123 int32_t SetPlayRangeWithMode(MessageParcel &data, MessageParcel &reply);
H A Di_standard_player_service.h49 virtual int32_t SetPlayRangeWithMode(int64_t start, int64_t end, PlayerSeekMode mode) in SetPlayRangeWithMode() function in OHOS::Media::IStandardPlayerService
H A Dplayer_service_proxy.h37 int32_t SetPlayRangeWithMode(int64_t start, int64_t end, PlayerSeekMode mode) override;
H A Dplayer_service_stub.cpp170 playerFuncs_[SET_PLAY_RANGE_WITH_MODE] = { "SetPlayRangeWithMode", in FillPlayerFuncPart2()
171 [this](MessageParcel &data, MessageParcel &reply) { return SetPlayRangeWithMode(data, reply); } }; in FillPlayerFuncPart2()
334 int32_t PlayerServiceStub::SetPlayRangeWithMode(int64_t start, int64_t end, PlayerSeekMode mode) in SetPlayRangeWithMode() function in OHOS::Media::PlayerServiceStub
336 MediaTrace trace("Stub::SetPlayRangeWithMode"); in SetPlayRangeWithMode()
338 return playerServer_->SetPlayRangeWithMode(start, end, mode); in SetPlayRangeWithMode()
696 int32_t PlayerServiceStub::SetPlayRangeWithMode(MessageParcel &data, MessageParcel &reply) in SetPlayRangeWithMode() function in OHOS::Media::PlayerServiceStub
701 reply.WriteInt32(SetPlayRangeWithMode(start, end, static_cast<PlayerSeekMode>(mode))); in SetPlayRangeWithMode()
H A Dplayer_service_proxy.cpp46 playerFuncs_[SET_PLAY_RANGE_WITH_MODE] = "Player::SetPlayRangeWithMode"; in PlayerServiceProxy()
280 int32_t PlayerServiceProxy::SetPlayRangeWithMode(int64_t start, int64_t end, PlayerSeekMode mode) in SetPlayRangeWithMode() function in OHOS::Media::PlayerServiceProxy
282 MediaTrace trace("Proxy::SetPlayRangeWithMode"); in SetPlayRangeWithMode()
295 "SetPlayRangeWithMode failed, error: %{public}d", error); in SetPlayRangeWithMode()
/foundation/multimedia/player_framework/services/include/
H A Di_player_service.h149 virtual int32_t SetPlayRangeWithMode(int64_t start, int64_t end, PlayerSeekMode mode) in SetPlayRangeWithMode() function in OHOS::Media::IPlayerService
/foundation/multimedia/player_framework/services/services/player/client/
H A Dplayer_client.h40 int32_t SetPlayRangeWithMode(int64_t start, int64_t end, PlayerSeekMode mode) override;
H A Dplayer_client.cpp152 int32_t PlayerClient::SetPlayRangeWithMode(int64_t start, int64_t end, PlayerSeekMode mode) in SetPlayRangeWithMode() function in OHOS::Media::PlayerClient
156 return playerProxy_->SetPlayRangeWithMode(start, end, mode); in SetPlayRangeWithMode()
/foundation/multimedia/player_framework/services/services/engine_intf/
H A Di_player_engine.h74 virtual int32_t SetPlayRangeWithMode(int64_t start, int64_t end, PlayerSeekMode mode) in SetPlayRangeWithMode() function in OHOS::Media::IPlayerEngine
/foundation/multimedia/player_framework/frameworks/native/player/
H A Dplayer_impl.h42 int32_t SetPlayRangeWithMode(int64_t start, int64_t end, PlayerSeekMode mode = SEEK_PREVIOUS_SYNC) override;
H A Dplayer_impl.cpp133 int32_t PlayerImpl::SetPlayRangeWithMode(int64_t start, int64_t end, PlayerSeekMode mode) in SetPlayRangeWithMode() function in OHOS::Media::PlayerImpl
135 MEDIA_LOGD("PlayerImpl:0x%{public}06" PRIXPTR " SetPlayRangeWithMode in", FAKE_POINTER(this)); in SetPlayRangeWithMode()
137 return playerService_->SetPlayRangeWithMode(start, end, mode); in SetPlayRangeWithMode()
/foundation/multimedia/player_framework/interfaces/inner_api/native/
H A Dplayer.h833 virtual int32_t SetPlayRangeWithMode(int64_t start, int64_t end, PlayerSeekMode mode = SEEK_PREVIOUS_SYNC) in SetPlayRangeWithMode() function in OHOS::Media::Player
/foundation/multimedia/player_framework/services/engine/histreamer/player/
H A Dhiplayer_impl.h106 int32_t SetPlayRangeWithMode(int64_t start, int64_t end, PlayerSeekMode mode) override;
H A Dhiplayer_impl.cpp441 int32_t HiPlayerImpl::SetPlayRangeWithMode(int64_t start, int64_t end, PlayerSeekMode mode) in SetPlayRangeWithMode() function in OHOS::Media::HiPlayerImpl
445 MEDIA_LOG_E_SHORT("SetPlayRangeWithMode failed! start: " PUBLIC_LOG_D64 ", end: " in SetPlayRangeWithMode()
457 MEDIA_LOG_I_SHORT("current state is initialized/stopped SetPlayRangeWithMode start: " in SetPlayRangeWithMode()
485 MEDIA_LOG_I_SHORT("SetPlayRangeWithMode start: " PUBLIC_LOG_D64 ", end: " PUBLIC_LOG_D64, in SetPlayRangeWithMode()
/foundation/multimedia/player_framework/frameworks/js/avplayer/
H A Davplayer_napi.cpp833 auto ret = player_->SetPlayRangeWithMode(start, end, TransferSeekMode(mode)); in EqueueSetPlayRangeTask()

Completed in 26 milliseconds