OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:GetDevices
(Results
1 - 25
of
33
) sorted by null
1
2
/external/chromium_org/device/bluetooth/
bluetooth_adapter.cc
19
BluetoothAdapter::DeviceList BluetoothAdapter::
GetDevices
() {
21
const_cast<const BluetoothAdapter *>(this)->
GetDevices
();
31
BluetoothAdapter::ConstDeviceList BluetoothAdapter::
GetDevices
() const {
bluetooth_adapter.h
124
//
GetDevices
() and checking for those with IsPaired() as false.
140
virtual DeviceList
GetDevices
();
142
virtual ConstDeviceList
GetDevices
() const;
bluetooth_chromeos_unittest.cc
342
BluetoothAdapter::DeviceList devices = adapter_->
GetDevices
();
746
BluetoothAdapter::DeviceList devices = adapter_->
GetDevices
();
777
BluetoothAdapter::DeviceList devices = adapter_->
GetDevices
();
804
BluetoothAdapter::DeviceList devices = adapter_->
GetDevices
();
833
BluetoothAdapter::DeviceList devices = adapter_->
GetDevices
();
874
BluetoothAdapter::DeviceList devices = adapter_->
GetDevices
();
894
//
GetDevices
shouldn't return the device either.
895
devices = adapter_->
GetDevices
();
943
//
GetDevices
shouldn't return the device either.
[
all
...]
/external/chromium_org/chrome/browser/usb/
usb_service.h
50
void
GetDevices
(std::vector<scoped_refptr<UsbDevice> >* devices);
usb_service.cc
100
void UsbService::
GetDevices
(std::vector<scoped_refptr<UsbDevice> >* devices) {
/external/chromium_org/chrome/test/chromedriver/chrome/
adb.h
17
virtual Status
GetDevices
(std::vector<std::string>* devices) = 0;
adb_impl.h
29
virtual Status
GetDevices
(std::vector<std::string>* devices) OVERRIDE;
device_manager.cc
140
Status status = adb_->
GetDevices
(&devices);
164
Status status = adb_->
GetDevices
(&devices);
device_manager_unittest.cc
22
virtual Status
GetDevices
(std::vector<std::string>* devices) OVERRIDE {
adb_impl.cc
83
Status AdbImpl::
GetDevices
(std::vector<std::string>* devices) {
/external/chromium_org/device/bluetooth/test/
mock_bluetooth_adapter.h
52
MOCK_CONST_METHOD0(
GetDevices
, BluetoothAdapter::ConstDeviceList());
/external/chromium_org/chrome/browser/extensions/api/sessions/
sessions_api.cc
45
namespace
GetDevices
= api::sessions::
GetDevices
;
333
scoped_ptr<
GetDevices
::Params> params(
GetDevices
::Params::Create(*args_));
357
results_ =
GetDevices
::Results::Create(
366
results_ =
GetDevices
::Results::Create(
371
scoped_ptr<
GetDevices
::Params> params(
GetDevices
::Params::Create(*args_));
385
results_ =
GetDevices
::Results::Create(result);
sessions_apitest.cc
171
IN_PROC_BROWSER_TEST_F(ExtensionSessionsTest,
GetDevices
) {
/external/chromium_org/third_party/libjingle/source/talk/media/devices/
win32devicemanager.cc
87
static bool
GetDevices
(const CLSID& catid, std::vector<Device>* out);
166
if (!
GetDevices
(CLSID_VideoInputDeviceCategory, devices)) {
172
bool
GetDevices
(const CLSID& catid, std::vector<Device>* devices) {
dummydevicemanager_unittest.cc
50
TEST(DummyDeviceManagerTest,
GetDevices
) {
/external/chromium_org/build/android/pylib/device/
adb_wrapper_test.py
19
devices = adb_wrapper.AdbWrapper.
GetDevices
()
adb_wrapper.py
143
def
GetDevices
(cls, timeout=_DEFAULT_TIMEOUT, retries=_DEFAULT_RETRIES):
/external/chromium_org/chrome/browser/extensions/api/bluetooth/
bluetooth_api.cc
69
namespace
GetDevices
= extensions::api::bluetooth::
GetDevices
;
295
scoped_ptr<
GetDevices
::Params> params(
GetDevices
::Params::Create(*args_));
309
BluetoothAdapter::DeviceList devices = adapter->
GetDevices
();
bluetooth_apitest.cc
537
IN_PROC_BROWSER_TEST_F(BluetoothApiTest,
GetDevices
) {
551
EXPECT_CALL(*mock_adapter_,
GetDevices
())
/external/chromium_org/chrome/browser/extensions/api/usb/
usb_api.cc
27
namespace
GetDevices
= usb::
GetDevices
;
568
service->
GetDevices
(devices.get());
623
parameters_ =
GetDevices
::Params::Create(*args_);
656
service->
GetDevices
(&devices);
[
all
...]
usb_api.h
89
DECLARE_EXTENSION_FUNCTION("usb.
getDevices
", USB_GETDEVICES)
105
scoped_ptr<extensions::api::usb::
GetDevices
::Params> parameters_;
/external/chromium/third_party/libjingle/source/talk/examples/call/
callclient.h
160
void
GetDevices
();
/external/chromium_org/chrome/browser/devtools/adb/
android_usb_device.cc
210
service->
GetDevices
(&usb_devices);
234
service->
GetDevices
(&usb_devices);
/external/chromium_org/chrome/browser/storage_monitor/
portable_device_watcher_win.cc
412
HRESULT hr = portable_device_mgr->
GetDevices
(NULL, &pnp_device_count);
417
hr = portable_device_mgr->
GetDevices
(pnp_device_ids.get(), &pnp_device_count);
/external/chromium/third_party/libjingle/source/talk/session/phone/
devicemanager.cc
136
static bool
GetDevices
(const CLSID& catid, std::vector<Device>* out);
386
return
GetDevices
(CLSID_VideoInputDeviceCategory, devices);
389
bool
GetDevices
(const CLSID& catid, std::vector<Device>* devices) {
Completed in 372 milliseconds
1
2