Home
last modified time | relevance | path

Searched refs:AvrcpTargetService (Results 1 – 6 of 6) sorted by relevance

/packages/modules/Bluetooth/android/app/src/com/android/bluetooth/avrcp/
DAvrcpTargetService.java57 public class AvrcpTargetService extends ProfileService { class
58 private static final String TAG = AvrcpTargetService.class.getSimpleName();
99 private static AvrcpTargetService sInstance = null;
101 public AvrcpTargetService(Context ctx) { in AvrcpTargetService() method in AvrcpTargetService
166 public static void set(AvrcpTargetService instance) { in set()
175 public static AvrcpTargetService get() { in get()
215 mNativeInterface.init(AvrcpTargetService.this); in start()
595 private AvrcpTargetService mService;
597 AvrcpTargetBinder(AvrcpTargetService service) { in AvrcpTargetBinder()
DAvrcpNativeInterface.java47 private AvrcpTargetService mAvrcpService;
75 void init(AvrcpTargetService service) { in init()
/packages/modules/Bluetooth/android/app/src/com/android/bluetooth/btservice/
DServiceFactory.java20 import com.android.bluetooth.avrcp.AvrcpTargetService;
69 public AvrcpTargetService getAvrcpTargetService() { in getAvrcpTargetService()
70 return AvrcpTargetService.get(); in getAvrcpTargetService()
DConfig.java28 import com.android.bluetooth.avrcp.AvrcpTargetService;
97 new ProfileConfig(AvrcpTargetService.isEnabled(), BluetoothProfile.AVRCP),
142 new ProfileConfig(AvrcpTargetService.isEnabled(), BluetoothProfile.AVRCP),
DAdapterService.java118 import com.android.bluetooth.avrcp.AvrcpTargetService;
1511 Map.entry(BluetoothProfile.AVRCP, AvrcpTargetService::new),
/packages/modules/Bluetooth/android/app/src/com/android/bluetooth/audio_util/
DPlayerSettingsManager.java24 import com.android.bluetooth.avrcp.AvrcpTargetService;
31 private final AvrcpTargetService mService;
41 public PlayerSettingsManager(MediaPlayerList mediaPlayerList, AvrcpTargetService service) { in PlayerSettingsManager()