Searched defs:rcd (Results 1 - 3 of 3) sorted by relevance

/frameworks/base/media/java/android/media/
H A DMediaFocusControl.java206 protected boolean registerRemoteController(IRemoteControlDisplay rcd, int w, int h, argument
210 registerRemoteControlDisplay_int(rcd, w, h, listenerComp);
220 protected boolean registerRemoteControlDisplay(IRemoteControlDisplay rcd, int w, int h) { argument
223 registerRemoteControlDisplay_int(rcd, w, h, null);
1724 public DisplayInfoForServer(IRemoteControlDisplay rcd, int w, int h) { argument
1725 if (DEBUG_RC) Log.i(TAG, "new DisplayInfoForServer for " + rcd + " w=" + w + " h=" + h);
1726 mRcDisplay = rcd;
1727 mRcDisplayBinder = rcd.asBinder();
1795 private void enableRemoteControlDisplayForClient_syncRcStack(IRemoteControlDisplay rcd, argument
1804 prse.getRcc().enableRemoteControlDisplay(rcd, enable
1817 rcDisplayIsPluggedIn_syncRcStack(IRemoteControlDisplay rcd) argument
1841 registerRemoteControlDisplay_int(IRemoteControlDisplay rcd, int w, int h, ComponentName listenerComp) argument
1889 unregisterRemoteControlDisplay(IRemoteControlDisplay rcd) argument
1936 remoteControlDisplayUsesBitmapSize(IRemoteControlDisplay rcd, int w, int h) argument
1980 remoteControlDisplayWantsPlaybackPositionSync(IRemoteControlDisplay rcd, boolean wantsSync) argument
[all...]
H A DAudioManager.java2795 * @param rcd the IRemoteControlDisplay
2797 public void registerRemoteControlDisplay(IRemoteControlDisplay rcd) { argument
2799 registerRemoteControlDisplay(rcd, /*w*/-1, /*h*/ -1);
2806 * @param rcd
2812 public void registerRemoteControlDisplay(IRemoteControlDisplay rcd, int w, int h) { argument
2813 if (rcd == null) {
2818 service.registerRemoteControlDisplay(rcd, w, h);
2827 * @param rcd
2829 public void unregisterRemoteControlDisplay(IRemoteControlDisplay rcd) { argument
2830 if (rcd
2850 remoteControlDisplayUsesBitmapSize(IRemoteControlDisplay rcd, int w, int h) argument
2875 remoteControlDisplayWantsPlaybackPositionSync(IRemoteControlDisplay rcd, boolean wantsSync) argument
[all...]
H A DAudioService.java5100 public boolean registerRemoteController(IRemoteControlDisplay rcd, int w, int h, argument
5102 return mMediaFocusControl.registerRemoteController(rcd, w, h, listenerComp);
5105 public boolean registerRemoteControlDisplay(IRemoteControlDisplay rcd, int w, int h) { argument
5106 return mMediaFocusControl.registerRemoteControlDisplay(rcd, w, h);
5109 public void unregisterRemoteControlDisplay(IRemoteControlDisplay rcd) { argument
5110 mMediaFocusControl.unregisterRemoteControlDisplay(rcd);
5113 public void remoteControlDisplayUsesBitmapSize(IRemoteControlDisplay rcd, int w, int h) { argument
5114 mMediaFocusControl.remoteControlDisplayUsesBitmapSize(rcd, w, h);
5117 public void remoteControlDisplayWantsPlaybackPositionSync(IRemoteControlDisplay rcd, argument
5119 mMediaFocusControl.remoteControlDisplayWantsPlaybackPositionSync(rcd, wantsSyn
[all...]

Completed in 409 milliseconds