Searched defs:usbDataUnlocked (Results 1 - 3 of 3) sorted by relevance

/frameworks/base/core/java/android/hardware/usb/
H A DUsbManager.java565 * @param usbDataUnlocked whether user data is accessible
569 public void setCurrentFunction(String function, boolean usbDataUnlocked) { argument
571 mService.setCurrentFunction(function, usbDataUnlocked);
/frameworks/base/services/usb/java/com/android/server/usb/
H A DUsbService.java376 public void setCurrentFunction(String function, boolean usbDataUnlocked) { argument
386 mDeviceManager.setCurrentFunctions(function, usbDataUnlocked);
H A DUsbDeviceManager.java555 boolean usbDataUnlocked) {
558 + "forceRestart=" + forceRestart + ", usbDataUnlocked=" + usbDataUnlocked);
561 if (usbDataUnlocked != mUsbDataUnlocked) {
562 mUsbDataUnlocked = usbDataUnlocked;
1144 public void setCurrentFunctions(String functions, boolean usbDataUnlocked) { argument
1147 usbDataUnlocked + ")");
1149 mHandler.sendMessage(MSG_SET_CURRENT_FUNCTIONS, functions, usbDataUnlocked);
554 setEnabledFunctions(String functions, boolean forceRestart, boolean usbDataUnlocked) argument

Completed in 92 milliseconds