HomeSort by relevance Sort by last modified time
    Searched defs:mapProfile (Results 1 - 4 of 4) sorted by null

  /hardware/google/av/media/sfplugin/
Codec2Mapper.cpp 295 virtual bool mapProfile(C2Config::profile_t from, int32_t *to) {
299 virtual bool mapProfile(int32_t from, C2Config::profile_t *to) {
  /packages/apps/Settings/src/com/android/settings/bluetooth/
BluetoothDetailsProfilesController.java 35 import com.android.settingslib.bluetooth.MapProfile;
99 if (profile instanceof MapProfile) {
139 if (profile instanceof MapProfile) {
158 if (profile instanceof MapProfile) {
204 final MapProfile mapProfile = mManager.getProfileManager().getMapProfile();
207 result.add(mapProfile);
DeviceProfilesSettings.java 47 import com.android.settingslib.bluetooth.MapProfile;
177 (profile instanceof MapProfile))) {
206 final MapProfile mapProfile = mManager.getProfileManager().getMapProfile();
210 CheckBox mapPreference = createProfilePreference(mapProfile);
265 if (profile instanceof MapProfile) {
312 if (profile instanceof MapProfile) {
362 if (profile instanceof MapProfile) {
387 if (profile instanceof MapProfile) {
  /packages/apps/Settings/tests/robotests/src/com/android/settings/bluetooth/
BluetoothDetailsProfilesControllerTest.java 41 import com.android.settingslib.bluetooth.MapProfile;
334 public void mapProfile() {
336 MapProfile mapProfile = mock(MapProfile.class);
337 when(mapProfile.getNameResource(mDevice)).thenReturn(R.string.bluetooth_profile_map);
338 when(mProfileManager.getMapProfile()).thenReturn(mapProfile);
339 when(mProfileManager.getProfileByName(eq(mapProfile.toString()))).thenReturn(mapProfile);

Completed in 210 milliseconds