Home
last modified time | relevance | path

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

/packages/apps/Settings/tests/robotests/src/com/android/settings/bluetooth/
DBluetoothDetailsProfilesControllerTest.java337 public void mapProfile() { in mapProfile() method in BluetoothDetailsProfilesControllerTest
339 MapProfile mapProfile = mock(MapProfile.class); in mapProfile() local
340 when(mapProfile.getNameResource(mDevice)).thenReturn(R.string.bluetooth_profile_map); in mapProfile()
341 when(mapProfile.isProfileReady()).thenReturn(true); in mapProfile()
342 when(mProfileManager.getMapProfile()).thenReturn(mapProfile); in mapProfile()
343 when(mProfileManager.getProfileByName(eq(mapProfile.toString()))).thenReturn(mapProfile); in mapProfile()
/packages/apps/Settings/src/com/android/settings/bluetooth/
DBluetoothDetailsProfilesController.java204 final MapProfile mapProfile = mManager.getProfileManager().getMapProfile(); in getProfiles() local
207 result.add(mapProfile); in getProfiles()