Home
last modified time | relevance | path

Searched refs:bob (Results 1 – 8 of 8) sorted by relevance

/frameworks/base/tests/OneMedia/src/com/android/onemedia/
DPlayerSession.java141 PlaybackState.Builder bob = new PlaybackState.Builder(mPlaybackState); in updateState() local
142 bob.setState(newState, position, rate, SystemClock.elapsedRealtime()); in updateState()
143 bob.setErrorMessage(null); in updateState()
144 mPlaybackState = bob.build(); in updateState()
167 PlaybackState.Builder bob = new PlaybackState.Builder(mPlaybackState); in onError() local
168 bob.setState(PlaybackState.STATE_ERROR, -1, 0, 0); in onError()
170 bob.setErrorMessage(error.getLocalizedMessage()); in onError()
172 mPlaybackState = bob.build(); in onError()
212 PlaybackState.Builder bob = new PlaybackState.Builder(mPlaybackState); in onStateChanged() local
213 bob.setState(pbState, position, rate, SystemClock.elapsedRealtime()); in onStateChanged()
[all …]
DPlayerController.java117 RequestUtils.ContentBuilder bob = new RequestUtils.ContentBuilder(); in setContent() local
118 bob.setSource(source); in setContent()
120 mBinder.sendRequest(RequestUtils.ACTION_SET_CONTENT, bob.build(), null); in setContent()
127 RequestUtils.ContentBuilder bob = new RequestUtils.ContentBuilder(); in setNextContent() local
128 bob.setSource(source); in setNextContent()
130 mBinder.sendRequest(RequestUtils.ACTION_SET_NEXT_CONTENT, bob.build(), null); in setNextContent()
/frameworks/base/media/java/android/media/session/
DPlaybackState.java335 StringBuilder bob = new StringBuilder("PlaybackState {"); in toString() local
336 bob.append("state=").append(mState); in toString()
337 bob.append(", position=").append(mPosition); in toString()
338 bob.append(", buffered position=").append(mBufferedPosition); in toString()
339 bob.append(", speed=").append(mSpeed); in toString()
340 bob.append(", updated=").append(mUpdateTime); in toString()
341 bob.append(", actions=").append(mActions); in toString()
342 bob.append(", custom actions=").append(mCustomActions); in toString()
343 bob.append(", active item id=").append(mActiveItemId); in toString()
344 bob.append(", error=").append(mErrorMessage); in toString()
[all …]
/frameworks/base/media/java/android/media/
DMediaMetadata.java627 MediaDescription.Builder bob = new MediaDescription.Builder(); in getDescription() local
628 bob.setMediaId(mediaId); in getDescription()
629 bob.setTitle(text[0]); in getDescription()
630 bob.setSubtitle(text[1]); in getDescription()
631 bob.setDescription(text[2]); in getDescription()
632 bob.setIconBitmap(icon); in getDescription()
633 bob.setIconUri(iconUri); in getDescription()
634 bob.setMediaUri(mediaUri); in getDescription()
639 bob.setExtras(bundle); in getDescription()
641 mDescription = bob.build(); in getDescription()
DRemoteControlClient.java686 PlaybackState.Builder bob = new PlaybackState.Builder(mSessionPlaybackState); in setPlaybackStateInt() local
687 bob.setState(pbState, position, playbackSpeed, SystemClock.elapsedRealtime()); in setPlaybackStateInt()
688 bob.setErrorMessage(null); in setPlaybackStateInt()
689 mSessionPlaybackState = bob.build(); in setPlaybackStateInt()
717 PlaybackState.Builder bob = new PlaybackState.Builder(mSessionPlaybackState); in setTransportControlFlags() local
718 bob.setActions(getActionsFromRccControlFlags(transportControlFlags)); in setTransportControlFlags()
719 mSessionPlaybackState = bob.build(); in setTransportControlFlags()
DMediaRouter.java2552 AudioAttributes.Builder bob = new AudioAttributes.Builder(); in configureSessionVolume() local
2553 bob.setLegacyStreamType(mPlaybackStream); in configureSessionVolume()
2554 session.setPlaybackToLocal(bob.build()); in configureSessionVolume()
/frameworks/opt/vcard/tests/res/raw/
Dv30_ios_613_multiline.vcf11 item1.EMAIL;type=INTERNET;type=pref:bob@smithauto.com
/frameworks/base/services/core/java/com/android/server/input/
DInputManagerService.java1566 StringBuilder bob = new StringBuilder(); in getLayoutDescriptor() local
1567 bob.append("vendor:").append(identifier.getVendorId()); in getLayoutDescriptor()
1568 bob.append(",product:").append(identifier.getProductId()); in getLayoutDescriptor()
1569 return bob.toString(); in getLayoutDescriptor()