HomeSort by relevance Sort by last modified time
    Searched defs:device_path (Results 1 - 25 of 36) sorted by null

1 2

  /external/chromium_org/chrome/browser/media_galleries/fileapi/
mtp_device_map_service.cc 87 base::FilePath device_path; local
89 filesystem_id, &device_path)) {
93 const base::FilePath::StringType& device_location = device_path.value();
  /external/chromium_org/chromeos/network/
network_ip_config.h 31 NetworkIPConfig(const std::string& device_path, IPConfigType type,
38 std::string device_path; // This looks like "/device/0011aa22bb33" member in struct:chromeos::NetworkIPConfig
network_device_handler.cc 44 const std::string& device_path,
50 device_path, local
70 const std::string& device_path,
75 NET_LOG_ERROR("RequestRefreshIPConfigs Failed", device_path);
78 device_path,
101 const std::string& device_path,
108 device_path);
111 device_path,
116 NET_LOG_EVENT("Device.ProposeScan succeeded.", device_path);
134 const std::string& device_path,
    [all...]
network_sms_handler.cc 427 std::string device_path; local
428 (*iter)->GetAsString(&device_path);
429 if (!device_path.empty()) {
431 VLOG(1) << "GetDeviceProperties: " << device_path;
433 dbus::ObjectPath(device_path),
436 device_path));
442 const std::string& device_path,
447 << " For: " << device_path; local
454 LOG(ERROR) << "NetworkSmsHandler: No type for: " << device_path;
463 LOG(ERROR) << "Device has no DBusConnection Property: " << device_path;
    [all...]
network_state.h 51 const std::string& device_path() const { return device_path_; } function in class:chromeos::NetworkState
  /system/core/fastboot/
usb.h 56 char device_path[256]; member in struct:usb_ifc_info
  /external/chromium_org/chromeos/dbus/
bluetooth_profile_service_provider.cc 105 dbus::ObjectPath device_path; local
108 if (!reader.PopObjectPath(&device_path) ||
138 delegate_->NewConnection(device_path, fd.Pass(), options, callback);
150 dbus::ObjectPath device_path; local
151 if (!reader.PopObjectPath(&device_path)) {
163 delegate_->RequestDisconnection(device_path, callback);
bluetooth_agent_service_provider.cc 145 dbus::ObjectPath device_path; local
146 if (!reader.PopObjectPath(&device_path)) {
158 delegate_->RequestPinCode(device_path, callback);
170 dbus::ObjectPath device_path; local
172 if (!reader.PopObjectPath(&device_path) ||
179 delegate_->DisplayPinCode(device_path, pincode);
192 dbus::ObjectPath device_path; local
193 if (!reader.PopObjectPath(&device_path)) {
205 delegate_->RequestPasskey(device_path, callback);
217 dbus::ObjectPath device_path; local
243 dbus::ObjectPath device_path; local
270 dbus::ObjectPath device_path; local
295 dbus::ObjectPath device_path; local
    [all...]
fake_bluetooth_adapter_client.cc 176 const dbus::ObjectPath& device_path,
185 << " " << device_path.value();
191 device_client->RemoveDevice(dbus::ObjectPath(kAdapterPath), device_path); local
fake_shill_manager_client.cc 134 std::string device_path = device_client->GetDevicePathForType(device_type); local
135 if (!device_path.empty()) {
136 device_client->SetDeviceProperty(device_path,
149 weak_ptr_factory_.GetWeakPtr(), device_path, callback),
324 void FakeShillManagerClient::AddDevice(const std::string& device_path) {
326 base::Value::CreateStringValue(device_path))) {
331 void FakeShillManagerClient::RemoveDevice(const std::string& device_path) {
332 base::StringValue device_path_value(device_path);
623 void FakeShillManagerClient::ScanCompleted(const std::string& device_path,
625 if (!device_path.empty())
    [all...]
  /external/chromium_org/chrome/browser/chromeos/imageburner/
burn_device_handler_unittest.cc 45 bool new_disk = InsertDisk(disk->device_path(), in_disk.Pass());
93 const std::string& device_path,
133 *out_path = disk.device_path();
149 const std::string& device_path,
156 device_path,
221 const std::string& device_path = burnable_devices[i].device_path(); local
222 burnable_usb_found |= (device_path == "/dev/burnable_usb");
223 burnable_sd_found |= (device_path == "/dev/burnable_sd");
  /system/core/debuggerd/
getevent.c 162 const char *device_path = "/dev/input"; local
169 res = inotify_add_watch(ufds[0].fd, device_path, IN_DELETE | IN_CREATE);
173 res = scan_dir(device_path);
196 const char *device_path = "/dev/input"; local
203 read_notify(device_path, ufds[0].fd);
  /external/chromium/chrome/browser/chromeos/cros/
mount_library.h 38 Disk(const std::string& device_path,
52 const std::string& device_path() const { return device_path_; } function in class:chromeos::MountLibrary::Disk
105 const std::string& device_path ) = 0;
114 virtual void MountPath(const char* device_path) = 0;
115 virtual void UnmountPath(const char* device_path) = 0;
  /external/chromium_org/chrome/browser/chromeos/file_manager/
volume_manager.cc 316 if (disk->device_path().empty()) {
317 DVLOG(1) << "Empty system path for " << disk->device_path();
330 disk->device_path(), std::string(), std::string(),
364 const std::string& device_path) {
366 DVLOG(1) << "OnDeviceEvent: " << event << ", " << device_path; local
371 OnDeviceAdded(device_path));
375 OnDeviceRemoved(device_path));
378 DVLOG(1) << "Ignore SCANNED event: " << device_path;
435 const std::string& device_path) {
438 << ", " << device_path; local
    [all...]
volume_manager_unittest.cc 40 std::string device_path; member in struct:file_manager::__anon6992::LoggingObserver::Event
65 event.device_path = disk.device_path(); // Keep only device_path.
74 event.device_path = disk.device_path(); // Keep only device_path.
78 virtual void OnDeviceAdded(const std::string& device_path) OVERRIDE {
81 event.device_path = device_path;
    [all...]
  /external/chromium_org/content/browser/geolocation/
wifi_data_provider_linux.cc 136 const dbus::ObjectPath& device_path = device_paths[i]; local
137 VLOG(1) << "Checking device: " << device_path.value();
141 device_path);
153 << device_path.value();
166 if (GetAccessPointsForAdapter(device_path, data))
  /external/chromium_org/third_party/libjingle/source/talk/media/devices/
linuxdevicemanager.cc 268 std::string device_path = "/dev/" + filename; local
270 if (V4LLookup::IsV4L2Device(device_path)) {
272 Device(GetVideoDeviceName(meta, filename), device_path));
  /external/grub/stage2/
bios.c 228 unsigned char device_path[8];
226 unsigned char device_path[8]; member in struct:drive_parameters
  /external/chromium_org/chrome/browser/chromeos/policy/
device_status_collector_browsertest.cc 664 const char* device_path; member in struct:policy::FakeDeviceData
706 test_device_client->AddDevice(dev.device_path, dev.type,
710 dev.device_path, shill::kAddressProperty,
715 dev.device_path, shill::kMeidProperty,
720 dev.device_path, shill::kImeiProperty,
  /external/chromium_org/chrome/browser/storage_monitor/
storage_monitor_linux_unittest.cc 50 const char* device_path; member in struct:__anon8386::TestDeviceData
71 scoped_ptr<StorageInfo> GetDeviceInfo(const base::FilePath& device_path,
76 if (device_path.value() == kTestDeviceData[i].device_path) {
102 if (device == kTestDeviceData[i].device_path)
110 if (device == kTestDeviceData[i].device_path) {
volume_mount_watcher_win.cc 70 base::string16 device_path; local
73 device.c_str(), WriteInto(&device_path, kMaxPathBufLen), kMaxPathBufLen);
81 if (device_path.find(L"Floppy") != base::string16::npos ||
114 // Gets mass storage device information given a |device_path|. On success,
119 bool GetDeviceDetails(const base::FilePath& device_path, StorageInfo* info) {
123 if (!GetVolumePathName(device_path.value().c_str(),
165 GetVolumeInformationW(device_path.value().c_str(),
384 const base::FilePath& device_path,
388 if (!get_device_details_callback.Run(device_path, &info)) {
392 volume_watcher, device_path));
    [all...]
  /external/chromium_org/chrome/browser/ui/webui/chromeos/
mobile_setup_ui.cc 115 std::string device_path; local
117 shill::kDeviceProperty, &device_path) ||
118 device_path.empty()) {
123 device_path);
  /external/chromium_org/chromeos/disks/
disk_mount_manager.cc 110 std::string device_path = mount_point->second.source_path; variable
111 DiskMap::const_iterator disk = disks_.find(device_path);
113 LOG(ERROR) << "Device with path \"" << device_path << "\" not found.";
114 OnFormatDevice(device_path, false);
122 device_path));
127 const std::string& device_path,
132 int device_path_len = device_path.length();
135 strncmp(device_path.c_str(), it->second->device_path().c_str(),
143 if (disks_.find(device_path) == disks_.end())
481 std::string device_path = device_path_arg; local
    [all...]
disk_mount_manager.h 54 Disk(const std::string& device_path,
77 const std::string& device_path() const { return device_path_; } function in class:chromeos::disks::DiskMountManager::Disk
210 const std::string& device_path) = 0;
218 const std::string& device_path) = 0;
265 // Unmounts device_path and all of its known children.
267 const std::string& device_path,
  /system/core/toolbox/
getevent.c 509 const char *device_path = "/dev/input"; local
603 res = inotify_add_watch(ufds[0].fd, device_path, IN_DELETE | IN_CREATE);
605 fprintf(stderr, "could not add watch for %s, %s\n", device_path, strerror(errno));
608 res = scan_dir(device_path, print_flags);
610 fprintf(stderr, "scan dir failed for %s\n", device_path);
635 read_notify(device_path, ufds[0].fd, print_flags);

Completed in 3046 milliseconds

1 2