/prebuilt/ndk/android-ndk-r4/platforms/android-8/arch-arm/usr/include/linux/ |
clk.h | 15 struct device; 19 struct clk *clk_get(struct device *dev, const char *id);
|
/prebuilt/ndk/android-ndk-r4/platforms/android-8/arch-x86/usr/include/linux/ |
clk.h | 15 struct device; 19 struct clk *clk_get(struct device *dev, const char *id);
|
/sdk/ddms/app/ |
README | 5 SWT is available in the depot under //device/prebuild/<platform>/swt 11 available at //device/prebuild/<platform>/swt
|
/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 private static void sendCommand(String command, IDevice device, Window window, String params) { 45 DeviceBridge.getDeviceLocalPort(device)));
|
/sdk/sdkstats/ |
README | 5 SWT is available in the depot under //device/prebuild/<platform>/swt 11 available at //device/prebuild/<platform>/swt.
|
/sdk/traceview/ |
README | 5 SWT is available in the depot under //device/prebuild/<platform>/swt 11 available at //device/prebuild/<platform>/swt.
|
/development/tools/hosttestlib/src/com/android/hosttest/ |
DeviceTestCase.java | 24 * Helper JUnit test case that stores reference to an Android device and test data. 26 * Can be extended to verify an Android device's response to various adb commands. 30 /** Android device under test */ 41 public void setDevice(IDevice device) { 42 mDevice = device; 68 // ensure device has been set before test is run
|
/external/bluetooth/bluez/doc/ |
serial-api.txt | 17 remote device and then creates a RFCOMM TTY 18 device for it. The RFCOMM TTY device is returned. 29 void Disconnect(string device) 31 Disconnect a RFCOMM TTY device that has been 38 be suplied instead of the TTY device.
|
/external/kernel-headers/original/asm-generic/ |
errno-base.h | 9 #define ENXIO 6 /* No such device or address */ 18 #define ENOTBLK 15 /* Block device required */ 19 #define EBUSY 16 /* Device or resource busy */ 21 #define EXDEV 18 /* Cross-device link */ 22 #define ENODEV 19 /* No such device */ 31 #define ENOSPC 28 /* No space left on device */
|
/prebuilt/linux-x86/toolchain/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/asm-generic/ |
errno-base.h | 9 #define ENXIO 6 /* No such device or address */ 18 #define ENOTBLK 15 /* Block device required */ 19 #define EBUSY 16 /* Device or resource busy */ 21 #define EXDEV 18 /* Cross-device link */ 22 #define ENODEV 19 /* No such device */ 31 #define ENOSPC 28 /* No space left on device */
|
/external/kernel-headers/original/asm-arm/ |
dma-mapping.h | 7 #include <linux/device.h> 20 * Return whether the given device DMA address mask can be supported 21 * properly. For example, if your device can only drive the low 24-bits 28 static inline int dma_supported(struct device *dev, u64 mask) 33 static inline int dma_set_mask(struct device *dev, u64 dma_mask) 63 * @dev: valid struct device pointer, or NULL for ISA and EISA-like devices 67 * Allocate some uncached, unbuffered memory for a device for 70 * device-viewed address. 73 dma_alloc_coherent(struct device *dev, size_t size, dma_addr_t *handle, gfp_t gfp); 77 * @dev: valid struct device pointer, or NULL for ISA and EISA-like device [all...] |
/external/qemu/distrib/sdl-1.2.12/src/video/nanox/ |
SDL_nxvideo.c | 65 static void NX_DeleteDevice (SDL_VideoDevice * device) 69 if (device) { 70 if (device -> hidden) SDL_free (device -> hidden) ; 71 if (device -> gl_data) SDL_free (device -> gl_data) ; 72 SDL_free (device) ; 80 SDL_VideoDevice * device ; local 85 device = (SDL_VideoDevice *) SDL_malloc (sizeof (SDL_VideoDevice)) ; 86 if (device) { [all...] |
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/project/ |
ApkInstallManager.java | 35 * Registers which apk was installed on which device. 38 * information about whether a new APK should be installed on a device prior to running the 41 * The manager uses {@link IProject} and {@link IDevice} to identify the target device and the 52 * Internal struct to associate a project and a device. 55 public ApkInstall(IProject project, String packageName, IDevice device) { 58 this.device = device; 66 return (device == apkObj.device && project.equals(apkObj.project) && 75 return (device.getSerialNumber() + project.getName() + packageName).hashCode() 80 final IDevice device; field in class:ApkInstallManager.ApkInstall [all...] |
/cts/tools/tradefed-host/src/com/android/cts/tradefed/targetsetup/ |
CtsSetup.java | 22 import com.android.tradefed.device.DeviceNotAvailableException; 23 import com.android.tradefed.device.ITestDevice; 34 * A {@link ITargetPreparer} that sets up a device for CTS testing. 36 * All the actions performed in this class must work on a production device. 65 public void setUp(ITestDevice device, IBuildInfo buildInfo) throws TargetSetupError, 81 installCtsPrereqs(device, buildHelper); 90 * Installs an apkFile on device. 92 * @param device the {@link ITestDevice} 97 void installApk(ITestDevice device, File apkFile) 99 String errorCode = device.installPackage(apkFile, true) [all...] |
CtsRootDeviceSetup.java | 19 import com.android.tradefed.device.DeviceNotAvailableException; 20 import com.android.tradefed.device.ITestDevice; 32 * for setting up a device for CTS testing. 34 * This class is NOT intended for 'official' CTS runs against a production device as the steps 54 public void setUp(ITestDevice device, IBuildInfo buildInfo) throws TargetSetupError, 59 Log.i(LOG_TAG, String.format("Setting up %s to run CTS tests", device.getSerialNumber())); 65 if (!device.enableAdbRoot()) { 67 "Failed to set root on device %s.", device.getSerialNumber())); 73 enableAccessibilityService(device, buildHelper) [all...] |
/external/qemu/distrib/sdl-1.2.12/src/video/aalib/ |
SDL_aavideo.c | 67 static void AA_DeleteDevice(SDL_VideoDevice *device) 69 SDL_free(device->hidden); 70 SDL_free(device); 75 SDL_VideoDevice *device; local 78 device = (SDL_VideoDevice *)SDL_malloc(sizeof(SDL_VideoDevice)); 79 if ( device ) { 80 SDL_memset(device, 0, (sizeof *device)); 81 device->hidden = (struct SDL_PrivateVideoData *) 82 SDL_malloc((sizeof *device->hidden)) [all...] |
/frameworks/base/core/java/android/bluetooth/ |
BluetoothA2dp.java | 86 /** Default priority when not set or when the device is unpaired */ 115 * @param device Remote BT device. 119 public boolean connectSink(BluetoothDevice device) { 120 if (DBG) log("connectSink(" + device + ")"); 122 return mService.connectSink(device); 132 * @param device Remote BT device. 136 public boolean disconnectSink(BluetoothDevice device) { 137 if (DBG) log("disconnectSink(" + device + ")") [all...] |
/development/host/windows/usb/api/ |
adb_helper_routines.h | 43 /** \brief Given the hardware device information enumerates interfaces for
44 this device.
46 @param[in] hardware_dev_info A handle to hardware device information obtained
48 @param[in] class_id Device class ID how it is specified by our USB driver.
54 all interfaces found for this device (matching all filters).
64 /** \brief Enumerates all interfaces for our device class.
66 This routine uses SetupDiGetClassDevs to get our device info and calls
68 @param[in] class_id Device class ID how it is specified by our USB driver
76 all interfaces found for this device (matching all filters).
86 /** \brief Given the hardware device information and data gets data details. [all...] |
/packages/apps/Settings/src/com/android/settings/bluetooth/ |
BluetoothEventRedirector.java | 50 BluetoothDevice device = intent.getParcelableExtra(BluetoothDevice.EXTRA_DEVICE); 70 mManager.getCachedDeviceManager().onDeviceAppeared(device, rssi, btClass, name); 73 mManager.getCachedDeviceManager().onDeviceDisappeared(device); 76 mManager.getCachedDeviceManager().onDeviceNameUpdated(device); 82 cachedDeviceMgr.onBondingStateChanged(device, bondState); 84 if (device.isBluetoothDock()) { 87 mManager.removeDockAutoConnectSetting(device.getAddress()); 89 // if the device is undocked, remove it from the list as 91 if (!device.getAddress().equals(getDockedDeviceAddress(context))) { 92 cachedDeviceMgr.onDeviceDisappeared(device); 189 BluetoothDevice device = i.getParcelableExtra(BluetoothDevice.EXTRA_DEVICE); local [all...] |
/external/skia/src/core/ |
SkBlitter_RGB16.cpp | 64 SkRGB16_Blitter(const SkBitmap& device, const SkPaint& paint); 89 SkRGB16_Opaque_Blitter(const SkBitmap& device, const SkPaint& paint); 103 SkRGB16_Black_Blitter(const SkBitmap& device, const SkPaint& paint); 114 SkRGB16_Shader_Blitter(const SkBitmap& device, const SkPaint& paint); 135 SkRGB16_Shader16_Blitter(const SkBitmap& device, const SkPaint& paint); 146 SkRGB16_Shader_Xfermode_Blitter(const SkBitmap& device, const SkPaint& paint); 164 SkRGB16_Black_Blitter::SkRGB16_Black_Blitter(const SkBitmap& device, const SkPaint& paint) 165 : INHERITED(device, paint) { 211 uint16_t* SK_RESTRICT device = fDevice.getAddr16(clip.fLeft, clip.fTop); variable 227 *device = SkAlphaMulRGB16(*device, SkAlpha255To256(255 - aa)) 240 uint16_t* SK_RESTRICT device = fDevice.getAddr16(x, y); variable 279 uint16_t* SK_RESTRICT device = fDevice.getAddr16(x, y); variable 302 uint16_t* SK_RESTRICT device = fDevice.getAddr16(x, y); variable 382 uint16_t* SK_RESTRICT device = fDevice.getAddr16(clip.fLeft, clip.fTop); variable 485 uint16_t* SK_RESTRICT device = fDevice.getAddr16(x, y); local 501 uint16_t* SK_RESTRICT device = fDevice.getAddr16(x, y); local 578 uint16_t* SK_RESTRICT device = fDevice.getAddr16(x, y); variable 587 uint16_t* SK_RESTRICT device = fDevice.getAddr16(x, y); variable 642 uint16_t* SK_RESTRICT device = fDevice.getAddr16(clip.fLeft, clip.fTop); variable 666 uint16_t* SK_RESTRICT device = fDevice.getAddr16(x, y); local 682 uint16_t* SK_RESTRICT device = fDevice.getAddr16(x, y); local 703 uint16_t* SK_RESTRICT device = fDevice.getAddr16(x, y); variable 767 uint16_t* SK_RESTRICT device = fDevice.getAddr16(x, y); variable 900 uint16_t* SK_RESTRICT device = fDevice.getAddr16(x, y); variable 965 uint16_t* device = fDevice.getAddr16(x, y); local 979 uint16_t* SK_RESTRICT device = fDevice.getAddr16(x, y); variable [all...] |
/external/qemu/distrib/sdl-1.2.12/src/joystick/darwin/ |
SDL_sysjoystick.c | 79 IOHIDDeviceInterface ** interface; /* interface to device, NULL = no interface */ 85 long axes; /* number of axis (calculated, not reported by device) */ 86 long buttons; /* number of buttons (calculated, not reported by device) */ 87 long hats; /* number of hat switches (calculated, not reported by device) */ 88 long elements; /* number of total elements (shouldbe total of above) (calculated, not reported by device) */ 97 struct joystick_hwdata* pNext; /* next device */ 157 recDevice *device = (recDevice *) refcon; local 158 device->removed = 1; 159 device->uncentered = 1; 164 /* Create and open an interface to device, required prior to extracting values or building queues 576 recDevice *device, *lastDevice; local 685 recDevice *device = gpDeviceList; local 700 recDevice *device = gpDeviceList; local 724 recDevice *device = joystick->hwdata; local [all...] |
/external/qemu/distrib/sdl-1.2.12/src/video/ggi/ |
SDL_ggivideo.c | 81 static void GGI_DeleteDevice(SDL_VideoDevice *device) 83 SDL_free(device->hidden); 84 SDL_free(device); 89 SDL_VideoDevice *device; local 92 device = (SDL_VideoDevice *)SDL_malloc(sizeof(SDL_VideoDevice)); 93 if ( device ) { 94 SDL_memset(device, 0, (sizeof *device)); 95 device->hidden = (struct SDL_PrivateVideoData *) 96 SDL_malloc((sizeof *device->hidden)) [all...] |
/external/bluetooth/bluez/test/ |
apitest | 133 print 'Failed to get default device: %s' % e 137 self.device = dbus.Interface(obj, 'org.bluez.Adapter') 139 print 'Failed to setup device path: %s' % e 151 print 'Failed to setup signal handler for device path: %s' % e 173 print ' -i <dev> Specify device (e.g. "hci0" or "/org/bluez/hci0")' 217 for device in devices: 218 print device 229 print self.device.GetAddress() 231 print self.device.GetManufacturer() 233 print self.device.GetVersion( [all...] |
/frameworks/base/libs/usb/tests/AccessoryChat/accessorychat/ |
accessorychat.c | 77 static void send_string(struct usb_device *device, int index, const char* string) { 78 int ret = usb_device_control_transfer(device, USB_DIR_OUT | USB_TYPE_VENDOR, 92 struct usb_device *device = usb_device_open(devname); local 93 if (!device) { 98 vendorId = usb_device_get_vendor_id(device); 99 productId = usb_device_get_product_id(device); 109 printf("Found android device in accessory mode\n"); 110 sDevice = device; 112 usb_descriptor_iter_init(device, &iter); 133 if (usb_device_claim_interface(device, intf->bInterfaceNumber)) [all...] |
/development/simulator/wrapsim/ |
FakeDev.h | 4 * Fake device support. 25 * An open fake device entry. 28 /* string, for debugging; usually orig. device name */ 41 * Device functions we provide. 69 * Create a new, completely fake device entry. 74 * Create a new, mostly fake device entry. 79 * Free a fake device entry. 84 * Given a file descriptor, find the corresponding fake device. Returns 90 * Check to see if this open() call is on a device we want to spoof. 97 * Check to see if this access() call is on a device we want to spoof [all...] |