HomeSort by relevance Sort by last modified time
    Searched full:device (Results 376 - 400 of 5346) sorted by null

<<11121314151617181920>>

  /docs/source.android.com/src/compatibility/
index.md 26 Developers use to clearly state the device features their apps require. And
37 ### Users want a customizable device. ###
46 No device manufacturer can hope to write all the software that a person could
56 device, you benefit from the huge pool of apps written for Android, while
61 If you are building a mobile device, you can follow these steps to make
62 sure your device is compatible with Android. For more details about the
65 Building a compatible device is a three-step process:
71 The CDD enumerates the software and hardware requirements of a compatible Android device.
78 Once you've built a compatible device, you may wish to include Android
  /external/bluetooth/bluez/doc/
audio-api.txt 19 Connect all supported audio profiles on the device.
23 Disconnect all audio profiles on the device
51 Disconnected from the remote device
62 Connect to the HSP/HFP service on the remote device.
67 device.
72 HSP/HFP connection on the remote device.
137 Sent when the device has been connected to.
141 Sent when the device has been disconnected from.
187 Disconnected from the remote device
192 HSP/HFP connection on the remote device
    [all...]
  /external/e2fsprogs/lib/blkid/
read.c 49 * <device [<NAME="value"> ...]>device_name</device>
52 * <ID="id"> unique (within this file) ID number of this device
56 * The following tags may be present, depending on the device contents
134 * line starts with "<device" return 1 -> continue parsing line
150 if (!strncmp(p, "<device", 7)) {
151 DBG(DEBUG_READ, printf("found device header: %8s\n", p));
169 if (!strncmp(*cp, "</device>", 9)) {
170 DBG(DEBUG_READ, printf("found device trailer %9s\n", *cp));
179 * Allocate a new device struct with device name filled in. Will handl
    [all...]
  /external/tinyalsa/
tinyplay.c 57 void play_sample(FILE *file, unsigned int device, unsigned int channels,
64 unsigned int device = 0; local
67 fprintf(stderr, "Usage: %s file.wav [-d device]\n", argv[0]);
82 device = atoi(*argv);
99 play_sample(file, device, header.num_channels, header.sample_rate,
107 void play_sample(FILE *file, unsigned int device, unsigned int channels,
128 pcm = pcm_open(0, device, PCM_OUT, &config);
130 fprintf(stderr, "Unable to open PCM device %u (%s)\n",
131 device, pcm_get_error(pcm));
  /frameworks/base/core/java/android/hardware/usb/
IUsbManager.aidl 31 /* Returns a file descriptor for communicating with the USB device.
44 /* Sets the default package for a USB device
47 void setDevicePackage(in UsbDevice device, String packageName);
54 /* Returns true if the caller has permission to access the device. */
55 boolean hasDevicePermission(in UsbDevice device);
60 /* Requests permission for the given package to access the device.
64 void requestDevicePermission(in UsbDevice device, String packageName, in PendingIntent pi);
73 /* Grants permission for the given UID to access the device */
74 void grantDevicePermission(in UsbDevice device, int uid);
  /packages/apps/Gallery2/src/com/android/gallery3d/data/
MtpDeviceSet.java 58 MtpDevice device = (MtpDevice) dataManager.peekMediaObject(childPath); local
59 if (device == null) {
60 device = new MtpDevice(childPath, mApplication, deviceId, mMtpContext);
62 Log.d(TAG, "add device " + device);
63 mDeviceSet.add(device);
73 android.mtp.MtpDevice device = mtpContext.getMtpClient().getDevice(deviceId); local
74 if (device == null) {
77 MtpDeviceInfo info = device.getDeviceInfo();
  /prebuilt/linux-x86/toolchain/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/linux/
dm-ioctl.h 19 * A traditional ioctl interface for the device mapper.
21 * Each device can have two tables associated with it, an
23 * through the device, and an 'inactive' one which is a table
34 * Get a list of all the dm device names.
37 * Create a new device, neither the 'active' or 'inactive' table
38 * slots will be filled. The device will be in suspended state
39 * after creation, however any io to the device will get errored
43 * Remove a device, destroy any tables.
46 * Rename a device.
52 * the device has completed. Further io will be deferred unti
    [all...]
  /development/samples/BluetoothChat/src/com/example/android/BluetoothChat/
DeviceListActivity.java 42 * devices detected in the area after discovery. When a device is chosen
43 * by the user, the MAC address of the device is sent back to the parent
70 // Initialize the button to perform device discovery
94 // Register for broadcasts when a device is discovered
111 for (BluetoothDevice device : pairedDevices) {
112 mPairedDevicesArrayAdapter.add(device.getName() + "\n" + device.getAddress());
134 * Start device discover with the BluetoothAdapter
161 // Get the device MAC address, which is the last 17 chars in the View
182 // When discovery finds a device
    [all...]
  /external/kernel-headers/original/linux/
rtc.h 110 #include <linux/device.h>
119 int (*open)(struct device *);
120 void (*release)(struct device *);
121 int (*ioctl)(struct device *, unsigned int, unsigned long);
122 int (*read_time)(struct device *, struct rtc_time *);
123 int (*set_time)(struct device *, struct rtc_time *);
124 int (*read_alarm)(struct device *, struct rtc_wkalrm *);
125 int (*set_alarm)(struct device *, struct rtc_wkalrm *);
126 int (*proc)(struct device *, struct seq_file *);
127 int (*set_mmss)(struct device *, unsigned long secs)
    [all...]
  /frameworks/base/docs/html/guide/topics/admin/
device-admin.jd 1 page.title=Device Administration
8 <li><a href="#overview">Device Administration API Overview</a>
15 <li><a href="#developing">Developing a Device Administration Application</a>
34 Android Device Administration API. The Device Administration API provides device
47 provided by the Device Administration API to provide stronger security for
51 <h2 id="overview">Device Administration API Overview</h2>
53 <p>Here are examples of the types of applications that might use the Device Administration API:</p>
57 <li>Device management services and applications.</li
    [all...]
  /bootable/recovery/
roots.c 56 device_volumes[0].device = NULL;
77 char* device = strtok(NULL, " \t\n"); local
78 // lines may optionally have a second device, to use if
91 if (mount_point && fs_type && device) {
98 device_volumes[num_volumes].device = strdup(device);
121 v->device, v->device2, v->length);
170 partition = mtd_find_partition_by_name(v->device);
173 v->device, v->mount_point);
179 result = mount(v->device, v->mount_point, v->fs_type
    [all...]
verifier_test.sh 6 # DO NOT RUN THIS ON A DEVICE YOU CARE ABOUT. It will mess up your
18 # set to 0 to use a device instead
31 echo "waiting to connect to device"
32 $ADB wait-for-device
34 # run a command on the device; exit with the exit status of the device
  /external/quake/quake/src/QW/dxsdk/sdk/inc/
d3dcaps.h 177 * Description for a device.
178 * This is used to describe a device that is to be created or to query
179 * the current device.
184 D3DCOLORMODEL dcmColorModel; /* Color model of device */
185 DWORD dwDevCaps; /* Capabilities of device */
187 BOOL bClipping; /* Device can do 3D clipping */
215 #define D3DDEVCAPS_FLOATTLVERTEX 0x00000001L /* Device accepts floating point */
217 #define D3DDEVCAPS_SORTINCREASINGZ 0x00000002L /* Device needs data sorted for increasing Z*/
218 #define D3DDEVCAPS_SORTDECREASINGZ 0X00000004L /* Device needs data sorted for decreasing Z*/
219 #define D3DDEVCAPS_SORTEXACT 0x00000008L /* Device needs data sorted exactly */
    [all...]
  /external/quake/quake/src/WinQuake/dxsdk/SDK/INC/
D3DCAPS.H 177 * Description for a device.
178 * This is used to describe a device that is to be created or to query
179 * the current device.
184 D3DCOLORMODEL dcmColorModel; /* Color model of device */
185 DWORD dwDevCaps; /* Capabilities of device */
187 BOOL bClipping; /* Device can do 3D clipping */
215 #define D3DDEVCAPS_FLOATTLVERTEX 0x00000001L /* Device accepts floating point */
217 #define D3DDEVCAPS_SORTINCREASINGZ 0x00000002L /* Device needs data sorted for increasing Z*/
218 #define D3DDEVCAPS_SORTDECREASINGZ 0X00000004L /* Device needs data sorted for decreasing Z*/
219 #define D3DDEVCAPS_SORTEXACT 0x00000008L /* Device needs data sorted exactly */
    [all...]
  /external/qemu/distrib/sdl-1.2.12/src/video/bwindow/
SDL_sysvideo.cc 78 static void BE_DeleteDevice(SDL_VideoDevice *device)
80 SDL_free(device->hidden);
81 SDL_free(device);
86 SDL_VideoDevice *device; local
89 device = (SDL_VideoDevice *)SDL_malloc(sizeof(SDL_VideoDevice));
90 if ( device ) {
91 SDL_memset(device, 0, (sizeof *device));
92 device->hidden = (struct SDL_PrivateVideoData *)
93 SDL_malloc((sizeof *device->hidden))
    [all...]
  /development/testrunner/
adb_interface.py 18 """Provides an interface to communicate with the device via the adb command.
35 """Helper class for communicating with Android device via adb."""
37 # argument to pass to adb, to direct command to specific device
47 """Direct all future commands to the only connected USB device."""
67 WaitForResponseTimedOutError if device does not respond to command within time
88 WaitForResponseTimedOutError: if device does not respond to command
105 """Pushes the file src onto the device at dest.
109 dest: destination absolute file path on device
114 """Pulls the file src on the device onto dest on the host.
117 src: absolute file path of file on device to pul
    [all...]
  /frameworks/base/core/java/android/view/
InputDevice.java 28 * Describes the capabilities of a particular input device.
30 * Each input device may support multiple classes of input. For example, a multifunction
32 * or other pointing device.
64 * Use {@link #getKeyCharacterMap} to query the device's button and key mappings.
69 * The input source is a pointing device associated with a display.
76 * Use {@link #getMotionRange} to query the range of the pointing device. Some devices permit
83 * The input source is a trackball navigation device.
86 * A {@link MotionEvent} should be interpreted as relative movements in device-specific
95 * The input source is an absolute positioning device not associated with a display
99 * device-specific surface units
    [all...]
  /frameworks/base/docs/html/guide/webapps/
targeting.jd 23 <li><a href="#DensityCSS">Targeting Device Density with CSS</a></li>
24 <li><a href="#DensityJS">targeting Device Density with JavaScript</a></li>
59 <dt>The device's screen density</dt>
60 <dd>The screen density (the number of pixels per inch) on an Android-powered device affects
86 not the dimensions of the device screen. For example, although a device screen might have a width of
98 should exactly match the device screen width and that the ability to zoom should be disabled:</p>
103 &lt;meta name="viewport" content="width=device-width, user-scalable=no" /&gt;
113 <b>height</b> = [<em>pixel_value</em> | device-height] ,
114 <b>width</b> = [<em>pixel_value</em> | device-width ]
    [all...]
  /frameworks/base/services/java/com/android/server/usb/
UsbSettingsManager.java 71 // Temporary mapping USB device name to list of UIDs with permissions for the device
86 // This class is used to describe a USB device.
95 // USB device or interface class (or -1 for unspecified)
97 // USB device subclass (or -1 for unspecified)
99 // USB device protocol (or -1 for unspecified)
110 public DeviceFilter(UsbDevice device) {
111 mVendorId = device.getVendorId();
112 mProductId = device.getProductId();
113 mClass = device.getDeviceClass()
217 UsbDevice device = (UsbDevice)obj; local
    [all...]
  /development/pdk/docs/porting/
system_requirements.jd 1 page.title=Device Requirements
6 <p>While Android is designed to support a wide variety of hardware platforms and configurations, this section provides recommended minimum device requirements.</p>
46 <td>Android uses the USB interface for flashing the device system images and debugging a running device.</td>
55 <p>If available, your Android device can also benefit from the following optional device characteristics:</p>
  /device/common/
generate-blob-scripts.sh 29 # Caveat: this script does many full builds (2 per device). It takes a while
33 # Syntax: device/common/generate-blob-scripts.sh -f|--force [<server> <branch>]
83 MANUFACTURERNAME=$( find device -type d | grep [^/]\*/[^/]\*/$DEVICENAME\$ | cut -f 2 -d / )
103 echo '# This file is generated by device/common/generate-blob-scripts.sh - DO NOT EDIT'
105 echo DEVICE=$DEVICENAME
108 echo 'mkdir -p ../../../vendor/$MANUFACTURER/$DEVICE/proprietary'
118 echo adb pull $FULLPATH ../../../vendor/\$MANUFACTURER/\$DEVICE/proprietary/$(basename $FULLPATH)
120 echo unzip -j -o ../../../\${DEVICE}_update.zip $(echo $FULLPATH | cut -b 2-) -d ../../../vendor/\$MANUFACTURER/\$DEVICE/proprietary
124 echo chmod 755 ../../../vendor/\$MANUFACTURER/\$DEVICE/proprietary/$(basename $FULLPATH
    [all...]
  /external/blktrace/btt/
latency.c 29 FILE *latency_open(__u32 device, char *name, char *post)
37 mjr = device >> MINORBITS;
38 mnr = device & ((1 << MINORBITS) - 1);
52 dip->q2d_ofp = latency_open(dip->device, q2d_name, "q2d");
53 dip->d2c_ofp = latency_open(dip->device, d2c_name, "d2c");
54 dip->q2c_ofp = latency_open(dip->device, q2c_name, "q2c");
  /external/bluetooth/bluez/health/
hdp_manager.c 35 #include <device.h>
63 static int hdp_driver_probe(struct btd_device *device, GSList *uuids)
65 return hdp_device_register(connection, device);
68 static void hdp_driver_remove(struct btd_device *device)
70 hdp_device_unregister(device);
74 .name = "hdp-device-driver",
  /external/bluetooth/bluez/tools/
bccmd.8 7 .B bccmd [-t <transport>] [-d <device>] <command> [<args>]
25 Local device with Host Controller Interface (default).
41 Specify a particular device to operate on. If not specified, default is the first available HCI device
76 Disable TX on the device
79 Enable TX on the device
  /external/e2fsprogs/tests/f_filetype/
expect.1 2 Special (device/socket/fifo/symlink) file (inode 14) has immutable
5 Special (device/socket/fifo/symlink) file (inode 15) has immutable
8 Special (device/socket/fifo/symlink) file (inode 16) has immutable
11 Special (device/socket/fifo/symlink) file (inode 17) has immutable
24 Inode 18 (/badchar) is an illegal character device.
27 Inode 19 (/badblock) is an illegal block device.

Completed in 1793 milliseconds

<<11121314151617181920>>