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

<<11121314151617181920>>

  /sdk/hierarchyviewer2/libs/hierarchyviewerlib/src/com/android/hierarchyviewerlib/actions/
InspectScreenshotAction.java 22 import com.android.hierarchyviewerlib.device.Window;
66 public void deviceChanged(IDevice device) {
70 public void deviceConnected(IDevice device) {
74 public void deviceDisconnected(IDevice device) {
78 public void focusChanged(IDevice device) {
82 public void selectionChanged(final IDevice device, final Window window) {
85 InspectScreenshotAction.getAction().setEnabled(device != null);
  /external/e2fsprogs/doc/
libblkid.txt 1 libblkid - a library to handle device identification and token extraction
16 needless device scans.
18 The model of the blkid cache is that each device has a number of
27 How to use libblkid? Normally, you either want to find a device with
29 device. To find a device that matches a following attribute, you
40 which holds the resulting device name (if it is found). If the value
46 "UUID=082D-26E3", and get back a device name that it can use.
52 for a particular device. This can be used to determine the filesystem
53 type, or label, or uuid for a particular device
    [all...]
  /external/qemu/distrib/sdl-1.2.12/src/video/svga/
SDL_svgavideo.c 101 static void SVGA_DeleteDevice(SDL_VideoDevice *device)
103 SDL_free(device->hidden);
104 SDL_free(device);
109 SDL_VideoDevice *device; local
112 device = (SDL_VideoDevice *)SDL_malloc(sizeof(SDL_VideoDevice));
113 if ( device ) {
114 SDL_memset(device, 0, (sizeof *device));
115 device->hidden = (struct SDL_PrivateVideoData *)
116 SDL_malloc((sizeof *device->hidden))
    [all...]
  /frameworks/base/core/java/android/bluetooth/
BluetoothHealth.java 35 * <p> How to connect to a health device which is acting in the source role.
41 * <li> Pair with the remote device. This currently needs to be done manually
43 * <li> Connect to a health device using {@link #connectChannelToSource}. Some
60 * Health Profile Source Role - the health device.
65 * Health Profile Sink Role the device talking to the health device.
187 * Connect to a health device which has the {@link #SOURCE_ROLE}.
193 * @param device The remote Bluetooth device.
198 public boolean connectChannelToSource(BluetoothDevice device,
    [all...]
  /sdk/dumpeventlog/src/com/android/dumpeventlog/
DumpEventLog.java 35 * Connects to a device using ddmlib and dumps its event log as long as the device is connected.
76 System.out.println("Usage: dumpeventlog <device s/n> <filepath>");
97 // we can't just ask for the device list right away, as the internal thread getting
111 System.err.println("Timeout getting device list!");
119 for (IDevice device : devices) {
120 if (device.getSerialNumber().equals(args[0])) {
122 grabLogFrom(device, args[1]);
138 private static void grabLogFrom(IDevice device, String filePath) throws IOException,
144 device.runEventLogService(receiver)
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/launch/
ActivityLaunchAction.java 47 * Launches the activity on targeted device
50 * @param device the Android device to perform action on
54 public boolean doLaunchAction(DelayedLaunchInfo info, IDevice device) {
64 String msg = String.format("Starting activity %1$s on device %2$s", mActivity,
65 device);
74 device.executeShellCommand(command, new AMReceiver(info, device, mLaunchController));
92 AdtPlugin.log(e, "No command output when running: '%1$s' on device %2$s", command,
93 device);
    [all...]
AndroidLaunchController.java 86 * Controls the launch of Android application either on a device or on the
120 * List of application waiting to be launched on a device/emulator.<br>
276 * Launches an android app on the device or emulator
327 // device chooser response object.
343 * If == 1, launch the application on this AVD/device.
367 // look for a matching device
399 // a device/avd which target is as close to the manifest as possible (instead of
400 // a device which target is the same as the project's target) and use it as the
429 // a device/AVD for it.
438 boolean hasDevice = false; // if there's 1+ device running, we may force manual mode
886 launchInfo.getProject(), launchInfo.getPackageName(), device); local
1469 IDevice device = client.getDevice(); local
    [all...]
DeviceChooserDialog.java 61 * A dialog that lets the user choose a device to deploy an application.
62 * The user can either choose an exiting running device (including running emulators)
63 * or start a new emulator using an Android Virtual Device configuration that matches
120 IDevice device = (IDevice)element; local
123 return device.isEmulator() ? mEmulatorImage : mDeviceImage;
127 if (device.isEmulator() == false) { // physical device
128 // get the version of the device
129 AndroidVersion deviceVersion = Sdk.getDeviceVersion(device);
138 // the optional API may be missing from the device
160 IDevice device = (IDevice)element; local
    [all...]
  /device/sample/products/
sample_addon.mk 9 device/sample/frameworks/PlatformLibrary/com.example.android.platform_library.xml:system/etc/permissions/com.example.android.platform_library.xml
17 device/sample/sdk_addon/manifest.ini:manifest.ini \
18 device/sample/sdk_addon/hardware.ini:hardware.ini \
19 $(call find-copy-subdir-files,*,device/sample/skins/WVGAMedDpi,skins/WVGAMedDpi)
24 #$(call find-copy-subdir-files,*,device/sample/skins/WVGAMedDpi,skins/WVGAMedDpi)
  /external/bluetooth/bluez/test/
test-oob 7 def create_device_reply(device):
42 device = adapter0.FindDevice(adapter1_address)
43 adapter0.RemoveDevice(device)
48 device = adapter1.FindDevice(adapter0_address)
49 adapter1.RemoveDevice(device)
  /external/llvm/
llvm-device-build.mk 32 # No action. The device target should not have exception enabled since bionic
54 $(LLVM_ROOT_PATH)/device/include \
60 define transform-device-td-to-out
62 @echo "Device TableGen (gen-$(1)): $(LOCAL_MODULE) <= $<"
66 -I $(LLVM_ROOT_PATH)/device/include \
  /packages/apps/Settings/src/com/android/settings/bluetooth/
DeviceProfilesSettings.java 46 * for a particular device, and allows them to be individually connected
57 public static final String EXTRA_DEVICE = "device";
95 BluetoothDevice device; local
97 device = savedInstanceState.getParcelable(EXTRA_DEVICE);
100 device = args.getParcelable(EXTRA_DEVICE);
108 if (device == null) {
109 Log.w(TAG, "Activity started without a remote Bluetooth device");
118 mCachedDevice = deviceManager.findDevice(device);
120 Log.w(TAG, "Device not found, cannot connect to it");
254 BluetoothDevice device = mCachedDevice.getDevice() local
271 final CachedBluetoothDevice device = mCachedDevice; local
329 BluetoothDevice device = mCachedDevice.getDevice(); local
    [all...]
  /sdk/emulator/qtools/tests/
macros.h 4 /* the base address of trace device */
7 /*the register addresses of the trace device */
31 /* write a word to a trace device register */
44 /* dump name and path of threads executed before trace device created */
50 /* dump exec mapping of threads executed before trace device created */
  /sdk/screenshot/src/com/android/screenshot/
Screenshot.java 34 * Connects to a device using ddmlib and dumps its event log as long as the device is connected.
39 boolean device = false;
58 device = true;
60 if (device || serial != null) {
70 if (device || emulator) {
81 // should not be any other device.
117 // we can't just ask for the device list right away, as the internal thread getting
131 System.err.println("Timeout getting device list!");
145 if (emulator || device) {
    [all...]
  /development/pdk/docs/compatibility/
overview.jd 4 <p>The Android compatibility program makes it easy for mobile device
8 Android community, including users, developers, and device manufacturers.</p>
11 for their apps with many devices in users' hands; device manufacturers rely
20 of what developers can expect from a compatible device in terms of APIs and
23 device.</p></li>
25 application runs well on one compatible Android device, it should run well on
26 any other device that is compatible with the same Android platform version.
31 <li><b>Enable device manufacturers to differentiate while being
33 Android relevant to running third-party applications, which allows device
38 device manufacturers. The testing tool (CTS) is free, open source, an
    [all...]
index.jd 10 Developers use to clearly state the device features their apps require. And
20 <h3>Users want a customizable device.</h3>
27 <p>No device manufacturer can hope to write all the software that a person could
36 device, you benefit from the huge pool of apps written for Android, while
41 <p>If you are building a mobile device, you can follow these steps to make
42 sure your device is compatible with Android. For more details about the
45 <p>Building a compatible device is a three-step process:</p>
52 a compatible Android device.</p></li>
59 <p>Once you've built a compatible device, you may wish to include Android
  /external/bluetooth/bluez/tools/
hciconfig.8 22 is the name of a Bluetooth device installed in the system. If
29 is given but no command is given, it prints basic information on device
46 Open and initialize HCI device.
49 Close HCI device.
52 Reset HCI device.
58 Enable authentication (sets device to security mode 3).
64 Enable encryption (sets device to security mode 3).
115 prints class of device. Otherwise, sets class of device to
119 is a 24-bit hex number describing the class of device, as specified in sectio
    [all...]
  /external/skia/src/core/
SkCoreBlitters.h 26 SkRasterBlitter(const SkBitmap& device) : fDevice(device) {}
37 SkShaderBlitter(const SkBitmap& device, const SkPaint& paint);
55 SkA8_Blitter(const SkBitmap& device, const SkPaint& paint);
74 SkA8_Shader_Blitter(const SkBitmap& device, const SkPaint& paint);
95 SkARGB32_Blitter(const SkBitmap& device, const SkPaint& paint);
120 SkARGB32_Opaque_Blitter(const SkBitmap& device, const SkPaint& paint)
121 : INHERITED(device, paint) { SkASSERT(paint.getAlpha() == 0xFF); }
130 SkARGB32_Black_Blitter(const SkBitmap& device, const SkPaint& paint)
131 : INHERITED(device, paint) {
    [all...]
  /frameworks/base/services/java/com/android/server/usb/
UsbService.java 35 * UsbService manages all USB related state, including both host and device support.
36 * Host related events and calls are delegated to UsbHostManager, and device related
74 /* Opens the specified USB device (host mode) */
83 /* returns the currently attached USB accessory (device mode) */
92 /* opens the currently attached USB accessory (device mode) */
101 public void setDevicePackage(UsbDevice device, String packageName) {
103 mSettingsManager.setDevicePackage(device, packageName);
111 public boolean hasDevicePermission(UsbDevice device) {
112 return mSettingsManager.hasPermission(device);
119 public void requestDevicePermission(UsbDevice device, String packageName
    [all...]
  /frameworks/base/core/java/android/server/
BluetoothEventLoop.java 60 // from remote device when Android is in Suspend state.
86 // We always have only 1 device in BONDING state.
91 Log.e(TAG, " There is more than one device in the Bonding State");
203 log ("ClassValue: " + classValue + " for remote device: " + address + " is null");
210 * @param address the MAC address of the new device
217 Log.e(TAG, "ERROR: Remote device properties are null");
227 * @param address the MAC address of the disappeared device
237 * org.bluez.Device.
239 * @param deviceObjectPath the object path for the disconnecting device
244 Log.e(TAG, "onDeviceDisconnectRequested: Address of the remote device in null")
398 BluetoothDevice device = mAdapter.getRemoteDevice(address); local
509 BluetoothDevice device = mAdapter.getRemoteDevice(address); local
770 BluetoothDevice device = mAdapter.getRemoteDevice(address); local
917 BluetoothDevice device = mAdapter.getRemoteDevice(address); local
954 BluetoothDevice device = mAdapter.getRemoteDevice(address); local
1003 BluetoothDevice device = mAdapter.getRemoteDevice(address); local
1017 BluetoothDevice device = mAdapter.getRemoteDevice(address); local
    [all...]
  /hardware/libhardware_legacy/include/hardware_legacy/
AudioPolicyManagerBase.h 67 virtual status_t setDeviceConnectionState(AudioSystem::audio_devices device,
70 virtual AudioSystem::device_connection_state getDeviceConnectionState(AudioSystem::audio_devices device,
150 // device categories used for volume curve management.
166 // default volume curves per strategy and device category. See initializeVolumeCurves()
178 uint32_t device();
191 uint32_t mDevice; // current device this output is routed to
213 uint32_t mDevice; // current device this input is routed to
253 // return appropriate device for streams handled by the specified strategy according to current
255 // if fromCache is true, the device is returned from mDeviceForStrategy[], otherwise it is determined
256 // by current state (device connected, phone state, force use, a2dp output...
    [all...]
  /sdk/ddms/libs/ddmlib/src/com/android/ddmlib/
IDevice.java 25 * A Device. It can be a physical device or an emulator.
37 /** Device change bit mask: {@link DeviceState} change. */
39 /** Device change bit mask: {@link Client} list change. */
41 /** Device change bit mask: build info change. */
52 * The state of a device.
57 ONLINE("device"), //$NON-NLS-1$
69 * @param state the device state.
83 * Returns the serial number of the device.
98 * Returns the state of the device
    [all...]
  /frameworks/base/docs/html/guide/developing/devices/
managing-avds.jd 20 <p>The AVD Manager is an easy to use user interface to manage your AVD (Android Virtual Device)
21 configurations. An AVD is a device configuration for the Android emulator that allows you to
63 also add specific hardware features of the emulated device by clicking the
76 launch an emulator with the AVD by selecting a device and clicking <strong>Start</strong>.</p>
92 <td>Device ram size</td>
94 <td>The amount of physical RAM on the device, in megabytes. Default value is "96".</td>
102 <td>Whether there is a touch screen or not on the device. Default value is "yes".</td>
110 <td>Whether there is a trackball on the device. Default value is "yes".</td>
118 <td>Whether the device has a QWERTY keyboard. Default value is "yes".</td>
126 <td>Whether the device has DPad keys. Default value is "yes".</td
    [all...]
  /sdk/ddms/libs/ddmuilib/src/com/android/ddmuilib/
DevicePanel.java 158 IDevice device = (IDevice)element; local
159 if (device.isEmulator()) {
198 IDevice device = (IDevice)element; local
201 return device.getSerialNumber();
203 return getStateString(device);
205 String version = device.getProperty(IDevice.PROP_BUILD_VERSION);
207 String debuggable = device.getProperty(IDevice.PROP_DEBUGGABLE);
208 if (device.isEmulator()) {
209 String avdName = device.getAvdName();
211 avdName = "?"; // the device is probably not online yet, s
728 IDevice device = null; local
    [all...]
  /cts/tools/host/test/com/android/cts/
DeviceManagerTests.java 20 * Test the device manager.
96 * Test getting device list.
128 * Test the default status of test device.
137 * Test allocating device by the specified ID.
141 TestDevice device; local
150 device = dm.allocateFreeDeviceById("fake device");
156 device = dm.allocateFreeDeviceById(d3SerialNumber);
157 assertEquals(d3SerialNumber, device.getSerialNumber());

Completed in 2022 milliseconds

<<11121314151617181920>>