Searched defs:device (Results 76 - 100 of 839) sorted by relevance

1234567891011>>

/external/chromium_org/extensions/browser/api/bluetooth/
H A Dbluetooth_extension_function.h12 namespace device { namespace
16 } // namespace device
35 void RunOnAdapterReady(scoped_refptr<device::BluetoothAdapter> adapter);
39 virtual bool DoWork(scoped_refptr<device::BluetoothAdapter> adapter) = 0;
/external/chromium_org/third_party/libjingle/source/talk/media/devices/
H A Ddummydevicemanager_unittest.cc62 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));
74 // Test that we get the video capture device by name properly.
77 Device device; local
79 EXPECT_FALSE(dm.GetVideoCaptureDevice("_NOT A REAL DEVICE_", &device));
[all...]
/external/chromium_org/tools/telemetry/telemetry/core/platform/
H A Dcros_device.py4 from telemetry.core.platform import device namespace
7 class CrOSDevice(device.Device):
/external/libmtp/examples/
H A Dformat.c3 * Example program that formats the device storage.
51 LIBMTP_mtpdevice_t *device; local
57 device = LIBMTP_Get_First_Device();
58 if (device == NULL) {
63 printf("I will now format your device. This means that\n");
69 ret = LIBMTP_Format_Storage(device, device->storage);
76 printf("Failed to format device.\n");
77 LIBMTP_Dump_Errorstack(device);
78 LIBMTP_Clear_Errorstack(device);
[all...]
H A Dreset.c3 * Example program that resets the device.
51 LIBMTP_mtpdevice_t *device; local
57 device = LIBMTP_Get_First_Device();
58 if (device == NULL) {
63 printf("I will now reset your device. This means that\n");
64 printf("the device may go inactive immediately and may report errors.\n");
67 ret = LIBMTP_Reset_Device(device);
74 printf("Failed to reset device.\n");
75 LIBMTP_Dump_Errorstack(device);
76 LIBMTP_Clear_Errorstack(device);
[all...]
H A Dtrexist.c3 * Example program to check if a certain track exists on the device.
33 LIBMTP_mtpdevice_t *device; local
56 device = LIBMTP_Get_First_Device();
57 if (device == NULL) {
58 printf("No devices. Connect/replug device and try again.\n");
62 printf("%s\n", LIBMTP_Track_Exists(device, id) ? "Yes" : "No");
64 LIBMTP_Release_Device(device);
/external/libusb-compat/libusb/
H A Dusbi.h50 struct usb_device *device; member in struct:usb_dev_handle
/external/chromium_org/chrome/browser/extensions/api/dial/
H A Ddial_device_data_unittest.cc28 DialDeviceData device; local
29 device.set_device_id("device");
30 device.set_label("label");
31 device.set_device_description_url(GURL("http://127.0.0.1/dd.xml"));
32 device.set_config_id(1);
34 device.FillDialDevice(&api_device);
35 EXPECT_EQ(api_device.device_label, device.label());
37 device.device_description_url().spec());
38 EXPECT_EQ(*(api_device.config_id), device
[all...]
/external/chromium_org/chrome/test/chromedriver/chrome/
H A Dchrome_android_impl.cc18 scoped_ptr<Device> device)
23 device_(device.Pass()) {}
13 ChromeAndroidImpl( scoped_ptr<DevToolsHttpClient> http_client, scoped_ptr<DevToolsClient> websocket_client, ScopedVector<DevToolsEventListener>& devtools_event_listeners, scoped_ptr<PortReservation> port_reservation, scoped_ptr<Device> device) argument
/external/chromium_org/device/bluetooth/
H A Dbluetooth_adapter_unittest.cc6 #include "device/bluetooth/bluetooth_adapter.h"
7 #include "device/bluetooth/bluetooth_device.h"
10 using device::BluetoothAdapter;
11 using device::BluetoothDevice;
13 namespace device { namespace
111 virtual void RequestPinCode(BluetoothDevice* device) OVERRIDE {}
112 virtual void RequestPasskey(BluetoothDevice* device) OVERRIDE {}
113 virtual void DisplayPinCode(BluetoothDevice* device,
115 virtual void DisplayPasskey(BluetoothDevice* device,
117 virtual void KeysEntered(BluetoothDevice* device,
[all...]
H A Dbluetooth_gatt_characteristic.cc5 #include "device/bluetooth/bluetooth_gatt_characteristic.h"
9 namespace device { namespace
27 } // namespace device
H A Dbluetooth_gatt_connection_chromeos.h14 #include "device/bluetooth/bluetooth_gatt_connection.h"
16 namespace device { namespace
20 } // namespace device
27 : public device::BluetoothGattConnection,
31 scoped_refptr<device::BluetoothAdapter> adapter,
52 scoped_refptr<device::BluetoothAdapter> adapter_;
54 // Bluetooth address of the underlying device.
57 // D-Bus object path of the underlying device. This is used to filter observer
H A Dbluetooth_gatt_service.cc5 #include "device/bluetooth/bluetooth_gatt_service.h"
9 namespace device { namespace
26 } // namespace device
H A Dbluetooth_init_win.cc5 #include "device/bluetooth/bluetooth_init_win.h"
20 namespace device { namespace
45 } // namespace device
H A Dbluetooth_socket_thread.h17 namespace device { namespace
48 } // namespace device
/external/chromium_org/device/bluetooth/test/
H A Dmock_bluetooth_device.cc5 #include "device/bluetooth/test/mock_bluetooth_device.h"
8 #include "device/bluetooth/test/mock_bluetooth_adapter.h"
10 namespace device { namespace
65 } // namespace device
H A Dmock_bluetooth_gatt_characteristic.cc5 #include "device/bluetooth/test/mock_bluetooth_gatt_characteristic.h"
7 #include "device/bluetooth/test/mock_bluetooth_gatt_service.h"
13 namespace device { namespace
38 } // namespace device
H A Dmock_bluetooth_gatt_descriptor.cc5 #include "device/bluetooth/test/mock_bluetooth_gatt_descriptor.h"
7 #include "device/bluetooth/test/mock_bluetooth_gatt_characteristic.h"
12 namespace device { namespace
32 } // namespace device
H A Dmock_bluetooth_gatt_service.cc5 #include "device/bluetooth/test/mock_bluetooth_gatt_service.h"
7 #include "device/bluetooth/test/mock_bluetooth_device.h"
12 namespace device { namespace
15 MockBluetoothDevice* device,
24 ON_CALL(*this, GetDevice()).WillByDefault(Return(device));
36 } // namespace device
14 MockBluetoothGattService( MockBluetoothDevice* device, const std::string& identifier, const BluetoothUUID& uuid, bool is_primary, bool is_local) argument
/external/chromium_org/device/core/
H A Ddevice_client.cc5 #include "device/core/device_client.h"
9 namespace device { namespace
44 } // namespace device
/external/chromium_org/device/hid/
H A Dhid_connection_linux.h12 #include "device/hid/hid_connection.h"
14 namespace device { namespace
57 } // namespace device
H A Dhid_connection_win.h13 #include "device/hid/hid_connection.h"
15 namespace device { namespace
63 } // namespace device
H A Dhid_service.h15 #include "device/hid/hid_device_info.h"
17 namespace device { namespace
27 // Enumerates and returns a list of device identifiers.
60 } // namespace device
H A Dhid_service_mac.h16 #include "device/hid/hid_service.h"
22 namespace device { namespace
58 } // namespace device
/external/chromium_org/device/nfc/
H A Dnfc_adapter_chromeos.h14 #include "device/nfc/nfc_adapter.h"
16 namespace device { namespace
20 } // namespace device
26 class NfcAdapterChromeOS : public device::NfcAdapter,
47 friend class device::NfcAdapterFactory;
102 ObserverList<device::NfcAdapter::Observer> observers_;

Completed in 433 milliseconds

1234567891011>>