/frameworks/base/wifi/java/android/net/wifi/p2p/ |
WifiP2pDeviceList.java | 29 * A class representing a Wi-Fi P2p device list 51 for (WifiP2pDevice device : devices) { 52 mDevices.add(device); 64 public void update(WifiP2pDevice device) { 65 if (device == null) return; 68 if (d.equals(device)) { 69 d.deviceName = device.deviceName; 70 d.primaryDeviceType = device.primaryDeviceType; 71 d.secondaryDeviceType = device.secondaryDeviceType; 72 d.wpsConfigMethodsSupported = device.wpsConfigMethodsSupported [all...] |
/sdk/hierarchyviewer/src/com/android/hierarchyviewer/scene/ |
ViewManager.java | 20 import com.android.hierarchyviewer.device.Window; 21 import com.android.hierarchyviewer.device.DeviceBridge; 30 public static void invalidate(IDevice device, Window window, String params) { 31 sendCommand("INVALIDATE", device, window, params); 34 public static void requestLayout(IDevice device, Window window, String params) { 35 sendCommand("REQUEST_LAYOUT", device, window, params); 38 public static void outputDisplayList(IDevice device, Window window, String params) { 39 sendCommand("OUTPUT_DISPLAYLIST", device, window, params); 42 private static void sendCommand(String command, IDevice device, Window window, String params) { 49 DeviceBridge.getDeviceLocalPort(device))); [all...] |
/hardware/ti/omap4xxx/camera/ |
CameraHal_Module.cpp | 39 hw_device_t** device); 40 static int camera_device_close(hw_device_t* device); 75 int camera_set_preview_window(struct camera_device * device, 83 if(!device) 86 ti_dev = (ti_camera_device_t*) device; 93 void camera_set_callbacks(struct camera_device * device, 104 if(!device) 107 ti_dev = (ti_camera_device_t*) device; 112 void camera_enable_msg_type(struct camera_device * device, int32_t msg_type) 118 if(!device) [all...] |
/external/webkit/Source/ThirdParty/ANGLE/src/libEGL/ |
Surface.cpp | 103 IDirect3DDevice9 *device = mDisplay->getDevice(); local 105 if (device == NULL) 112 device->EvictManagedResources(); 131 HRESULT result = device->CreateAdditionalSwapChain(&presentParameters, &mSwapChain); 142 result = device->CreateDepthStencilSurface(presentParameters.BackBufferWidth, presentParameters.BackBufferHeight, 157 result = device->CreateTexture(presentParameters.BackBufferWidth, presentParameters.BackBufferHeight, 1, D3DUSAGE_RENDERTARGET, 178 releaseRecordedState(device); 186 void Surface::writeRecordableFlipState(IDirect3DDevice9 *device) 189 device->SetRenderState(D3DRS_ZENABLE, D3DZB_FALSE); 190 device->SetRenderState(D3DRS_FILLMODE, D3DFILL_SOLID) 410 IDirect3DDevice9 *device = mDisplay->getDevice(); local [all...] |
/external/bluetooth/bluez/doc/ |
device-api.txt | 1 BlueZ D-Bus Device API description 10 Device hierarchy 14 Interface org.bluez.Device 19 Returns all properties for the device. See the 61 This method disconnects a specific remote device by 76 Returns list of device node object paths. 84 Creates a persistent device node binding with a 85 remote device. The actual support for the specified 86 UUID depends if the device driver has support for 95 Removes a persistent device node binding [all...] |
/packages/apps/Settings/src/com/android/settings/bluetooth/ |
HeadsetProfile.java | 52 // Order of this profile in device profiles list 63 // headset device. 69 CachedBluetoothDevice device = mDeviceManager.findDevice(firstDevice); local 70 // we may add a new device here, but generally this should not happen 71 if (device == null) { 72 Log.w(TAG, "HeadsetProfile found new device: " + firstDevice); 73 device = mDeviceManager.addDevice(mLocalAdapter, mProfileManager, firstDevice); 75 device.onProfileStateChanged(HeadsetProfile.this, 110 public boolean connect(BluetoothDevice device) { 117 return mService.connect(device); [all...] |
A2dpProfile.java | 46 // Order of this profile in device profiles list 83 public boolean connect(BluetoothDevice device) { 90 return mService.connect(device); 93 public boolean disconnect(BluetoothDevice device) { 94 return mService.disconnect(device); 97 public int getConnectionStatus(BluetoothDevice device) { 98 return mService.getConnectionState(device); 101 public boolean isPreferred(BluetoothDevice device) { 102 return mService.getPriority(device) > BluetoothProfile.PRIORITY_OFF; 105 public int getPreferred(BluetoothDevice device) { [all...] |
OppProfile.java | 32 // Order of this profile in device profiles list 43 public boolean connect(BluetoothDevice device) { 47 public boolean disconnect(BluetoothDevice device) { 51 public int getConnectionStatus(BluetoothDevice device) { 55 public boolean isPreferred(BluetoothDevice device) { 59 public int getPreferred(BluetoothDevice device) { 63 public void setPreferred(BluetoothDevice device, boolean preferred) { 78 public int getNameResource(BluetoothDevice device) { 82 public int getSummaryResourceForDevice(BluetoothDevice device) {
|
/sdk/hierarchyviewer2/libs/hierarchyviewerlib/src/com/android/hierarchyviewerlib/ |
HierarchyViewerDirector.java | 26 import com.android.hierarchyviewerlib.device.DeviceBridge; 27 import com.android.hierarchyviewerlib.device.ViewNode; 28 import com.android.hierarchyviewerlib.device.Window; 29 import com.android.hierarchyviewerlib.device.WindowUpdater; 30 import com.android.hierarchyviewerlib.device.DeviceBridge.ViewServerInfo; 31 import com.android.hierarchyviewerlib.device.WindowUpdater.IWindowChangeListener; 117 for (IDevice device : devices) { 118 deviceConnected(device); 132 public void deviceConnected(final IDevice device) { 133 executeInBackground("Connecting device", new Runnable() 230 final IDevice device = PixelPerfectModel.getModel().getDevice(); local 261 final IDevice device = PixelPerfectModel.getModel().getDevice(); local 436 IDevice device = DeviceSelectionModel.getModel().getSelectedDevice(); local [all...] |
/device/google/accessory/arduino/USB_Host_Shield/ |
ch9.h | 35 #define DEV_DESCR_LEN 18 //device descriptor length
40 /* Standard Device Requests */
42 #define USB_REQUEST_GET_STATUS 0 // Standard Device Request - GET STATUS
43 #define USB_REQUEST_CLEAR_FEATURE 1 // Standard Device Request - CLEAR FEATURE
44 #define USB_REQUEST_SET_FEATURE 3 // Standard Device Request - SET FEATURE
45 #define USB_REQUEST_SET_ADDRESS 5 // Standard Device Request - SET ADDRESS
46 #define USB_REQUEST_GET_DESCRIPTOR 6 // Standard Device Request - GET DESCRIPTOR
47 #define USB_REQUEST_SET_DESCRIPTOR 7 // Standard Device Request - SET DESCRIPTOR
48 #define USB_REQUEST_GET_CONFIGURATION 8 // Standard Device Request - GET CONFIGURATION
49 #define USB_REQUEST_SET_CONFIGURATION 9 // Standard Device Request - SET CONFIGURATION [all...] |
/device/ti/panda/ |
unzip-files.sh | 17 # This file is generated by device/common/generate-blob-scripts.sh - DO NOT EDIT 19 DEVICE=panda 22 mkdir -p ../../../vendor/$MANUFACTURER/$DEVICE/proprietary 23 unzip -j -o ../../../${DEVICE}_update.zip system/vendor/bin/pvrsrvinit -d ../../../vendor/$MANUFACTURER/$DEVICE/proprietary 24 chmod 755 ../../../vendor/$MANUFACTURER/$DEVICE/proprietary/pvrsrvinit 25 unzip -j -o ../../../${DEVICE}_update.zip system/vendor/lib/egl/libEGL_POWERVR_SGX540_120.so -d ../../../vendor/$MANUFACTURER/$DEVICE/proprietary 26 unzip -j -o ../../../${DEVICE}_update.zip system/vendor/lib/egl/libGLESv1_CM_POWERVR_SGX540_120.so -d ../../../vendor/$MANUFACTURER/$DEVICE/proprietar [all...] |
/external/kernel-headers/original/linux/ |
device.h | 2 * device.h - generic, centralized driver model 30 struct device; 48 int (*match)(struct device * dev, struct device_driver * drv); 49 int (*uevent)(struct device *dev, char **envp, 51 int (*probe)(struct device * dev); 52 int (*remove)(struct device * dev); 53 void (*shutdown)(struct device * dev); 54 int (*suspend)(struct device * dev, pm_message_t state); 55 int (*resume)(struct device * dev); 65 int bus_for_each_dev(struct bus_type * bus, struct device * start, void * data 299 struct device { struct [all...] |
/development/tools/hosttestlib/src/com/android/hosttest/ |
DeviceTest.java | 24 * Helper JUnit test that stores reference to a Android device and test data. 29 * Sets the device under test 30 * @param device the Android device to test 32 public void setDevice(IDevice device); 35 * Retrieves the Android device under test 36 * @return the {@link IDevice} device.
|
/external/oprofile/libutil/ |
op_deviceio.h | 3 * Reading from a special device 24 * op_open_device - open a special char device for reading 25 * @param name file name of device file 33 * op_read_device - read from a special char device 34 * @param devfd file descriptor of device 38 * Read size bytes from a device into buffer buf. 39 * A seek to the start of the device file is done first
|
/frameworks/base/core/java/android/server/ |
BluetoothHealthProfileHandler.java | 72 HealthChannel(BluetoothDevice device, BluetoothHealthAppConfiguration config, 77 mDevice = device; 190 boolean connectChannelToSource(BluetoothDevice device, 192 return connectChannel(device, config, BluetoothHealth.CHANNEL_TYPE_ANY); 195 private HealthChannel getMainChannel(BluetoothDevice device, 198 if (chan.mDevice.equals(device) && chan.mConfig.equals(config)) { 205 boolean connectChannel(BluetoothDevice device, 208 mBluetoothService.getObjectPathFromAddress(device.getAddress()); 214 HealthChannel chan = new HealthChannel(device, config, null, false, null); 221 callHealthChannelCallback(config, device, prevState, state, null, chan.mId) 382 BluetoothDevice device = adapter.getRemoteDevice(address); local [all...] |
/sdk/ddms/libs/ddmlib/src/com/android/ddmlib/ |
GetPropReceiver.java | 24 * {@link #GETPROP_COMMAND} on a device. 32 private Device mDevice = null; 35 * Creates the receiver with the device the receiver will modify. 36 * @param device The device to modify 38 public GetPropReceiver(Device device) { 39 mDevice = device; 72 mDevice.update(Device.CHANGE_BUILD_INFO);
|
/sdk/hierarchyviewer2/libs/hierarchyviewerlib/src/com/android/hierarchyviewerlib/device/ |
Window.java | 17 package com.android.hierarchyviewerlib.device; 22 * Used for storing a window from the window manager service on the device. 23 * These are the windows that the device selector shows. 33 public Window(IDevice device, String title, int hashCode) { 34 this.mDevice = device; 60 public static Window getFocusedWindow(IDevice device) { 61 return new Window(device, "<Focused Window>", -1); 65 * After each refresh of the windows in the device selector, the windows are 67 * work in the device selector unless the equals method is defined here.
|
/bootable/recovery/etc/META-INF/com/google/android/ |
update-script | 2 assert file_contains("SYSTEM:build.prop", "ro.product.device=dream") == "true" || file_contains("SYSTEM:build.prop", "ro.build.product=dream") == "true" 3 assert file_contains("RECOVERY:default.prop", "ro.product.device=dream") == "true" || file_contains("RECOVERY:default.prop", "ro.build.product=dream") == "true" 4 assert getprop("ro.product.device") == "dream"
|
/build/core/ |
device.mk | 22 define dump-device 30 $(foreach p,$(DEVICES),$(call dump-device,$(p))) 34 # $(1): device to inherit 36 define inherit-device 42 # $(1): device makefile list 51 # $(1): short device name like "sooner" 53 define _resolve-short-device-name 65 $(error No matches for device "$(dn)"), \ 66 $(error Device "$(dn)" ambiguous: matches $(d)) \ 72 # $(1): short device name like "sooner [all...] |
/development/apps/BluetoothDebug/ |
AndroidManifest.xml | 15 <action android:name="android.bluetooth.device.action.FOUND" /> 16 <action android:name="android.bluetooth.device.action.DISAPPEARED" /> 17 <action android:name="android.bluetooth.device.action.CLASS_CHANGED" /> 18 <action android:name="android.bluetooth.device.action.ACL_CONNECTED" /> 19 <action android:name="android.bluetooth.device.action.ACL_DISCONNECT_REQUESTED" /> 20 <action android:name="android.bluetooth.device.action.ACL_DISCONNECTED" /> 21 <action android:name="android.bluetooth.device.action.NAME_CHANGED" /> 22 <action android:name="android.bluetooth.device.action.BOND_STATE_CHANGED" /> 23 <action android:name="android.bluetooth.device.action.NAME_FAILED" /> 24 <action android:name="android.bluetooth.device.action.PAIRING_REQUEST" / [all...] |
/development/tools/emulator/skins/WSVGA/ |
layout | 13 device { 45 name device 72 name device
|
/development/tools/emulator/skins/WXGA720/ |
layout | 13 device { 45 name device 72 name device
|
/development/tools/emulator/skins/WXGA800/ |
layout | 13 device { 45 name device 72 name device
|
/external/bluetooth/bluez/tools/ |
hcitool.1 | 30 The command is applied to device 33 , which must be the name of an installed Bluetooth device. If not specified, 34 the command will be sent to the first available Bluetooth device. 41 Inquire remote devices. For each discovered device, Bluetooth device address, 45 Inquire remote devices. For each discovered device, device name are printed. 48 Print device name of remote device with Bluetooth address 52 Print device name, version and supported features of remote device wit [all...] |
/external/quake/ |
setupdevice.sh | 3 # Copy Quake's data files from perforce to the Android device's data directory. 23 echo "Creating Quake directories on the device" 29 echo "Copying Quake data files to the device. (This could take several minutes)"
|