Home
last modified time | relevance | path

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

/packages/apps/Settings/tests/robotests/src/com/android/settings/connecteddevice/usb/
DUsbDetailsFunctionsControllerTest.java189 when(mUsbBackend.getCurrentFunctions()).thenReturn(UsbManager.FUNCTION_NONE); in onClickMtp_noneEnabled_shouldEnableMtp()
207 when(mUsbBackend.getCurrentFunctions()).thenReturn(UsbManager.FUNCTION_PTP); in onClickMtp_ptpEnabled_shouldEnableMtp()
228 when(mUsbBackend.getCurrentFunctions()).thenReturn(UsbManager.FUNCTION_MTP); in onClickNone_mtpEnabled_shouldDisableMtp()
258 doReturn(UsbManager.FUNCTION_MTP).when(mUsbBackend).getCurrentFunctions(); in onRadioButtonClicked_functionRndis_startTetheringInvoked()
272 doReturn(UsbManager.FUNCTION_MTP).when(mUsbBackend).getCurrentFunctions(); in onRadioButtonClicked_functionNcm_startsTethering()
286 doReturn(UsbManager.FUNCTION_MTP).when(mUsbBackend).getCurrentFunctions(); in onRadioButtonClicked_functionOther_setCurrentFunctionInvoked()
298 doReturn(UsbManager.FUNCTION_ACCESSORY).when(mUsbBackend).getCurrentFunctions(); in onRadioButtonClicked_functionMtp_inAccessoryMode_doNothing()
311 doReturn(UsbManager.FUNCTION_ACCESSORY).when(mUsbBackend).getCurrentFunctions(); in onRadioButtonClicked_functionMtp_inAccessoryCombinationsMode_doNothing()
322 doReturn(UsbManager.FUNCTION_PTP).when(mUsbBackend).getCurrentFunctions(); in onRadioButtonClicked_clickSameButton_doNothing()
DUsbDefaultFragmentTest.java149 doReturn(UsbManager.FUNCTION_MTP).when(mUsbBackend).getCurrentFunctions(); in setDefaultKey_functionRndis_startTetheringInvoked()
162 doReturn(UsbManager.FUNCTION_MTP).when(mUsbBackend).getCurrentFunctions(); in setDefaultKey_functionNcm_invokesStartTethering()
175 doReturn(UsbManager.FUNCTION_MTP).when(mUsbBackend).getCurrentFunctions(); in setDefaultKey_functionOther_setCurrentFunctionInvoked()
/packages/apps/Settings/src/com/android/settings/connecteddevice/usb/
DUsbDetailsFunctionsController.java71 mPreviousFunction = mUsbBackend.getCurrentFunctions(); in UsbDetailsFunctionsController()
133 final long previousFunction = mUsbBackend.getCurrentFunctions(); in onRadioButtonClicked()
DUsbBackend.java83 public long getCurrentFunctions() { in getCurrentFunctions() method in UsbBackend
84 return mUsbManager.getCurrentFunctions(); in getCurrentFunctions()
DUsbDefaultFragment.java165 mPreviousFunctions = mUsbBackend.getCurrentFunctions(); in setDefaultKey()
/packages/apps/TvSettings/Settings/src/com/android/tv/settings/system/development/
DDevelopmentFragment.java1368 long functions = manager.getCurrentFunctions(); in updateUsbConfigurationValues()