HomeSort by relevance Sort by last modified time
    Searched refs:device (Results 176 - 200 of 782) sorted by null

1 2 3 4 5 6 78 91011>>

  /sdk/ddms/libs/ddmlib/src/com/android/ddmlib/
DebugPortManager.java 19 import com.android.ddmlib.Device;
29 * port provider on a per-<code>Client</code> basis, depending on the device/emulator they are
44 * specified {@link Device}.
45 * @param device The device the application is running on.
51 public int getPort(IDevice device, String appName);
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/launch/
ActivityLaunchAction.java 44 * Launches the activity on targeted device
47 * @param device the Android device to perform action on
51 public boolean doLaunchAction(DelayedLaunchInfo info, IDevice device) {
53 String msg = String.format("Starting activity %1$s on device ", mActivity,
54 device);
63 device.executeShellCommand("am start" //$NON-NLS-1$
71 new AMReceiver(info, device, mLaunchController));
IAndroidLaunchAction.java 31 * @param device the Android device to perform action on
35 boolean doLaunchAction(DelayedLaunchInfo info, IDevice device);
  /sdk/hierarchyviewer/src/com/android/hierarchyviewer/device/
Window.java 17 package com.android.hierarchyviewer.device;
  /sdk/hierarchyviewer/src/com/android/hierarchyviewer/scene/
ProfilesLoader.java 20 import com.android.hierarchyviewer.device.Window;
21 import com.android.hierarchyviewer.device.DeviceBridge;
32 public static double[] loadProfiles(IDevice device, Window window, String params) {
40 DeviceBridge.getDeviceLocalPort(device)));
  /external/qemu/distrib/sdl-1.2.12/src/video/xbios/
SDL_xbios.c 137 static void XBIOS_DeleteDevice(SDL_VideoDevice *device)
139 SDL_free(device->hidden);
140 SDL_free(device);
145 SDL_VideoDevice *device; local
148 device = (SDL_VideoDevice *)SDL_malloc(sizeof(SDL_VideoDevice));
149 if ( device ) {
150 SDL_memset(device, 0, (sizeof *device));
151 device->hidden = (struct SDL_PrivateVideoData *)
152 SDL_malloc((sizeof *device->hidden))
    [all...]
  /hardware/libhardware/include/hardware/
overlay.h 36 * Name of the overlay device to open
142 * Every device data structure must begin with hw_device_t
223 /** convenience API for opening and closing a device */
226 struct overlay_control_device_t** device) {
228 OVERLAY_HARDWARE_CONTROL, (struct hw_device_t**)device);
231 static inline int overlay_control_close(struct overlay_control_device_t* device) {
232 return device->common.close(&device->common);
236 struct overlay_data_device_t** device) {
238 OVERLAY_HARDWARE_DATA, (struct hw_device_t**)device);
    [all...]
copybit.h 34 * Name of the graphics device to open
143 * Every device data structure must begin with hw_device_t
206 /** convenience API for opening and closing a device */
209 struct copybit_device_t** device) {
211 COPYBIT_HARDWARE_COPYBIT0, (struct hw_device_t**)device);
214 static inline int copybit_close(struct copybit_device_t* device) {
215 return device->common.close(&device->common);
  /external/webkit/WebKit/android/wds/client/
main.cpp 30 #include "Device.h"
74 Device::DeviceType type = Device::NONE;
80 // Parse the options, look for -e or -d to choose a device.
87 type = Device::EMULATOR;
90 type = Device::DEVICE;
110 // No device specified and more than one connected, bail
111 if (type == Device::NONE && devices.size() > 1) {
112 LOGE("More than one device/emulator, please specify with -e or -d")
120 const Device* device = NULL; local
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/configuration/
ConfigManagerDialog.java 86 public DeviceSelection(DeviceType type, LayoutDevice device,
89 this.device = device;
94 final LayoutDevice device; field in class:ConfigManagerDialog.DeviceSelection
135 LayoutDevice device = (LayoutDevice)parentElement; local
136 return device.getConfigs().entrySet().toArray();
157 LayoutDevice device = (LayoutDevice)element; local
158 return device.getConfigs().size() > 0;
245 newShell.setText("Device Configurations");
288 if (selection.device != null)
475 LayoutDevice device = null; local
    [all...]
  /external/bluetooth/bluez/network/
manager.c 39 #include "device.h"
188 static int network_probe(struct btd_device *device, GSList *uuids, uint16_t id)
190 struct btd_adapter *adapter = device_get_adapter(device);
191 const gchar *path = device_get_path(device);
197 device_get_address(device, &dst);
199 return connection_register(device, path, &src, &dst, id);
202 static void network_remove(struct btd_device *device, uint16_t id)
204 const gchar *path = device_get_path(device);
211 static int panu_probe(struct btd_device *device, GSList *uuids)
213 return network_probe(device, uuids, BNEP_SVC_PANU)
    [all...]
  /external/qemu/distrib/sdl-1.2.12/src/video/x11/
SDL_x11video.c 90 static void X11_DeleteDevice(SDL_VideoDevice *device)
92 if ( device ) {
93 if ( device->hidden ) {
94 SDL_free(device->hidden);
96 if ( device->gl_data ) {
97 SDL_free(device->gl_data);
99 SDL_free(device);
106 SDL_VideoDevice *device = NULL; local
110 device = (SDL_VideoDevice *)SDL_malloc(sizeof(SDL_VideoDevice));
111 if ( device ) {
    [all...]
  /device/htc/passion-common/
passion.mk 20 DEVICE_PACKAGE_OVERLAYS := device/htc/passion-common/overlay
34 device/htc/passion-common/media_profiles.xml:system/etc/media_profiles.xml
48 device/htc/passion-common/mahimahi-keypad.kl:system/usr/keylayout/mahimahi-keypad.kl \
49 device/htc/passion-common/h2w_headset.kl:system/usr/keylayout/h2w_headset.kl \
50 device/htc/passion-common/vold.fstab:system/etc/vold.fstab
54 device/htc/passion-common/bcm4329.ko:system/lib/modules/bcm4329.ko
57 LOCAL_KERNEL := device/htc/passion-common/kernel
68 $(call inherit-product, device/htc/passion-common/media_a1026.mk)
71 $(call inherit-product, device/htc/common/common.mk)
  /external/e2fsprogs/lib/ext2fs/
finddev.c 2 * finddev.c -- this routine attempts to find a particular device in
77 static int scan_dir(char *dirname, dev_t device, struct dir_list **list,
102 if (S_ISBLK(st.st_mode) && st.st_rdev == device) {
121 * This function finds the pathname to a block device with a given
122 * device number. It returns a pointer to allocated memory to the
125 char *ext2fs_find_block_device(dev_t device)
144 scan_dir(current->name, device, &new_list, &ret_path);
169 dev_t device; local
178 device = strtoul(argv[1], &tmp, 0);
180 fprintf(stderr, errmsg, "device number", argv[1])
    [all...]
  /external/bluetooth/bluez/audio/
gateway.c 48 #include "device.h"
122 struct audio_device *device);
124 int gateway_close(struct audio_device *device);
387 static void process_ring(struct audio_device *device, GIOChannel *chan,
396 rfcomm_stop_watch(device);
412 g_dbus_emit_signal(device->conn, device->path,
416 device->gateway->is_dialing = TRUE;
422 rfcomm_start_watch(device);
426 struct audio_device *device)
712 struct audio_device *device = data; local
811 struct audio_device *device = data; local
900 struct audio_device *device = data; local
939 struct audio_device *device = data; local
975 struct audio_device *device = data; local
    [all...]
device.h 74 struct btd_device *device,
78 void audio_device_unregister(struct audio_device *device);
  /external/qemu/distrib/sdl-1.2.12/src/video/gem/
SDL_gemvideo.c 122 static void GEM_DeleteDevice(SDL_VideoDevice *device)
124 SDL_free(device->hidden);
125 SDL_free(device);
130 SDL_VideoDevice *device; local
135 device = (SDL_VideoDevice *)SDL_malloc(sizeof(SDL_VideoDevice));
136 if ( device ) {
137 SDL_memset(device, 0, (sizeof *device));
138 device->hidden = (struct SDL_PrivateVideoData *)
139 SDL_malloc((sizeof *device->hidden))
    [all...]
  /hardware/libhardware/modules/gralloc/
gralloc.cpp 43 alloc_device_t device; member in struct:gralloc_context_t
53 hw_device_t** device);
56 hw_device_t** device);
286 hw_device_t** device)
297 dev->device.common.tag = HARDWARE_DEVICE_TAG;
298 dev->device.common.version = 0;
299 dev->device.common.module = const_cast<hw_module_t*>(module);
300 dev->device.common.close = gralloc_close;
302 dev->device.alloc = gralloc_alloc;
303 dev->device.free = gralloc_free
    [all...]
  /hardware/broadcom/wlan/bcm4329/src/bcmsdio/sys/
bcmsdh_linux.c 69 struct device *dev; /* platform device handle */
71 struct pci_dev *dev; /* pci device handle */
89 * Checks to see if vendor and device IDs match a supported SDIO Host Controller.
92 bcmsdh_chipmatch(uint16 vendor, uint16 device)
102 if (device == BCM27XX_SDIOH_ID && vendor == VENDOR_BROADCOM) {
106 if (device == SDIOH_FPGA_ID && vendor == VENDOR_BROADCOM) {
110 if (device == PCIXX21_SDIOH_ID && vendor == VENDOR_TI) {
113 if (device == PCIXX21_SDIOH0_ID && vendor == VENDOR_TI) {
117 if (device == R5C822_SDIOH_ID && vendor == VENDOR_RICOH)
    [all...]
  /hardware/msm7k/libgralloc-qsd8k/
framebuffer.cpp 57 framebuffer_device_t device; member in struct:fb_context_t
365 hw_device_t** device)
379 dev->device.common.tag = HARDWARE_DEVICE_TAG;
380 dev->device.common.version = 0;
381 dev->device.common.module = const_cast<hw_module_t*>(module);
382 dev->device.common.close = fb_close;
383 dev->device.setSwapInterval = fb_setSwapInterval;
384 dev->device.post = fb_post;
385 dev->device.setUpdateRect = 0;
386 dev->device.compositionComplete = fb_compositionComplete
    [all...]
  /external/grub/stage2/
disk_io.c 31 # include <device.h>
50 /* TFTP should come first because others don't handle net device. */
931 /* XX used for device completion in 'set_device' and 'print_completions' */
943 set_device (char *device)
946 /* In Stage 1.5, the first 4 bytes of FILENAME has a device number. */
947 unsigned long dev = *((unsigned long *) device);
960 return device + sizeof (unsigned long);
972 if (*device == '(' && !*(device + 1))
974 return device + 1
    [all...]
  /external/qemu/distrib/sdl-1.2.12/src/video/windib/
SDL_dibvideo.c 113 static void DIB_DeleteDevice(SDL_VideoDevice *device)
115 if ( device ) {
116 if ( device->hidden ) {
117 SDL_free(device->hidden);
119 if ( device->gl_data ) {
120 SDL_free(device->gl_data);
122 SDL_free(device);
128 SDL_VideoDevice *device; local
131 device = (SDL_VideoDevice *)SDL_malloc(sizeof(SDL_VideoDevice));
132 if ( device ) {
    [all...]
  /development/tools/hosttestlib/src/com/android/hosttest/
DeviceTestSuite.java 26 * Helper JUnit test suite that stores reference to an Android device and test data.
50 * Overrides parent method to pass in device and test app path to included test
79 public void setDevice(IDevice device) {
80 mDevice = device;
  /device/htc/passion/
passion.mk 25 device/htc/passion/init.mahimahi.rc:root/init.mahimahi.rc
38 # The OpenGL ES API level that is natively supported by this device.
43 # This is a high density device with more memory, so larger vm heaps for it.
52 $(call inherit-product, device/htc/passion-common/passion.mk)
  /external/bluetooth/bluez/compat/
sdp.h 34 int bnep_sdp_register(bdaddr_t *device, uint16_t role);
38 int dun_sdp_register(bdaddr_t *device, uint8_t channel, int type);

Completed in 750 milliseconds

1 2 3 4 5 6 78 91011>>