HomeSort by relevance Sort by last modified time
    Searched refs:DeviceInfo (Results 1 - 25 of 78) sorted by null

1 2 3 4

  /external/chromium_org/components/sync_driver/
device_info.cc 10 DeviceInfo::DeviceInfo(const std::string& guid,
24 DeviceInfo::~DeviceInfo() { }
26 const std::string& DeviceInfo::guid() const {
30 const std::string& DeviceInfo::client_name() const {
34 const std::string& DeviceInfo::chrome_version() const {
38 const std::string& DeviceInfo::sync_user_agent() const {
42 const std::string& DeviceInfo::public_id() const {
46 sync_pb::SyncEnums::DeviceType DeviceInfo::device_type() const
    [all...]
device_info_tracker.h 14 // Interface for tracking synced DeviceInfo.
25 // Gets DeviceInfo the synced device with specified client ID.
28 virtual scoped_ptr<DeviceInfo> GetDeviceInfo(
30 // Gets DeviceInfo for all synced devices (including the local one).
31 virtual ScopedVector<DeviceInfo> GetAllDeviceInfo() const = 0;
32 // Registers an observer to be called on syncing any updated DeviceInfo.
local_device_info_provider.h 13 class DeviceInfo;
28 virtual const DeviceInfo* GetLocalDeviceInfo() const = 0;
device_info.h 21 class DeviceInfo {
23 DeviceInfo(const std::string& guid,
29 ~DeviceInfo();
65 bool Equals(const DeviceInfo& other) const;
73 // Converts the |DeviceInfo| values to a JS friendly DictionaryValue,
96 DISALLOW_COPY_AND_ASSIGN(DeviceInfo);
device_info_sync_service.h 41 virtual scoped_ptr<DeviceInfo> GetDeviceInfo(
43 virtual ScopedVector<DeviceInfo> GetAllDeviceInfo() const OVERRIDE;
53 // Create SyncData from local DeviceInfo and |local_device_backup_time_|.
54 syncer::SyncData CreateLocalData(const DeviceInfo* info);
59 // Allocate new DeviceInfo from SyncData.
60 static DeviceInfo* CreateDeviceInfo(const syncer::SyncData sync_data);
  /external/chromium_org/chrome/browser/extensions/api/signed_in_devices/
signed_in_devices_api.h 15 class DeviceInfo;
31 ScopedVector<sync_driver::DeviceInfo> GetAllSignedInDevices(
35 ScopedVector<sync_driver::DeviceInfo> GetAllSignedInDevices(
id_mapping_helper.h 18 class DeviceInfo;
48 std::vector<sync_driver::DeviceInfo*>* device_info,
53 scoped_ptr<sync_driver::DeviceInfo> GetDeviceInfoForClientId(
signed_in_devices_api.cc 20 using sync_driver::DeviceInfo;
54 ScopedVector<DeviceInfo> GetAllSignedInDevices(
59 ScopedVector<DeviceInfo> devices = device_tracker->GetAllDeviceInfo();
80 ScopedVector<DeviceInfo> GetAllSignedInDevices(
89 return ScopedVector<DeviceInfo>().Pass();
97 scoped_ptr<DeviceInfo> GetLocalDeviceInfo(const std::string& extension_id,
101 return scoped_ptr<DeviceInfo>();
107 scoped_ptr<DeviceInfo> device = GetDeviceInfoForClientId(guid,
121 scoped_ptr<DeviceInfo> device =
131 ScopedVector<DeviceInfo> devices
    [all...]
id_mapping_helper_unittest.cc 16 using sync_driver::DeviceInfo;
32 ScopedVector<DeviceInfo> devices;
34 devices.push_back(new DeviceInfo(base::GenerateGUID(),
41 devices.push_back(new DeviceInfo(base::GenerateGUID(),
61 devices.push_back(new DeviceInfo(base::GenerateGUID(),
signed_in_devices_api_unittest.cc 25 using sync_driver::DeviceInfo;
35 virtual scoped_ptr<DeviceInfo> GetDeviceInfo(
38 return scoped_ptr<DeviceInfo>();
41 static DeviceInfo* CloneDeviceInfo(const DeviceInfo* device_info) {
42 return new DeviceInfo(device_info->guid(),
50 virtual ScopedVector<DeviceInfo> GetAllDeviceInfo() const OVERRIDE {
51 ScopedVector<DeviceInfo> list;
53 for (std::vector<const DeviceInfo*>::const_iterator iter = devices_.begin();
66 void Add(const DeviceInfo* device) { devices_.push_back(device);
    [all...]
id_mapping_helper.cc 19 using sync_driver::DeviceInfo;
71 std::vector<DeviceInfo*>* device_info,
74 DeviceInfo* device = (*device_info)[i];
87 scoped_ptr<DeviceInfo> GetDeviceInfoForClientId(
93 ScopedVector<DeviceInfo> devices = GetAllSignedInDevices(extension_id,
95 for (ScopedVector<DeviceInfo>::iterator it = devices.begin();
99 scoped_ptr<DeviceInfo> device(*it);
104 return scoped_ptr<DeviceInfo>();
signed_in_devices_manager.cc 26 using sync_driver::DeviceInfo;
30 void FillDeviceInfo(const DeviceInfo& device_info,
31 api::signed_in_devices::DeviceInfo* api_device_info) {
62 ScopedVector<DeviceInfo> devices = GetAllSignedInDevices(extension_id_,
65 std::vector<linked_ptr<api::signed_in_devices::DeviceInfo> > args;
67 for (ScopedVector<DeviceInfo>::const_iterator it = devices.begin();
70 linked_ptr<api::signed_in_devices::DeviceInfo> api_device =
71 make_linked_ptr(new api::signed_in_devices::DeviceInfo);
  /device/asus/fugu/libaudio/
AudioHotplugThread.h 27 struct DeviceInfo {
40 virtual void onDeviceFound(const DeviceInfo& devInfo) = 0;
57 DeviceInfo* info);
AudioHardwareInput.h 52 virtual void onDeviceFound(const AudioHotplugThread::DeviceInfo& devInfo);
64 const AudioHotplugThread::DeviceInfo* getBestDevice(int inputSource);
69 // Place all input streams using the specified device into standby. If deviceInfo is NULL,
71 void standbyAllInputStreams(const AudioHotplugThread::DeviceInfo* deviceInfo);
78 AudioHotplugThread::DeviceInfo mDeviceInfos[kMaxDevices];
  /external/chromium_org/third_party/libjingle/source/talk/media/webrtc/
fakewebrtcvcmfactory.h 46 virtual webrtc::VideoCaptureModule::DeviceInfo* CreateDeviceInfo(int id) {
49 virtual void DestroyDeviceInfo(webrtc::VideoCaptureModule::DeviceInfo* info) {
  /external/chromium_org/third_party/webrtc/modules/video_capture/include/
video_capture_factory.h 12 // and DeviceInfo.
36 static VideoCaptureModule::DeviceInfo* CreateDeviceInfo(
  /external/chromium_org/chrome/browser/sync/glue/
local_device_info_provider_impl.h 25 virtual const sync_driver::DeviceInfo* GetLocalDeviceInfo() const OVERRIDE;
45 scoped_ptr<sync_driver::DeviceInfo> local_device_info_;
local_device_info_provider_mock.h 28 virtual const sync_driver::DeviceInfo* GetLocalDeviceInfo() const OVERRIDE;
41 scoped_ptr<sync_driver::DeviceInfo> local_device_info_;
local_device_info_provider_mock.cc 21 new sync_driver::DeviceInfo(
32 const sync_driver::DeviceInfo*
local_device_info_provider_unittest.cc 13 using sync_driver::DeviceInfo;
76 const DeviceInfo* local_device_info = provider_->GetLocalDeviceInfo();
  /external/chromium_org/third_party/webrtc/modules/video_capture/
video_capture_factory.cc 28 VideoCaptureModule::DeviceInfo* VideoCaptureFactory::CreateDeviceInfo(
  /external/chromium_org/third_party/webrtc/modules/video_capture/windows/
video_capture_factory_windows.cc 19 VideoCaptureModule::DeviceInfo* VideoCaptureImpl::CreateDeviceInfo(
  /external/chromium_org/content/browser/renderer_host/media/
video_capture_manager.h 139 struct DeviceInfo {
140 DeviceInfo();
141 DeviceInfo(const media::VideoCaptureDevice::Name& name,
143 ~DeviceInfo();
148 typedef std::vector<DeviceInfo> DeviceInfos;
201 DeviceInfo* FindDeviceInfoById(const std::string& id,
  /external/chromium_org/device/serial/
serial_device_enumerator_win.cc 34 serial::DeviceInfoPtr info(serial::DeviceInfo::New());
  /external/chromium_org/third_party/webrtc/modules/video_capture/external/
device_info_external.cc 46 VideoCaptureModule::DeviceInfo* VideoCaptureImpl::CreateDeviceInfo(

Completed in 998 milliseconds

1 2 3 4