HomeSort by relevance Sort by last modified time
    Searched refs:Device (Results 26 - 50 of 259) sorted by null

12 3 4 5 6 7 8 91011

  /external/chromium_org/third_party/libjingle/source/talk/media/devices/
devicemanager.cc 72 VideoCapturer* Create(const Device& device) {
75 if (!return_value->Init(device)) {
116 std::vector<Device> devices;
130 bool DeviceManager::GetAudioInputDevices(std::vector<Device>* devices) {
134 bool DeviceManager::GetAudioOutputDevices(std::vector<Device>* devices) {
138 bool DeviceManager::GetAudioInputDevice(const std::string& name, Device* out) {
142 bool DeviceManager::GetAudioOutputDevice(const std::string& name, Device* out) {
146 bool DeviceManager::GetVideoCaptureDevices(std::vector<Device>* devices) {
149 // On Android and iOS, we treat the camera(s) as a single device. Even i
    [all...]
dummydevicemanager_unittest.cc 31 using cricket::Device;
53 std::vector<Device> audio_ins, audio_outs, video_ins;
62 Device device; local
65 cricket::DeviceManagerInterface::kDefaultDeviceName, &device));
66 EXPECT_EQ("-1", device.id);
68 cricket::DeviceManagerInterface::kDefaultDeviceName, &device));
69 EXPECT_EQ("-1", device.id);
70 EXPECT_FALSE(dm.GetAudioInputDevice("_NOT A REAL DEVICE_", &device));
71 EXPECT_FALSE(dm.GetAudioOutputDevice("_NOT A REAL DEVICE_", &device));
77 Device device; local
    [all...]
macdeviceinfo.cc 32 bool GetUsbId(const Device& device, std::string* usb_id) {
35 if (device.id.size() < 2 * id_size) {
39 // The last characters of device id is a concatenation of VID and then PID.
40 const size_t vid_location = device.id.size() - 2 * id_size;
41 std::string id_vendor = device.id.substr(vid_location, id_size);
42 const size_t pid_location = device.id.size() - id_size;
43 std::string id_product = device.id.substr(pid_location, id_size);
52 bool GetUsbVersion(const Device& device, std::string* usb_version)
    [all...]
filevideocapturer.h 80 // Determines if the given device is actually a video file, to be captured
82 static bool IsFileVideoCapturerDevice(const Device& device) {
83 return talk_base::starts_with(device.id.c_str(), kVideoFileDevicePrefix);
86 // Creates a fake device for the given filename.
87 static Device CreateFileVideoCapturerDevice(const std::string& filename) {
90 return Device(filename, id.str());
108 // Initializes the capturer with the given device. This should only be used
109 // if IsFileVideoCapturerDevice returned true for the given device.
110 bool Init(const Device& device)
    [all...]
win32deviceinfo.cc 32 bool GetUsbId(const Device& device, std::string* usb_id) {
36 const size_t vid_location = device.id.find(vid);
38 vid_location + sizeof(vid) - 1 + id_size > device.id.size()) {
42 const size_t pid_location = device.id.find(pid);
44 pid_location + sizeof(pid) - 1 + id_size > device.id.size()) {
47 std::string id_vendor = device.id.substr(vid_location + sizeof(vid) - 1,
49 std::string id_product = device.id.substr(pid_location + sizeof(pid) -1,
58 bool GetUsbVersion(const Device& device, std::string* usb_version)
    [all...]
win32devicemanager.cc 87 static bool GetDevices(const CLSID& catid, std::vector<Device>* out);
88 static bool GetCoreAudioDevices(bool input, std::vector<Device>* devs);
89 static bool GetWaveDevices(bool input, std::vector<Device>* devs);
131 bool Win32DeviceManager::GetDefaultVideoCaptureDevice(Device* device) {
135 std::vector<Device> devices;
138 *device = devices[0];
142 *device = devices[i];
151 std::vector<Device>* devs) {
164 bool Win32DeviceManager::GetVideoCaptureDevices(std::vector<Device>* devices)
276 CComPtr<IMMDevice> device; local
    [all...]
devicemanager_unittest.cc 56 using cricket::Device;
73 virtual cricket::VideoCapturer* Create(const cricket::Device& device) {
108 std::vector<Device> devices;
109 // Ensure that calls to video device work if COM is not yet initialized.
138 std::vector<Device> audio_ins, audio_outs, video_ins;
139 std::vector<cricket::Device> video_in_devs;
140 cricket::Device def_video;
156 Device device; local
171 Device device; local
191 Device device; local
    [all...]
  /bootable/recovery/
default_device.cpp 20 #include "device.h"
37 class DefaultDevice : public Device {
85 Device* make_device() {
  /external/chromium_org/chrome/browser/local_discovery/
cloud_device_list.h 19 typedef std::vector<CloudDeviceListDelegate::Device> DeviceList;
34 CloudDeviceListDelegate::Device* device);
cloud_print_printer_list.h 31 CloudDeviceListDelegate::Device* printer_details);
cloud_device_list.cc 40 std::vector<CloudDeviceListDelegate::Device> result;
43 base::DictionaryValue* device; local
44 CloudDeviceListDelegate::Device details;
46 if (!(*i)->GetAsDictionary(&device))
49 if (!FillDeviceDetails(*device, &details))
64 CloudDeviceListDelegate::Device* details) {
cloud_print_printer_list.cc 35 std::vector<CloudDeviceListDelegate::Device> devices;
40 CloudDeviceListDelegate::Device printer_details;
60 CloudDeviceListDelegate::Device* printer_details) {
  /packages/apps/Email/tests/src/com/android/emailcommon/
DeviceTests.java 39 final String deviceId = Device.getConsistentDeviceId(getContext());
40 final String deviceId2 = Device.getConsistentDeviceId(getContext());
  /frameworks/native/services/inputflinger/
EventHub.h 48 * through evdev from uinput device drivers because there is currently no
63 // Device id of a special "virtual" keyboard that is always present.
65 // Device id of the "built-in" keyboard if there is one.
101 * Input device classes.
104 /* The input device is a keyboard or has buttons. */
107 /* The input device is an alpha-numeric keyboard (not just a dial pad). */
110 /* The input device is a touchscreen or a touchpad (either single-touch or multi-touch). */
113 /* The input device is a cursor device such as a trackball or mouse. */
116 /* The input device is a multi-touch touchscreen. *
    [all...]
  /external/chromium_org/chrome/test/chromedriver/chrome/
device_manager_unittest.cc 79 scoped_ptr<Device> device1;
80 scoped_ptr<Device> device2;
81 scoped_ptr<Device> device3;
93 scoped_ptr<Device> device1;
94 scoped_ptr<Device> device2;
95 scoped_ptr<Device> device3;
105 TEST(Device, StartStopApp) {
108 scoped_ptr<Device> device1;
chrome_android_impl.cc 16 scoped_ptr<Device> device)
20 device_(device.Pass()) {}
device_manager.cc 23 Device::Device(
30 Device::~Device() {
34 Status Device::SetUp(const std::string& package,
101 "Failed to set Chrome's command line file on device " + serial_);
122 Status Device::ForwardDevtoolsPort(const std::string& package,
144 Status Device::TearDown() {
161 Status DeviceManager::AcquireDevice(scoped_ptr<Device>* device) {
    [all...]
  /hardware/samsung_slsi/exynos5/mobicore/daemon/Daemon/Device/Platforms/
Android.mk 7 PLATFORMS_PATH := $(LOCAL_PATH)/Daemon/Device/Platforms
  /hardware/samsung_slsi/exynos5/mobicore/daemon/Daemon/Device/Platforms/Generic/
Android.mk 3 # Generic TrustZone device includes
10 GENERIC_PATH := Daemon/Device/Platforms/Generic
  /packages/apps/TvSettings/Settings/src/com/android/tv/settings/util/bluetooth/
BluetoothScanner.java 45 public static class Device {
52 // the type of configuration this device needs, or -1 if the device does not
59 str.append("Device(addr=");
104 * Note this is not 100% conclusive. There was a brief period when a device
106 * more confidence if we check if the device appears in a list of devices
107 * belonging to a Place. If so we can assume this device requires only
125 public void onScanningStopped(ArrayList<Device> devices) {
127 public void onDeviceAdded(Device device) {
408 Device device = null; local
455 Device device = mPresentDevices.get(i); local
    [all...]
  /cts/apps/CtsVerifier/src/com/android/cts/verifier/bluetooth/
DevicePickerActivity.java 44 * {@link Activity} that shows a list of paired and new devices and returns the device selected
45 * by the user. When the user selects a paired device, it forwards them to the Bluetooth settings
58 private ArrayAdapter<Device> mNewDevicesAdapter;
60 private ArrayAdapter<Device> mPairedDevicesAdapter;
70 mPairedDevicesAdapter = new ArrayAdapter<Device>(this, R.layout.bt_device_name);
78 mNewDevicesAdapter = new ArrayAdapter<Device>(this, R.layout.bt_device_name);
134 for (BluetoothDevice device : pairedDevices) {
135 mPairedDevicesAdapter.add(Device.fromBluetoothDevice(device));
152 Device device = (Device) parent.getItemAtPosition(position) local
190 BluetoothDevice device = intent.getParcelableExtra(BluetoothDevice.EXTRA_DEVICE); local
    [all...]
  /packages/apps/Email/src/com/android/email/service/
AccountService.java 29 import com.android.emailcommon.Device;
67 return Device.getDeviceId(mContext);
81 Device.getDeviceId(this);
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/configuration/
VaryingConfiguration.java 26 import com.android.sdklib.devices.Device;
46 * overrides the device will probably return a phone-sized screen if the
47 * inherited device is a tablet, or vice versa.
217 // Cached values, key=parent's device, cached value=device
218 private Device mPrevParentDevice;
219 private Device mPrevDevice;
223 public Device getDevice() {
227 Device device = mParent.getDevice() local
350 Device device = getDevice(); local
    [all...]
  /packages/apps/TvSettings/Settings/src/com/android/tv/settings/accessories/
InputDeviceCriteria.java 38 return majorDeviceClass == BluetoothClass.Device.Major.PERIPHERAL;
  /external/chromium_org/chrome/browser/devtools/device/
android_device_manager.h 86 class Device : public base::RefCountedThreadSafe<Device>,
115 Device(scoped_refptr<base::MessageLoopProxy> device_message_loop,
119 friend class base::RefCountedThreadSafe<Device>;
120 virtual ~Device();
125 base::WeakPtrFactory<Device> weak_factory_;
127 DISALLOW_COPY_AND_ASSIGN(Device);
130 typedef std::vector<scoped_refptr<Device> > Devices;
210 typedef std::map<std::string, base::WeakPtr<Device> > DeviceWeakMap;

Completed in 443 milliseconds

12 3 4 5 6 7 8 91011