Searched refs:playbackError (Results 1 – 4 of 4) sorted by relevance
/external/exoplayer/tree/library/core/src/main/java/com/google/android/exoplayer2/ |
D | PlaybackInfo.java | 53 @Nullable public final ExoPlaybackException playbackError; field in PlaybackInfo 129 @Nullable ExoPlaybackException playbackError, in PlaybackInfo() argument 143 this.playbackError = playbackError; in PlaybackInfo() 186 playbackError, in copyWithNewPosition() 211 playbackError, in copyWithTimeline() 236 playbackError, in copyWithPlaybackState() 255 public PlaybackInfo copyWithPlaybackError(@Nullable ExoPlaybackException playbackError) { in copyWithPlaybackError() argument 261 playbackError, in copyWithPlaybackError() 286 playbackError, in copyWithIsLoading() 311 playbackError, in copyWithLoadingMediaPeriodId() [all …]
|
D | ExoPlayerImpl.java | 275 return playbackInfo.playbackError; in getPlayerError() 938 resetError ? null : playbackInfo.playbackError, in getResetPlaybackInfo() 1285 previousPlaybackInfo.playbackError != playbackInfo.playbackError in PlaybackInfoUpdate() 1286 && playbackInfo.playbackError != null; in PlaybackInfoUpdate() 1311 invokeAll(listenerSnapshot, listener -> listener.onPlayerError(playbackInfo.playbackError)); in run()
|
D | ExoPlayerImplInternal.java | 1224 resetError ? null : playbackInfo.playbackError, in resetInternal()
|
/external/exoplayer/tree/extensions/mediasession/src/main/java/com/google/android/exoplayer2/ext/mediasession/ |
D | MediaSessionConnector.java | 749 @Nullable ExoPlaybackException playbackError = player.getPlayerError(); in invalidateMediaSessionPlaybackState() local 750 boolean reportError = playbackError != null || customError != null; in invalidateMediaSessionPlaybackState() 760 } else if (playbackError != null && errorMessageProvider != null) { in invalidateMediaSessionPlaybackState() 761 Pair<Integer, String> message = errorMessageProvider.getErrorMessage(playbackError); in invalidateMediaSessionPlaybackState()
|