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

<<21222324252627282930>>

  /system/core/logcat/
logcat.cpp 56 char* device; member in struct:log_device_t
66 device = d;
224 snprintf(buf, sizeof(buf), "--------- beginning of %s\n", dev->device);
582 /* in an emulated device only. it basically looks for androidboot.logcat= */
726 dev->fd = open(dev->device, mode);
728 fprintf(stderr, "Unable to open log device '%s': %s\n",
729 dev->device, strerror(errno));
758 "max entry is %db, max payload is %db\n", dev->device,
  /external/bluetooth/bluez/network/
common.c 207 strncpy(req.device, dev, 16);
208 req.device[15] = '\0';
213 error("Failed to add device %s: %s(%d)",
218 strncpy(dev, req.device, 16);
  /external/qemu/distrib/sdl-1.2.12/src/audio/macrom/
SDL_romaudio.c 63 static void Audio_DeleteDevice(SDL_AudioDevice *device)
65 SDL_free(device->hidden);
66 SDL_free(device);
194 * if audio device isn't locked, mix the next buffer to be queued in
  /external/qemu/distrib/sdl-1.2.12/src/audio/mint/
SDL_mintaudio_xbios.c 122 static void Audio_DeleteDevice(SDL_AudioDevice *device)
124 SDL_free(device->hidden);
125 SDL_free(device);
  /external/qemu/distrib/sdl-1.2.12/src/video/ipod/
SDL_ipodvideo.c 103 static void iPod_DeleteDevice (SDL_VideoDevice *device)
105 free (device->hidden);
106 free (device);
  /external/skia/include/core/
SkCanvas.h 39 A Canvas encapsulates all of the state about drawing into a device (bitmap).
40 This includes a reference to the device itself, and a stack of matrix/clip
46 While the Canvas holds the state of the drawing device, the state (style)
59 /** Construct a canvas with the specified device to draw into.
60 @param device Specifies a device for the canvas to draw into. The
61 device may be null.
63 explicit SkCanvas(SkDevice* device = NULL);
80 /** Return the canvas' device object, which may be null. The device hold
    [all...]
  /external/skia/src/core/
SkSpriteBlitter_ARGB32.cpp 102 virtual void setup(const SkBitmap& device, int left, int top,
104 this->INHERITED::setup(device, left, top, paint);
106 int width = device.width();
  /external/srec/srec/cfront/
ca_wave.c 48 hWave->data.device.file.typ = type;
178 hWave->data.device.ext.op = WAVE_DEVICE_INPUT;
250 ASSERT(hWave->data.device.ext.op == WAVE_DEVICE_INPUT); /* because I don't have output yet! */
  /packages/apps/Settings/src/com/android/settings/bluetooth/
BluetoothPairingDialog.java 43 * for pairing with a remote Bluetooth device. It is an activity that appears as a dialog.
69 BluetoothDevice device = intent.getParcelableExtra(BluetoothDevice.EXTRA_DEVICE);
70 if (device == null || device.equals(mDevice)) {
  /bootable/diskinstaller/editdisklbl/
editdisklbl.c 103 /* make sure we don't screw up and write to a block device on the host
192 const char *dest_fn = dinfo->device;
  /bootable/recovery/applypatch/
imgdiff_test.sh 6 # recovery images. It then applies the patches on the device (or
11 # set to 0 to use a device instead
14 # where on the device to do all the patching.
32 echo "waiting to connect to device"
33 $ADB wait-for-device
35 # run a command on the device; exit with the exit status of the device
  /development/cmds/monkey/src/com/android/commands/monkey/
MonkeySourceScript.java 120 * @param filename The filename of the script (on the device).
223 int device = Integer.parseInt(args[6]); local
227 metaState, device, scancode);
251 int device = Integer.parseInt(args[10]); local
259 y, pressure, size, metaState, xPrecision, yPrecision, device, edgeFlags);
  /development/tools/monkeyrunner/src/com/android/monkeyrunner/
MonkeyRunner.java 46 * device. MonkeyRunner provides some useful helper functions to control the
47 * device as well as various other methods to help script tests.
100 * Initialize an adb session with a device connected to the host
105 boolean device = false;
115 // we can't just ask for the device list right away, as the internal thread getting
129 System.err.println("Timeout getting device list!");
143 if (emulator || device) {
145 // this test works because emulator and device can't both be true at the same
154 printAndExit("Error: more than one device connected!",true /* terminate */);
169 printAndExit("Error: more than one emulator or device available!"
    [all...]
  /external/blktrace/
blktrace_api.h 103 __u32 device; /* device identifier (dev_t) */ member in struct:blk_io_trace
blkparse.c 333 fprintf(stderr, "Out of memory, CPU info for device %s (%d)\n",
376 fprintf(stderr, "Out of memory, device %s (%d)\n", name, size);
610 MAJOR(bit->device), MINOR(bit->device),
812 else if (t->bit->device < __t->bit->device)
814 else if (t->bit->device > __t->bit->device)
856 static struct trace *trace_rb_find(dev_t device, unsigned long sequence,
867 if (device < __t->bit->device
    [all...]
  /external/e2fsprogs/po/
at-expand.pl 98 $msg =~ s/\@v/device/g;
  /external/gtest/test/
Android.mk 54 # generate the right make target (host vs device). $(4) is used in the
56 # device builds. Finally $(4) is used to pickup the right set of
  /external/libpcap/
pcap-pf.c 296 pcap_open_live(const char *device, int snaplen, int promisc, int to_ms,
323 * the device in question) can be indicated at open
331 p->fd = pfopen(device, O_RDWR);
333 p->fd = pfopen(device, O_RDONLY);
337 device, pcap_strerror(errno));
  /external/srec/srec/include/
sample.h 40 /* The known device (op) types here
194 gen_device_info device; member in struct:__anon5891
  /external/webkit/WebCore/platform/graphics/chromium/
TransparencyWin.cpp 71 : device(d)
74 SkDevice* device; member in struct:WebCore::__anon6500::DeviceInfo
82 devices.append(DeviceInfo(iter.device(), iter.x(), iter.y()));
92 const SkBitmap& srcBmp = devices[i].device->accessBitmap(false);
  /frameworks/base/libs/audioflinger/
A2dpAudioInterface.h 80 status_t set(uint32_t device,
  /system/vold/
Volume.cpp 236 char device[256]; local
249 sscanf(line, "%255s %255s %255s\n", device, mount_path, rest);
289 SLOGE("Failed to get device nodes (%s)\n", strerror(errno));
317 * Mount the device on our internal staging mountpoint so we can
326 SLOGI("Device %s, target %s mounted @ /mnt/secure/staging", devicePath, getMountpoint());
534 * Finally, unmount the actual block device from the staging dir
585 dinfo.device = strdup(deviceNode);
608 free(dinfo.device);
  /cts/tools/host/src/com/android/cts/
Test.java 298 * Kill the device process.
316 * Run the test over device given.
318 * @param device the device to run the test.
320 public void run(final TestDevice device) throws DeviceDisconnectedException,
334 mDevice = device;
  /dalvik/dalvikvm/
Android.mk 31 # Build for the target (device).
  /device/htc/dream/
AndroidBoard.mk 60 include device/htc/dream-sapphire/AndroidBoardCommon.mk

Completed in 4054 milliseconds

<<21222324252627282930>>