/development/host/windows/usb/api/ |
adb_interface_enum.h | 43 /** \brief Enumerates all interfaces for the given device class.
45 This routine uses SetupDiGetClassDevs to get our device info and calls
47 @param[in] class_id Device class ID that is specified by our USB driver
|
/development/host/windows/usb/legacy/driver/ |
android_usb_driver_object.cpp | 119 // Instantiate our device object extension for this device
126 // Create and initialize FDO device
|
/development/pdk/docs/porting/ |
build_system.jd | 59 <p>Each layer relates to the one above it in a one-to-many relationship. For example, an arch can have more than one board and each board can have more than one device. You may define an element in a given layer as a specialization of an element in the same layer, thus eliminating copying and simplifying maintenance.</p> 70 <td valign="top">The product layer defines a complete specification of a shipping product, defining which modules to build and how to configure them. You might offer a device in several different versions based on locale, for example, or on features such as a camera. </td> 73 <td valign="top">Device</td> 75 <td valign="top">The device layer represents the physical layer of plastic on the device. For example, North American devices probably include QWERTY keyboards whereas devices sold in France probably include AZERTY keyboards. Peripherals typically connect to the device layer. </td> 91 <p>This section describes how to build the default version of Android. Once you are comfortable with a generic build, then you can begin to modify Android for your own target device.</p> 94 <a name="androidSourceSetupBuildingDeviceCodeBase"></a><h4>Device Code</h4> 137 device Dex: core UNEXPECTED TOP-LEVEL ERROR: 156 <p>This section describes how to build Android's default kernel. Once you are comfortable with a generic build, then you can begin to modify Android drivers for your own target device.</p [all...] |
/development/simulator/app/assets/htc-audiovox-5600/ |
layout.xml | 4 <device name="HTC5600"> 14 <!-- surrounding device image and "patches", drawn in order --> 52 </device>
|
/development/simulator/app/assets/htc-tornado/ |
layout.xml | 4 <device name="HTC_Tornado"> 16 <!-- surrounding device image and "patches", drawn in order --> 63 </device>
|
/development/simulator/wrapsim/ |
DevEvent.c | 4 * Input event device. 17 * Input event device state. 34 // These bits indicate which keys the device has 201 /* device doesn't seem to support this, neither will we */ 244 wsLog("Sim input device closed\n"); 250 * Open an input event device. 269 * app opens the device, then opens it a second time for input, 275 wsLog("Device %p / %d will receive sim input events\n", 390 * Send a key event to the fake key event device. 392 * We have to translate the simulator key event into one or more device [all...] |
/development/testrunner/test_defs/ |
host_test.py | 81 adb_interface: reference to device under test 86 # get the serial number of the device under test, so it can be passed to 99 # java -cp <libs> <runner class> <test suite class> -s <device serial>
|
/external/astl/tests/ |
Android.mk | 29 # generate the right make target (host vs device). $(5) is used in the 30 # module's name to have different name for the host vs device 87 $(call device-test, $(sources))
|
/external/bluetooth/bluez/lib/bluetooth/ |
bnep.h | 128 char device[16]; /* Name of the Ethernet device */ member in struct:bnep_connadd_req 141 char device[16]; member in struct:bnep_conninfo
|
/external/bluetooth/bluez/tools/ |
csr_usb.c | 58 int csr_open_usb(char *device) 81 fprintf(stderr, "Device not available\n"); 88 fprintf(stderr, "Can't open device: %s (%d)\n",
|
hcitool.c | 232 return "Device conforms to the Headset profile"; 249 return "HiFi Audio Device"; 275 strncpy(cls_str, "Pointing device", sizeof(cls_str)); 278 strncpy(cls_str, "Combo keyboard/pointing device", sizeof(cls_str)); 297 strncat(cls_str, "Sensing device", sizeof(cls_str) - strlen(cls_str)); 353 return "Unknown (reserved) minor device class"; 485 /* Device scanning */ 583 perror("Device is not available"); 589 perror("Can't get device info"); 602 perror("HCI device open failed") [all...] |
/external/e2fsprogs/debugfs/ |
debugfs.8.in | 34 device 42 .I device 43 is the special file corresponding to the device containing the ext2 59 .I device 245 .I init_filesys device blocksize 247 .I device 248 with device size 327 Create a special device file (a named pipe, character or block device). 328 If a character or block device is to be made, the [all...] |
/external/e2fsprogs/resize/ |
resize2fs.8.in | 27 .I device 36 .IR device . 121 Flush the filesystem device's buffer caches before beginning. Only
|
/external/freetype/include/freetype/ |
ftpfr.h | 74 * in metrics units to device sub-pixels. This is equivalent to 126 * returned by @FT_Get_PFR_Metrics to scale these to device sub-pixels. 157 * to convert the advance to device sub-pixels (i.e., 1/64th of pixels).
|
/external/kernel-headers/original/linux/ |
clk.h | 14 struct device; 28 * @dev: device for clock "consumer" 39 struct clk *clk_get(struct device *dev, const char *id);
|
/external/kernel-headers/original/linux/mtd/ |
bbm.h | 32 * number of blocks is reserved at the end of the device 58 /* The number of bits used per block in the bbt on the device */ 64 /* The bad block table is in the last good block of the device */
|
/external/qemu/distrib/sdl-1.2.12/src/audio/dummy/ |
SDL_dummyaudio.c | 56 static void DUMMYAUD_DeleteDevice(SDL_AudioDevice *device) 58 SDL_free(device->hidden); 59 SDL_free(device);
|
/external/qemu/distrib/sdl-1.2.12/src/video/ataricommon/ |
SDL_ataridevmouse.c | 53 TODO: Fix the MiNT device driver, that locks mouse for other 58 /* First, try SDL_MOUSEDEV device */ 64 /* Failed, try default device */
|
/external/qemu/hw/ |
bt-hid.c | 109 struct bt_scatternet_s *net = s->btdev.device.net; 349 * so just pass it on to the device. */ 450 hid->btdev.device.page_scan = !hid->connected; 451 hid->btdev.device.inquiry_scan = !hid->connected; 541 /* Device class */ 546 (1 << 19); /* Capturing device (?) */ 556 s->btdev.device.lmp_name = s->usbdev->devname; 559 s->btdev.device.handle_destroy = bt_hid_destroy; 561 s->btdev.device.class[0] = (class >> 0) & 0xff; 562 s->btdev.device.class[1] = (class >> 8) & 0xff [all...] |
/external/qemu/ |
net.h | 121 int net_client_init(Monitor *mon, const char *device, const char *p); 129 void net_host_device_add(Monitor *mon, const char *device, const char *opts); 130 void net_host_device_remove(Monitor *mon, int vlan_id, const char *device);
|
/external/sqlite/dist/ |
Android.mk | 17 # the device library 67 ## Build the device command line tool sqlite3 70 ifneq ($(SDK_ONLY),true) # SDK doesn't need device version of sqlite3
|
/external/yaffs2/yaffs2/direct/ |
yaffsfs.h | 160 int st_dev; /* device */ 166 unsigned st_rdev; /* device type (if inode device) */
|
/frameworks/base/cmds/input/src/com/android/commands/input/ |
Input.java | 28 * Command that sends key events to the device, either by their keycode, or by 68 * device. 70 * @param text is a string of characters you want to input to the device.
|
/frameworks/base/docs/html/guide/appendix/ |
install-location.jd | 10 <li>You can allow your application to install on the device's external storage.</li> 34 external storage (for example, the device's SD card). This is an optional feature you can declare 67 as the external storage is mounted on the device.</li> 70 internal device memory.</li> 72 generated key that can be decrypted only by the device that originally installed it. Thus, an 73 application installed on an SD card works for only one device.</li> 79 from the device and all applications running on the external storage are immediately killed.</p> 107 <p>When your application is installed on a device with an API Level lower than 8, the {@code 127 remounted on the device. Besides killing the application and making it unavailable to the user, 166 <dt>Device Administrators</dt [all...] |
/frameworks/base/services/jni/ |
com_android_server_LightsService.cpp | 54 hw_device_t* device; local 55 err = module->methods->open(module, name, &device); 57 return (light_device_t*)device;
|