HomeSort by relevance Sort by last modified time
    Searched full:devices (Results 326 - 350 of 6373) sorted by null

<<11121314151617181920>>

  /frameworks/base/docs/html/guide/webapps/
best-practices.jd 31 <p>Developing web pages and web applications for mobile devices presents a different set of
35 devices.</p>
39 <li>Redirect mobile devices to a dedicated mobile version of your web site
44 devices. If necessary, you can also identify the specific operating system in the User Agent string
46 <p class="note"><strong>Note:</strong> Large screen Android-powered devices that should be served
54 <li>Use a valid markup DOCTYPE that's appropriate for mobile devices
57 ensures specific markup for your web site that works best on mobile devices. For instance, it does
58 not allow HTML frames or nested tables, which perform poorly on mobile devices. Along with the
83 <p>For more information about how to use viewport meta data for Android-powered devices, read <a
89 <p>Because mobile devices typically have a connection speed far slower than a deskto
    [all...]
  /device/samsung/manta/power/
power_manta.c 35 #define BOOSTPULSE_PATH "/sys/devices/system/cpu/cpufreq/interactive/boostpulse"
36 #define BOOST_PATH "/sys/devices/system/cpu/cpufreq/interactive/boost"
37 #define CPU_MAX_FREQ_PATH "/sys/devices/system/cpu/cpu0/cpufreq/scaling_max_freq"
84 const char dir[] = "/sys/devices/platform/s3c2440-i2c.3/i2c-3/3-004a/input";
122 sysfs_write("/sys/devices/system/cpu/cpufreq/interactive/timer_rate",
124 sysfs_write("/sys/devices/system/cpu/cpufreq/interactive/timer_slack",
126 sysfs_write("/sys/devices/system/cpu/cpufreq/interactive/min_sample_time",
128 sysfs_write("/sys/devices/system/cpu/cpufreq/interactive/hispeed_freq",
130 sysfs_write("/sys/devices/system/cpu/cpufreq/interactive/go_hispeed_load",
132 sysfs_write("/sys/devices/system/cpu/cpufreq/interactive/target_loads", "70 1200000:70 1300000:75 1400000:80 1500000:99")
    [all...]
  /docs/source.android.com/src/devices/tech/input/
input-device-configuration-files.jd 20 configuration properties that affect the behavior of input devices.</p>
24 built-in embedded devices, particularly touch screens, almost always
37 <p>Certain classes of input devices are more ambiguous. For example, multi-touch
40 uses of these devices are quite different and cannot always be determined
42 pressure and size information reported by touch devices. Hence touch devices,
52 <li><code>/data/system/devices/idc/Vendor_XXXX_Product_XXXX_Version_XXXX.idc</code></li>
53 <li><code>/data/system/devices/idc/Vendor_XXXX_Product_XXXX.idc</code></li>
54 <li><code>/data/system/devices/idc/DEVICE_NAME.idc</code></li>
109 <p>If the value is not specified, the default value is <code>0</code> for all devices on th
    [all...]
migration-guide.jd 38 function input devices. These files should simple contain a line to set
40 <p>A good way to ensure that all built-in input devices are appropriately configured
41 is to run <a href="dumpsys.html">Dumpsys</a> and look for devices that
49 protocol "B". We also support digitizer tablets and stylus-based touch devices.</p>
54 <p>Refer to <a href="touch-devices.html">Touch Devices</a> for more details about
  /external/chromium_org/chrome/test/chromedriver/chrome/
device_manager.cc 162 std::vector<std::string> devices; local
163 Status status = adb_->GetDevices(&devices);
167 if (devices.empty())
168 return Status(kUnknownError, "There are no devices online");
171 status = Status(kUnknownError, "All devices are in use (" +
172 base::IntToString(devices.size()) + " online)");
174 for (iter = devices.begin(); iter != devices.end(); iter++) {
186 std::vector<std::string> devices; local
187 Status status = adb_->GetDevices(&devices);
    [all...]
  /external/chromium_org/chrome/browser/media/
media_capture_devices_dispatcher.cc 82 // Finds a device in |devices| that has |device_id|, or NULL if not found.
84 const content::MediaStreamDevices& devices,
86 content::MediaStreamDevices::const_iterator iter = devices.begin();
87 for (; iter != devices.end(); ++iter) {
153 // Helper to get list of media stream devices for desktop capture in |devices|.
157 content::MediaStreamDevices& devices,
167 devices.push_back(content::MediaStreamDevice(
171 devices.push_back(content::MediaStreamDevice(
474 content::MediaStreamDevices devices; local
543 content::MediaStreamDevices devices; local
654 content::MediaStreamDevices devices; local
731 content::MediaStreamDevices devices; local
1001 MediaStreamDevices devices = GetAudioCaptureDevices(); local
1007 MediaStreamDevices devices = GetVideoCaptureDevices(); local
    [all...]
  /development/samples/ControllerSample/src/com/example/inputmanagercompat/
InputManagerCompat.java 35 * Gets the ids of all input devices in the system.
43 * input devices are added, removed or changed.
62 * devices. If you don't call them, your callback will never be called
77 * devices. You can call this during onPause in your activity, although you
79 * don't care about being notified of new input devices)
85 * devices. You can call this during onResume in your activity, although you
  /development/tools/labpretest/
README 13 and can also be used to verify that lab infrastructure is ready for devices.
14 The idea is to run this script at the same time for multiple devices, typically
15 I would connect 8 devices to a host and run this script in 8 separate shell
23 have multiple devices attached use the -d <device_id> parameter to target a
24 specific devices. Additional parameters are -i for how many cycles and -m for
28 Adding support for new devices or from scratch:
  /docs/source.android.com/src/devices/tech/security/
enhancements50.jd 9 <li><strong>Encrypted by default.</strong> On devices that ship with L
11 protection of data on lost or stolen devices. Devices that
24 more flexibility for unlocking devices. For example, trustlets can allow
25 devices to be unlocked automatically when close to another trusted device (via
54 Android Open Source Project. To improve security, some devices with earlier
  /external/chromium_org/chrome/browser/search/
hotword_service_factory.cc 78 const content::MediaStreamDevices& devices) {
79 microphone_available_ = !devices.empty();
84 content::MediaStreamDevices devices = local
87 // If the monitor had not previously been started, there may be 0 devices
89 // availability state now. Either the number of devices will be correct or
92 OnUpdateAudioDevices(devices);
  /external/chromium_org/chrome/test/chromedriver/test/
test_environment.py 99 devices = android_commands.GetAttachedDevices()
100 if not devices:
102 elif len(devices) > 1:
103 logging.warning('Multiple devices attached. Using %s.' % devices[0])
104 self._device = device_utils.DeviceUtils(devices[0])
  /external/chromium_org/content/common/media/
media_stream_messages.h 79 // The browser has enumerated devices. If no devices are found
99 // Response to enumerate devices request.
124 // Request to enumerate devices.
129 // Request to enumerate devices.
137 // Request to stop enumerating devices.
  /external/chromium_org/device/bluetooth/
bluetooth_adapter.cc 53 DeviceList devices; local
56 devices.push_back(const_cast<BluetoothDevice *>(*i));
58 return devices;
62 ConstDeviceList devices; local
66 devices.push_back(iter->second);
68 return devices;
  /external/chromium_org/device/serial/
serial_service_unittest.cc 21 mojo::Array<serial::DeviceInfoPtr> devices(1);
22 devices[0] = serial::DeviceInfo::New();
23 devices[0]->path = "device";
24 return devices.Pass();
45 void StoreDevices(mojo::Array<serial::DeviceInfoPtr> devices) {
46 devices_ = devices.Pass();
serial_device_enumerator_mac.cc 39 mojo::Array<serial::DeviceInfoPtr> devices(0);
52 devices.push_back(info.Pass());
57 return devices.Pass();
  /external/chromium_org/ppapi/examples/enumerate_devices/
enumerate_devices.cc 58 std::vector<pp::DeviceRef_Dev>& devices);
86 std::vector<pp::DeviceRef_Dev> devices; local
88 this, video_capture_, &devices);
89 EnumerateDevicesFinished(result, devices);
96 std::vector<pp::DeviceRef_Dev>& devices) {
100 devices_.swap(devices);
  /external/chromium_org/third_party/libjingle/source/talk/media/devices/
linuxdeviceinfo.cc 28 #include "talk/media/devices/deviceinfo.h"
30 #include "talk/media/devices/libudevsymboltable.h"
114 udev_list_entry* devices = local
117 if (!devices) {
122 // Macro that expands to a for-loop over the devices.
123 for (dev_list_entry = devices; dev_list_entry != NULL;
v4llookup.cc 5 * V4LLookup provides basic functionality to work with V2L2 devices in Linux
9 #include "talk/media/devices/v4llookup.h"
28 // check device major/minor numbers are in the range for video devices.
  /external/chromium_org/tools/android/
mempressure.py 90 devices = android_commands.GetAttachedDevices()
91 if not devices:
93 elif len(devices) > 1:
94 logging.warning('Multiple devices attached. Using %s.' % devices[0])
95 device = device_utils.DeviceUtils(devices[0])
  /system/core/rootdir/
ueventd.rc 91 /sys/devices/platform/trusty.* trusty_version 0440 root log
92 /sys/devices/virtual/input/input* enable 0660 root input
93 /sys/devices/virtual/input/input* poll_delay 0660 root input
94 /sys/devices/virtual/usb_composite/* enable 0664 root system
95 /sys/devices/system/cpu/cpu* cpufreq/scaling_max_freq 0664 system system
96 /sys/devices/system/cpu/cpu* cpufreq/scaling_min_freq 0664 system system
  /device/moto/shamu/sepolicy/
file_contexts 18 # Audio DSP devices
31 # Mdm_Helper devices
51 # tee devices
69 # Radio/modem devices
92 # Qualcomm MSM Audio devices
99 # Qualcomm MSM Interface (QMI) devices
142 /sys/devices/virtual/android_usb/android0/f_rmnet_smd_sdio/transport -- u:object_r:sysfs_rmnet:s0
145 /sys/devices/virtual/smdpkt/smdcntl([0-9])+/open_timeout u:object_r:sysfs_smdcntl_open_timeout:s0
149 /sys/devices/system/cpu/cpu0/rq-stats(/.*)? u:object_r:sysfs_rqstats:s0
153 /sys/devices/msm_hsic_host/host_ready u:object_r:sysfs_msm_hsic_host:s
    [all...]
  /external/chromium_org/base/system_monitor/
system_monitor.h 21 // Type of devices whose change need to be monitored, such as add/remove.
25 DEVTYPE_UNKNOWN, // Other devices.
38 // Notification that the devices connected to the system have changed.
  /external/chromium_org/chrome/browser/local_discovery/
cloud_print_printer_list.cc 35 std::vector<CloudDeviceListDelegate::Device> devices; local
48 devices.push_back(printer_details);
51 delegate_->OnDeviceListReady(devices);
  /external/chromium_org/chrome/browser/resources/options/chromeos/
pointer_overlay.js 16 // devices are discovered or removed.
49 * message is displayed in the main settings page if no pointer devices are
55 var noPointersLabel = $('no-pointing-devices');
  /external/chromium_org/ppapi/api/dev/
ppb_device_ref_dev.idl 23 * @param[in] device_count How many devices in the array.
24 * @param[in] devices An array of <code>PPB_DeviceRef_Dev</code>. Please note
30 [in, size_is(device_count)] PP_Resource[] devices);

Completed in 957 milliseconds

<<11121314151617181920>>