HomeSort by relevance Sort by last modified time
    Searched refs:Device (Results 101 - 125 of 202) sorted by null

1 2 3 45 6 7 8 9

  /packages/apps/Email/emailcommon/src/com/android/emailcommon/
Device.java 33 public class Device {
37 * EAS requires a unique device id, so that sync is possible from a variety of different
38 * devices (e.g. the syncKey is specific to a device) If we're on an emulator or some other
39 * device that doesn't provide one, we can create it as android<n> where <n> is system time.
40 * This would work on a real device as well, but it would be better to use the "real" id if
63 // It's very bad if we read a null device id; let's delete that file
93 * @return Device's unique ID if available. null if the device has no unique ID.
  /external/chromium_org/chrome/browser/extensions/api/bluetooth/
bluetooth_event_router.cc 20 #include "device/bluetooth/bluetooth_adapter.h"
21 #include "device/bluetooth/bluetooth_adapter_factory.h"
22 #include "device/bluetooth/bluetooth_device.h"
23 #include "device/bluetooth/bluetooth_profile.h"
24 #include "device/bluetooth/bluetooth_socket.h"
60 device::BluetoothAdapterFactory::IsBluetoothAdapterAvailable();
64 const device::BluetoothAdapterFactory::AdapterCallback& callback) {
66 callback.Run(scoped_refptr<device::BluetoothAdapter>(adapter_));
70 device::BluetoothAdapterFactory::GetAdapter(callback);
85 scoped_refptr<device::BluetoothSocket> socket)
    [all...]
  /external/chromium_org/third_party/libjingle/source/talk/media/base/
filemediaengine.h 99 virtual bool SetSoundDevices(const Device* in_dev, const Device* out_dev) {
102 virtual bool SetVideoCaptureDevice(const Device* cam_device) { return true; }
hybridvideoengine.h 43 struct Device;
241 bool SetCaptureDevice(const Device* device) {
242 return video2_.SetCaptureDevice(device);
  /external/chromium_org/third_party/libjingle/source/talk/media/webrtc/
webrtcvideocapturer_unittest.cc 74 EXPECT_FALSE(capturer_->Init(cricket::Device("bad-name", "bad-id")));
79 EXPECT_TRUE(capturer_->Init(cricket::Device(kTestDeviceName, kTestDeviceId)));
95 EXPECT_TRUE(capturer_->Init(cricket::Device(kTestDeviceName, kTestDeviceId)));
webrtcvoiceengine.h 126 bool SetDevices(const Device* in_device, const Device* out_device);
206 // Given the device type, name, and id, find device id. Return true and
239 // A secondary instance, for playing out soundclips (on the 'ring' device).
243 // The external audio device manager
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/gle2/
RenderPreviewList.java 25 import com.android.sdklib.devices.Device;
88 void load(List<Device> deviceList) throws IOException {
115 void load(File file, List<Device> deviceList) throws IOException {
166 description.device != null ? description.device : chooserConfig.getDevice(),
  /sdk/eclipse/plugins/com.android.ide.eclipse.tests/unittests/com/android/ide/eclipse/adt/internal/editors/layout/configuration/
ConfigurationTest.java 24 import com.android.sdklib.devices.Device;
55 List<Device> devices = deviceManager.getDevices(DeviceManager.DEFAULT_DEVICES);
115 List<Device> devices = deviceManager.getDevices(DeviceManager.DEFAULT_DEVICES);
  /external/chromium_org/chrome/browser/resources/chromeos/
image_burner.js 23 cssState: 'device-detected-none',
26 cssState: 'device-detected-usb warning',
29 cssState: 'device-detected-sd warning',
32 cssState: 'device-detected-mul warning',
114 * @param {Array} devices Array of device information.
120 // If a device type is not specified for some reason, we should
121 // default to display a USB device.
132 * Returns true if the device is in initial state.
133 * @return {boolean} True if the device is in initial state else false.
143 * Returns true if device state matches the given state name
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/configuration/
Configuration.java 51 import com.android.sdklib.devices.Device;
65 * A {@linkplain Configuration} is a selection of device, orientation, theme,
71 /** The {@link Device} in change flags or override flags */
129 /** The device to render with */
131 private Device mDevice;
133 /** The device state */
268 * Returns the chosen device.
270 * @return the chosen device
273 public Device getDevice() {
278 * Returns the chosen device stat
549 Device device = getDevice(); local
597 Device device = getDevice(); local
659 Device device = getDevice(); local
1021 Device device = getDevice(); local
    [all...]
ConfigurationDescription.java 42 import com.android.sdklib.devices.Device;
63 private static final String ATTR_DEVICE = "device"; //$NON-NLS-1$
71 * device to render the current layout with
94 /** The device */
95 public Device device; field in class:ConfigurationDescription
97 /** The device state */
153 description.device = configuration.getDevice();
172 @NonNull List<Device> deviceList) {
222 for (Device d : deviceList)
    [all...]
OrientationMenuAction.java 23 import com.android.sdklib.devices.Device;
64 Device device = configuration.getDevice(); local
66 if (device != null) {
67 List<State> states = device.getAllStates();
ConfigurationChooser.java 70 import com.android.sdklib.devices.Device;
135 private List<Device> mDeviceList = Collections.emptyList();
161 /** Dropdown for device states */
382 * @return a list of {@link Device} objects
385 public List<Device> getDeviceList() {
417 * Returns the current device string, or null if no device is selected
419 * @return the device name, or null
423 Device device = mConfiguration.getDevice() local
1394 Device device = (Device) mDeviceCombo.getData(); local
    [all...]
  /external/chromium_org/chrome/browser/extensions/api/sessions/
sessions_api.cc 329 scoped_ptr<api::sessions::Device> SessionsGetDevicesFunction::CreateDeviceModel(
337 scoped_ptr<api::sessions::Device> device_struct(new api::sessions::Device);
358 std::vector<linked_ptr<api::sessions::Device> >());
367 std::vector<linked_ptr<api::sessions::Device> >());
378 std::vector<linked_ptr<api::sessions::Device> > result;
  /external/chromium_org/build/android/buildbot/
bb_device_status_check.py 35 """Gathers info on a device via various adb calls.
38 serial: The serial of the attached device to construct info about.
41 Tuple of device type, build id, report as a string, error messages, and
42 boolean indicating whether or not device can be used for testing.
82 imei_slice = _GetData('Device ID = (\d+)',
85 report = ['Device %s (%s)' % (serial, device_type),
97 errors += ['Device critically low in battery. Turning off device.']
103 errors += ['Mantaray device not connected to AC power.']
107 # errors += ['Device install speed too low. Do not use for testing.'
    [all...]
  /external/chromium_org/third_party/libjingle/source/talk/media/devices/
filevideocapturer_unittest.cc 191 cricket::Device not_a_file("I'm a camera", "with an id");
196 cricket::Device file_device =
  /external/llvm/
shared_llvm.mk 85 # DEVICE LLVM shared library build
92 # Device build selectively pulls in ARM, Mips, X86 components.
  /packages/apps/Email/emailcommon/src/com/android/emailcommon/service/
EmailServiceProxy.java 25 import com.android.emailcommon.Device;
88 Device.getDeviceId(_context);
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/launch/
messages.properties 39 RemoteAdtTestRunner_RunTimeoutException=Connection with device timed out.
40 RemoteAdtTestRunner_RunIOException_s=Lost connection with device: %s
43 RemoteAdtTestRunner_RunShellCommandUnresponsiveException=Device stopped sending output
  /external/chromium_org/chrome/browser/resources/history/
other_devices.js 45 * Controller for the context menu for device names in the list of sessions.
61 * Initialize the context menu for device names in the list of sessions.
144 // Device:
147 * Class to hold all the information about a device entry and generate a DOM
149 * @param {Object} session An object containing the device's session data.
153 function Device(session, view) {
159 // Device, Public: ------------------------------------------------------------
162 * Get the DOM node to display this device.
164 * @param {int} row The row in which this device is displayed.
165 * @return {Object} A DOM node to draw the device
    [all...]
  /external/chromium_org/third_party/yasm/source/patched-yasm/modules/objfmts/xdf/tests/
xdflong.asm 134 idesc64 isrL, 0x0008, 0 ; 0x07, 7, #NM, Device Not Available
173 dw isrR, 0 ; 0x07, 7, #NM, Device Not Available
xdfprotect.asm 108 idesc32 isrP, 0x0008, 0 ; 0x07, 7, #NM, Device Not Available
146 dw isrR, 0 ; 0x07, 7, #NM, Device Not Available
  /sdk/eclipse/plugins/com.android.ide.eclipse.ddms/src/com/android/ide/eclipse/ddms/views/
FileExplorerView.java 31 import org.eclipse.swt.graphics.Device;
71 // device explorer
165 * Sent when a new {@link Device} is selected.
167 * @param selectedDevice the selected device.
  /prebuilts/devtools/tools/
traceview.bat 64 echo Please use Android Device Monitor (tools/monitor) instead.
  /frameworks/rs/
rsContext.cpp 520 Context * Context::createContext(Device *dev, const RsSurfaceConfig *sc,
545 bool Context::initContext(Device *dev, const RsSurfaceConfig *sc) {
939 Device * dev = static_cast<Device *>(vdev);
952 Device * dev = static_cast<Device *>(vdev);

Completed in 411 milliseconds

1 2 3 45 6 7 8 9