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

/frameworks/base/media/java/android/media/
H A DAudioManager.java2248 * @param rcClient The remote control client from which remote controls will receive
2252 public void registerRemoteControlClient(RemoteControlClient rcClient) { argument
2253 if ((rcClient == null) || (rcClient.getRcMediaIntent() == null)) {
2259 rcClient.getRcMediaIntent(), /* mediaIntent */
2260 rcClient.getIRemoteControlClient(),/* rcClient */
2263 rcClient.setRcseId(rcseId);
2272 * @param rcClient The remote control client to unregister.
2275 public void unregisterRemoteControlClient(RemoteControlClient rcClient) { argument
[all...]
H A DMediaFocusControl.java1093 registerRemoteControlClient(mMediaIntent, null/*rcClient*/, null/*ignored*/);
1923 * Note: using this method with rcClient == null is a way to "disable" the IRemoteControlClient
1928 IRemoteControlClient rcClient, String callingPackageName) {
1929 if (DEBUG_RC) Log.i(TAG, "Register remote control client rcClient="+rcClient);
1944 rcse.mRcClient = rcClient;
1947 if (rcClient == null) {
1991 * rcClient is guaranteed non-null
1994 IRemoteControlClient rcClient) {
1995 if (DEBUG_RC) Log.i(TAG, "Unregister remote control client rcClient
1927 registerRemoteControlClient(PendingIntent mediaIntent, IRemoteControlClient rcClient, String callingPackageName) argument
1993 unregisterRemoteControlClient(PendingIntent mediaIntent, IRemoteControlClient rcClient) argument
[all...]
H A DAudioService.java4250 IRemoteControlClient rcClient, String callingPckg) {
4251 return mMediaFocusControl.registerRemoteControlClient(mediaIntent, rcClient, callingPckg);
4255 IRemoteControlClient rcClient) {
4256 mMediaFocusControl.unregisterRemoteControlClient(mediaIntent, rcClient);
4249 registerRemoteControlClient(PendingIntent mediaIntent, IRemoteControlClient rcClient, String callingPckg) argument
4254 unregisterRemoteControlClient(PendingIntent mediaIntent, IRemoteControlClient rcClient) argument

Completed in 180 milliseconds