HomeSort by relevance Sort by last modified time
    Searched full:devices (Results 251 - 275 of 1889) sorted by null

<<11121314151617181920>>

  /frameworks/base/docs/html/guide/practices/
screens-distribution.jd 38 application to certain types of screens, such as only tablets and other large devices or only
39 handsets and similar-sized devices. To do so, you can enable filtering by external services such as
47 available to the greatest number of users with different devices, using a single APK.</p>
62 information to apply filtering to your application, so that only devices that have a screen
116 devices from downloading your app by using the <a
120 <p>For example, if you want your application to be available only to tablet devices, you can declare
146 <p>The first technique is for devices that are running Android 3.1 or older, because those devices
149 requiresSmallestWidthDp}</a> attribute is for devices running Android 3.2 and newer, which includes
186 <p>Remember, you should strive to make your application available to as many devices as possible b
    [all...]
  /hardware/libhardware_legacy/audio/
AudioDumpInterface.cpp 60 uint32_t devices, int *format, uint32_t *channels, uint32_t *sampleRate, status_t *status)
68 outFinal = mFinalInterface->openOutputStream(devices, format, channels, sampleRate, status);
100 devices, lFormat, lChannels, lRate);
126 AudioStreamIn* AudioDumpInterface::openInputStream(uint32_t devices, int *format, uint32_t *channels,
134 inFinal = mFinalInterface->openInputStream(devices, format, channels, sampleRate, status, acoustics);
166 devices, lFormat, lChannels, lRate);
261 uint32_t devices,
266 mSampleRate(sampleRate), mFormat(format), mChannels(channels), mLatency(0), mDevice(devices),
422 uint32_t devices,
427 mSampleRate(sampleRate), mFormat(format), mChannels(channels), mDevice(devices),
    [all...]
  /packages/apps/Gallery2/src/com/android/gallery3d/data/
MtpClient.java 42 * This class helps an application manage a list of connected MTP or PTP devices.
43 * It listens for MTP devices being attached and removed from the USB host bus
60 // List of MTP devices we should not try to open for which we are currently
63 // List of MTP devices we should not try to open.
64 // We add devices to this list if the user canceled a permission request or we were
122 * An interface for being notified when MTP or PTP devices are attached
123 * or removed. In the current implementation, only PTP devices are supported.
187 // don't try to open devices that we have decided to ignore
223 * notifications when MTP or PTP devices are added or removed.
279 // Query the USB manager since devices might have attache
    [all...]
  /external/blktrace/doc/
blktrace.8 5 blktrace \- generate traces of the i/o traffic on block devices
119 Adds the devices found in \fIfile\fR as devices to trace
224 This will trace i/o on the devices \fI/dev/sda\fR and \fI/dev/sdb\fR and save
226 directory, for the two different devices, respectively. This trace
  /hardware/msm7k/libaudio-qdsp5v2/
AudioHardware.cpp 63 uint32_t devices, int *format, uint32_t *channels, uint32_t *sampleRate, status_t *status)
78 status_t rc = out->set(this, devices, format, channels, sampleRate);
103 uint32_t devices, int *format, uint32_t *channels, uint32_t *sampleRate, status_t *status,
175 AudioHardware* hw, uint32_t devices, int *pFormat, uint32_t *pChannels, uint32_t *pRate)
182 mDevices = devices;
  /packages/apps/Phone/src/com/android/phone/
TelephonyCapabilities.java 38 * On GSM devices, we never use short tones.
39 * On CDMA devices, it depends upon the settings.
70 * (On current devices, that state lasts 5 minutes. It prevents data
99 * The procedure may even be different for different devices with the
165 * devices that support this feature.
  /frameworks/base/docs/html/guide/topics/usb/
adk.jd 30 <li><a href="#wait">Wait for and detect connected devices</a></li>
45 <li><a href="#wait-adk">Wait for and detect connected devices</a></li>
108 devices) and the Android-powered device acts as the USB device. Android USB accessories are
109 specifically designed to attach to Android-powered devices and adhere to a simple protocol
110 (Android accessory protocol) that allows them to detect Android-powered devices that support
112 released Android-powered devices are only capable of acting as a USB device and cannot initiate
113 connections with external USB devices. Android Open Accessory support overcomes this limitation
115 devices by allowing the accessory to initiate the connection.</p>
118 hardware and not all devices will support accessory mode. Devices that support accessory mode ca
    [all...]
  /system/core/logcat/
logcat.cpp 250 static void readLogLines(log_device_t* devices)
261 for (dev=devices; dev; dev = dev->next) {
271 for (dev=devices; dev; dev = dev->next) {
278 for (dev=devices; dev; dev = dev->next) {
312 chooseFirst(devices, &dev);
332 chooseFirst(devices, &dev);
460 log_device_t* devices = NULL; local
519 if (devices) {
520 dev = devices;
526 devices = new log_device_t(buf, binary, optarg[0])
    [all...]
  /device/samsung/tuna/audio/
audio_hw.c 485 int devices; member in struct:tuna_audio_device
562 /* Returns true on devices that are toro, false otherwise */
661 int dl1_eq_applicable = adev->devices & (AUDIO_DEVICE_OUT_WIRED_HEADSET |
694 switch(adev->devices & AUDIO_DEVICE_OUT_ALL) {
782 int headphone_on = adev->devices & AUDIO_DEVICE_OUT_WIRED_HEADPHONE;
783 int speaker_on = adev->devices & AUDIO_DEVICE_OUT_SPEAKER;
882 if ((adev->devices & AUDIO_DEVICE_OUT_ALL) == AUDIO_DEVICE_OUT_SPEAKER)
883 adev->devices = AUDIO_DEVICE_OUT_EARPIECE |
886 adev->devices &= ~AUDIO_DEVICE_OUT_SPEAKER;
927 headset_on = adev->devices & AUDIO_DEVICE_OUT_WIRED_HEADSET
    [all...]
  /external/iproute2/testsuite/configs/
all-2.4 133 # Memory Technology Devices (MTD)
149 # Block devices
220 # Appletalk devices
281 # IDE, ATA and ATAPI Block devices
383 # ARCnet devices
473 # Token Ring devices
537 # Character devices
603 # PCMCIA character devices
611 # Multimedia devices
  /frameworks/base/core/java/android/server/
BluetoothA2dpService.java 197 String devices = mBluetoothService.getProperty("Devices", true); local
198 if (devices != null) {
199 String [] paths = devices.split(",");
218 BluetoothDevice[] devices = new BluetoothDevice[mAudioDevices.size()]; local
219 devices = mAudioDevices.keySet().toArray(devices);
220 for (BluetoothDevice device : devices) {
592 pw.println("Cached audio devices:");
  /frameworks/base/docs/html/guide/developing/debugging/
ddms.jd 59 in the DDMS Devices view.</p>
99 <li>In the Devices tab, select the process that you want to see the heap information for.</li>
125 <li>In the Devices tab, select the process that you want to enable allocation tracking
151 <li>In the Devices tab, select the emulator that you want to view the file system for.</li>
168 <li>In the Devices tab, select the process that you want to examine the threads for.</li>
185 <li>Android 1.5 devices are not supported.</li>
186 <li>Android 2.1 and earlier devices must
188 <li>Android 2.2 and later devices do not need an SD card. The trace log files are
194 <li>On the Devices tab, select the process that you want to enable method profiling for.</li>
  /frameworks/base/media/libmedia/
IAudioFlinger.cpp 365 uint32_t devices = pDevices ? *pDevices : 0; local
372 data.writeInt32(devices);
381 devices = reply.readInt32();
382 if (pDevices) *pDevices = devices;
438 uint32_t devices = pDevices ? *pDevices : 0; local
444 data.writeInt32(devices);
451 devices = reply.readInt32();
452 if (pDevices) *pDevices = devices;
835 uint32_t devices = data.readInt32(); local
841 int output = openOutput(&devices,
880 uint32_t devices = data.readInt32(); local
    [all...]
  /frameworks/base/docs/html/guide/topics/graphics/
opengl.jd 63 specification intended for embedded devices. The OpenGL ES 1.0 and 1.1 API specifications have been
177 <p>If your application uses OpenGL features that are not available on all devices, you must include
193 installed on devices that do not support OpenGL ES 2.0.</p>
202 with devices that do not support at least one of your declared compression types. For more
213 <p>One of the basic problems in displaying graphics on Android devices is that their screens can
397 specification. OpenGL ES 2.0 is supported by most Android devices and is recommended for new
399 Android-powered devices that support a given version of OpenGL ES, see the <a
418 investigate other texture compression formats available on your target devices.</p>
420 <p>Beyond the ETC1 format, Android devices have varied support for texture compression based on
422 the the devices you are are targeting to determine what compression types your application shoul
    [all...]
  /external/qemu/
usb-linux.c 11 * Added flexible support for /dev/bus/usb /sys/bus/usb/devices in addition
78 #define USBDBG_DEVOPENED "husb: opened %s/devices\n"
933 * always work. I've seen devices where first config starts
1054 * Use /proc/bus/usb/devices or /dev/bus/usb/devices file to determine
1055 * host's USB devices. This is legacy support since many distributions
1071 snprintf(line, sizeof(line), "%s/devices", usb_host_device_path);
1074 perror("husb: cannot open devices file");
1158 snprintf(filename, PATH_MAX, USBSYSBUS_PATH "/devices/%s/%s", device_name,
1172 * Use /sys/bus/usb/devices/ directory to determine host's US
    [all...]
  /cts/tests/tests/view/src/android/view/cts/
ViewDebugTest.java 67 // debugging should be disabled on production devices
105 // debugging should be disabled on production devices
  /development/pdk/docs/compatibility/
downloads.jd 31 program for Android 2.0 or 2.0.1, and new devices must use Android 2.1.
58 1.5 (known in development as Cupcake). New devices intended to be Android
  /development/samples/ApiDemos/src/com/example/android/apis/app/
ActionBarMechanics.java 47 // Menu items default to never show in the action bar. On most devices this means
49 // On xlarge-screen devices a "More" button will appear in the far right of the
  /docs/source.android.com/src/compatibility/
downloads.md 46 program for Android 2.0 or 2.0.1, and new devices must use Android 2.1.
70 1.5 (known in development as Cupcake). New devices intended to be Android
  /external/bluetooth/bluez/src/
bluetoothd.8.in 15 daemon, which manages all the Bluetooth devices.
42 Default location for link keys of paired devices. The directory
  /external/chromium/third_party/libjingle/source/talk/session/phone/
devicemanager_mac.mm 76 bool GetQTKitVideoDevices(std::vector<Device>* devices) {
100 devices->push_back(Device(name,
  /external/e2fsprogs/doc/
libblkid.txt 5 For cases where a program wants information about multiple devices, or
76 will also free all associated devices and tags:
  /external/kernel-headers/original/linux/raid/
md.h 2 md.h : Multiple Devices driver for Linux
46 * 'md_p.h' holds the 'physical' layout of RAID devices
  /external/qemu/distrib/sdl-1.2.12/src/video/maccommon/
SDL_macwm.c 34 #include <Devices.h>
81 typedef struct recSystemGamma /* storage for system devices and gamma tables */
83 short numDevices; /* number of devices */
131 err = GetGammaTable (hGD, &pTableGammaDevice); /* get a pointer to the devices table */
153 for (i = 0; i < pSysGammaIn->numDevices; i++) /* for all devices */
206 short devCount = 0; /* number of devices attached */
215 devCount++; /* count devices */
281 for (i = 0; i < pSysGammaIn->numDevices; i++) /* for all devices */
  /external/qemu/hw/
watchdog.c 49 /* -watchdog ? lists available devices and exits cleanly. */
65 fprintf(stderr, "Unknown -watchdog device. Supported devices are:\n");

Completed in 1238 milliseconds

<<11121314151617181920>>