Searched defs:devices (Results 1 - 10 of 10) sorted by relevance

/frameworks/base/wifi/java/android/net/wifi/p2p/
H A DWifiP2pDeviceList.java53 public WifiP2pDeviceList(ArrayList<WifiP2pDevice> devices) { argument
54 for (WifiP2pDevice device : devices) {
126 /** Get the list of devices */
/frameworks/base/services/java/com/android/server/display/
H A DLogicalDisplay.java36 * A logical display may be mirrored onto multiple display devices in addition to its
48 * display devices are orthogonal concepts. Some mapping will exist between
49 * logical displays and display devices but it can be many-to-many and
150 * display devices are gone or if it is otherwise no longer needed.
159 * Updates the state of the logical display based on the available display devices.
163 * @param devices The list of all connected display devices.
165 public void updateLocked(List<DisplayDevice> devices) { argument
172 if (!devices.contains(mPrimaryDisplayDevice)) {
/frameworks/base/services/java/com/android/server/usb/
H A DUsbHostManager.java42 // contains all connected USB devices
87 // blacklist HID boot devices (mouse and keyboard)
96 /* Called from JNI in monitorUsbHostBus() to report new USB devices */
183 /* Returns a list of all currently attached USB devices */
184 public void getDeviceList(Bundle devices) { argument
187 devices.putParcelable(name, mDevices.get(name));
H A DUsbService.java124 /* Returns a list of all currently attached USB devices (host mdoe) */
126 public void getDeviceList(Bundle devices) { argument
128 mHostManager.getDeviceList(devices);
/frameworks/base/services/jni/
H A Dcom_android_server_LightsService.cpp67 Devices* devices; local
69 devices = (Devices*)malloc(sizeof(Devices));
73 devices->lights[LIGHT_INDEX_BACKLIGHT]
75 devices->lights[LIGHT_INDEX_KEYBOARD]
77 devices->lights[LIGHT_INDEX_BUTTONS]
79 devices->lights[LIGHT_INDEX_BATTERY]
81 devices->lights[LIGHT_INDEX_NOTIFICATIONS]
83 devices->lights[LIGHT_INDEX_ATTENTION]
85 devices->lights[LIGHT_INDEX_BLUETOOTH]
87 devices
98 Devices* devices = (Devices*)ptr; local
109 Devices* devices = (Devices*)ptr; local
[all...]
/frameworks/compile/libbcc/gdb_plugin/
H A Dandroid-commands.py25 # set-android-device to select a target (only if multiple devices are attached)
116 devices = self.devices()
117 if len(devices) == 1:
118 self.set_current_device(devices[0])
122 if len(devices) == 0:
123 msg = "No devices detected. Please connect a device and "
125 msg = "Too many devices (" + ", ".join(devices) + ") detected. " \
245 # Returns the list of serial numbers of connected devices
246 def devices(self): member in class:ADB
[all...]
/frameworks/base/core/java/android/bluetooth/
H A DBluetoothAdapter.java46 * device discovery, query a list of bonded (paired) devices,
49 * devices.
55 * {@link BluetoothDevice} objects representing all paired devices with
148 * #SCAN_MODE_CONNECTABLE_DISCOVERABLE}. It allows remote devices to see
231 * nor connectable from remote Bluetooth devices.
237 * remote Bluetooth devices, but is connectable from remote devices that
244 * connectable from remote Bluetooth devices.
255 * remote Bluetooth devices are found.
257 * remote Bluetooth devices shoul
1331 toDeviceSet(BluetoothDevice[] devices) argument
[all...]
/frameworks/av/media/libmedia/
H A DIAudioFlinger.cpp377 audio_devices_t devices = pDevices ? *pDevices : (audio_devices_t)0; local
385 data.writeInt32(devices);
394 devices = (audio_devices_t)reply.readInt32();
395 if (pDevices) *pDevices = devices;
452 audio_devices_t devices = pDevices ? *pDevices : (audio_devices_t)0; local
459 data.writeInt32(devices);
465 devices = (audio_devices_t)reply.readInt32();
466 if (pDevices) *pDevices = devices;
883 audio_devices_t devices = (audio_devices_t)data.readInt32(); local
890 &devices,
930 audio_devices_t devices = (audio_devices_t)data.readInt32(); local
[all...]
/frameworks/base/services/input/tests/
H A DInputReader_test.cpp547 virtual void setExcludedDevices(const Vector<String8>& devices) { argument
548 mExcludedDevices = devices;
1019 // Should also have received a notification describing the new input devices.
1053 << "Should return value provided by mapper when device id is < 0 and one of the devices supports some of the sources.";
1080 << "Should return value provided by mapper when device id is < 0 and one of the devices supports some of the sources.";
1107 << "Should return value provided by mapper when device id is < 0 and one of the devices supports some of the sources.";
1141 << "Should return value provided by mapper when device id is < 0 and one of the devices supports some of the sources.";
/frameworks/av/services/audioflinger/
H A DAudioFlinger.cpp285 audio_devices_t devices)
299 (dev->get_supported_devices(dev) & devices) == devices)
283 findSuitableHwDev_l( audio_module_handle_t module, audio_devices_t devices) argument

Completed in 218 milliseconds