Home
last modified time | relevance | path

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

/packages/services/Car/service/src/com/android/car/bluetooth/
DBluetoothUtils.java85 private static final SparseArray<String> sProfileNames = new SparseArray<String>(6); field in BluetoothUtils
128 sProfileNames.put(BluetoothProfile.PAN, "PAN"); in sProfileNames.put()
129 sProfileNames.put(BluetoothProfile.A2DP, "A2DP Source"); in sProfileNames.put()
130 sProfileNames.put(BluetoothProfile.A2DP_SINK, "A2DP Sink"); in sProfileNames.put()
131 sProfileNames.put(BluetoothProfile.AVRCP_CONTROLLER, "AVRCP Controller"); in sProfileNames.put()
132 sProfileNames.put(BluetoothProfile.HEADSET_CLIENT, "HFP Client"); in sProfileNames.put()
133 sProfileNames.put(BluetoothProfile.PBAP_CLIENT, "PBAP Client"); in sProfileNames.put()
134 sProfileNames.put(BluetoothProfile.MAP_CLIENT, "MAP Client"); in sProfileNames.put()
168 String name = sProfileNames.get(profile, "Unknown"); in getProfileName()