Searched refs:bob (Results 1 – 8 of 8) sorted by relevance
/frameworks/base/tests/OneMedia/src/com/android/onemedia/ |
D | PlayerSession.java | 141 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 …]
|
D | PlayerController.java | 117 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/ |
D | PlaybackState.java | 326 StringBuilder bob = new StringBuilder("PlaybackState {"); in toString() local 327 bob.append("state=").append(mState); in toString() 328 bob.append(", position=").append(mPosition); in toString() 329 bob.append(", buffered position=").append(mBufferedPosition); in toString() 330 bob.append(", speed=").append(mSpeed); in toString() 331 bob.append(", updated=").append(mUpdateTime); in toString() 332 bob.append(", actions=").append(mActions); in toString() 333 bob.append(", custom actions=").append(mCustomActions); in toString() 334 bob.append(", active item id=").append(mActiveItemId); in toString() 335 bob.append(", error=").append(mErrorMessage); in toString() [all …]
|
/frameworks/base/media/java/android/media/ |
D | MediaMetadata.java | 603 MediaDescription.Builder bob = new MediaDescription.Builder(); in getDescription() local 604 bob.setMediaId(mediaId); in getDescription() 605 bob.setTitle(text[0]); in getDescription() 606 bob.setSubtitle(text[1]); in getDescription() 607 bob.setDescription(text[2]); in getDescription() 608 bob.setIconBitmap(icon); in getDescription() 609 bob.setIconUri(iconUri); in getDescription() 610 bob.setMediaUri(mediaUri); in getDescription() 615 bob.setExtras(bundle); in getDescription() 617 mDescription = bob.build(); in getDescription()
|
D | RemoteControlClient.java | 685 PlaybackState.Builder bob = new PlaybackState.Builder(mSessionPlaybackState); in setPlaybackStateInt() local 686 bob.setState(pbState, position, playbackSpeed, SystemClock.elapsedRealtime()); in setPlaybackStateInt() 687 bob.setErrorMessage(null); in setPlaybackStateInt() 688 mSessionPlaybackState = bob.build(); in setPlaybackStateInt() 716 PlaybackState.Builder bob = new PlaybackState.Builder(mSessionPlaybackState); in setTransportControlFlags() local 717 bob.setActions(getActionsFromRccControlFlags(transportControlFlags)); in setTransportControlFlags() 718 mSessionPlaybackState = bob.build(); in setTransportControlFlags()
|
D | MediaRouter.java | 2451 AudioAttributes.Builder bob = new AudioAttributes.Builder(); in configureSessionVolume() local 2452 bob.setLegacyStreamType(mPlaybackStream); in configureSessionVolume() 2453 session.setPlaybackToLocal(bob.build()); in configureSessionVolume()
|
/frameworks/opt/vcard/tests/res/raw/ |
D | v30_ios_613_multiline.vcf | 11 item1.EMAIL;type=INTERNET;type=pref:bob@smithauto.com
|
/frameworks/base/services/core/java/com/android/server/input/ |
D | InputManagerService.java | 1358 StringBuilder bob = new StringBuilder(); in getLayoutDescriptor() local 1359 bob.append("vendor:").append(identifier.getVendorId()); in getLayoutDescriptor() 1360 bob.append(",product:").append(identifier.getProductId()); in getLayoutDescriptor() 1361 return bob.toString(); in getLayoutDescriptor()
|