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

/frameworks/base/services/core/java/com/android/server/audio/
H A DMediaFocusControl.java219 protected boolean registerRemoteController(IRemoteControlDisplay rcd, int w, int h, argument
223 registerRemoteControlDisplay_int(rcd, w, h, listenerComp);
233 protected boolean registerRemoteControlDisplay(IRemoteControlDisplay rcd, int w, int h) { argument
236 registerRemoteControlDisplay_int(rcd, w, h, null);
1765 public DisplayInfoForServer(IRemoteControlDisplay rcd, int w, int h) { argument
1766 if (DEBUG_RC) Log.i(TAG, "new DisplayInfoForServer for " + rcd + " w=" + w + " h=" + h);
1767 mRcDisplay = rcd;
1768 mRcDisplayBinder = rcd.asBinder();
1836 private void enableRemoteControlDisplayForClient_syncRcStack(IRemoteControlDisplay rcd, argument
1845 prse.getRcc().enableRemoteControlDisplay(rcd, enable
1858 rcDisplayIsPluggedIn_syncRcStack(IRemoteControlDisplay rcd) argument
1882 registerRemoteControlDisplay_int(IRemoteControlDisplay rcd, int w, int h, ComponentName listenerComp) argument
1930 unregisterRemoteControlDisplay(IRemoteControlDisplay rcd) argument
1977 remoteControlDisplayUsesBitmapSize(IRemoteControlDisplay rcd, int w, int h) argument
2021 remoteControlDisplayWantsPlaybackPositionSync(IRemoteControlDisplay rcd, boolean wantsSync) argument
[all...]
H A DAudioService.java5166 public boolean registerRemoteController(IRemoteControlDisplay rcd, int w, int h, argument
5168 return mMediaFocusControl.registerRemoteController(rcd, w, h, listenerComp);
5171 public boolean registerRemoteControlDisplay(IRemoteControlDisplay rcd, int w, int h) { argument
5172 return mMediaFocusControl.registerRemoteControlDisplay(rcd, w, h);
5175 public void unregisterRemoteControlDisplay(IRemoteControlDisplay rcd) { argument
5176 mMediaFocusControl.unregisterRemoteControlDisplay(rcd);
5179 public void remoteControlDisplayUsesBitmapSize(IRemoteControlDisplay rcd, int w, int h) { argument
5180 mMediaFocusControl.remoteControlDisplayUsesBitmapSize(rcd, w, h);
5183 public void remoteControlDisplayWantsPlaybackPositionSync(IRemoteControlDisplay rcd, argument
5185 mMediaFocusControl.remoteControlDisplayWantsPlaybackPositionSync(rcd, wantsSyn
[all...]
/frameworks/base/media/java/android/media/
H A DAudioManager.java2670 * @param rcd the IRemoteControlDisplay
2672 public void registerRemoteControlDisplay(IRemoteControlDisplay rcd) { argument
2674 registerRemoteControlDisplay(rcd, /*w*/-1, /*h*/ -1);
2681 * @param rcd
2687 public void registerRemoteControlDisplay(IRemoteControlDisplay rcd, int w, int h) { argument
2688 if (rcd == null) {
2693 service.registerRemoteControlDisplay(rcd, w, h);
2702 * @param rcd
2704 public void unregisterRemoteControlDisplay(IRemoteControlDisplay rcd) { argument
2705 if (rcd
2725 remoteControlDisplayUsesBitmapSize(IRemoteControlDisplay rcd, int w, int h) argument
2750 remoteControlDisplayWantsPlaybackPositionSync(IRemoteControlDisplay rcd, boolean wantsSync) argument
[all...]

Completed in 132 milliseconds