Home
last modified time | relevance | path

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

/external/robolectric/robolectric/src/test/java/org/robolectric/shadows/
DShadowBluetoothAdapterTest.java445 shadowOf(bluetoothAdapter).setProfileProxy(MOCK_PROFILE1, mockProxy); in getProfileProxy_afterSetProfileProxy_callsServiceListener()
457 shadowOf(bluetoothAdapter).setProfileProxy(MOCK_PROFILE1, null); in getProfileProxy_afterSetProfileProxyWithNullArgument_doesNotCallServiceListener()
472 shadowOf(bluetoothAdapter).setProfileProxy(MOCK_PROFILE1, mockProxy1); in getProfileProxy_afterSetProfileProxy_forMultipleProfiles()
474 shadowOf(bluetoothAdapter).setProfileProxy(MOCK_PROFILE2, mockProxy2); in getProfileProxy_afterSetProfileProxy_forMultipleProfiles()
494 shadowOf(bluetoothAdapter).setProfileProxy(MOCK_PROFILE1, mockProxy); in hasActiveProfileProxy_reflectsSetProfileProxy()
502 shadowOf(bluetoothAdapter).setProfileProxy(MOCK_PROFILE1, null); in hasActiveProfileProxy_afterSetProfileProxyWithNullArgument_returnsFalse()
514 shadowOf(bluetoothAdapter).setProfileProxy(MOCK_PROFILE1, mockProxy); in closeProfileProxy_severalCallersObserving_allNotified()
534 shadowOf(bluetoothAdapter).setProfileProxy(MOCK_PROFILE1, mockProxy); in closeProfileProxy_severalCallersObservingAndClosedTwice_allNotifiedOnce()
557 shadowOf(bluetoothAdapter).setProfileProxy(MOCK_PROFILE1, mockProxy); in closeProfileProxy_reversesSetProfileProxy()
573 shadowOf(bluetoothAdapter).setProfileProxy(MOCK_PROFILE1, mockProxy1); in closeProfileProxy_afterSetProfileProxy_mismatchedProxy_noOp()
[all …]
/external/robolectric/shadows/framework/src/main/java/org/robolectric/shadows/
DShadowBluetoothAdapter.java504 public void setProfileProxy(int profile, @Nullable BluetoothProfile proxy) { in setProfileProxy() method in ShadowBluetoothAdapter