HomeSort by relevance Sort by last modified time
    Searched full:device_path (Results 26 - 50 of 166) sorted by null

12 3 4 5 6 7

  /external/chromium_org/chrome/browser/chromeos/file_manager/
volume_manager_unittest.cc 45 std::string device_path; member in struct:file_manager::__anon7727::LoggingObserver::Event
73 event.device_path = disk.device_path(); // Keep only device_path.
82 event.device_path = disk.device_path(); // Keep only device_path.
86 virtual void OnDeviceAdded(const std::string& device_path) OVERRIDE {
89 event.device_path = device_path;
    [all...]
mounted_disk_monitor.cc 69 const std::string& device_path) const {
70 return hard_unplugged_.count(device_path) > 0;
74 const std::string& device_path) {
75 std::set<std::string>::iterator it = hard_unplugged_.find(device_path);
122 const std::string& device_path) {
128 const std::string& device_path) {
mounted_disk_monitor.h 43 const std::string& device_path) OVERRIDE;
52 const std::string& device_path) OVERRIDE;
58 bool DeviceIsHardUnplugged(const std::string& device_path) const;
59 void ClearHardUnpluggedFlag(const std::string& device_path);
  /external/chromium_org/chromeos/dbus/
fake_cros_disks_client.h 29 virtual void Unmount(const std::string& device_path,
39 virtual void Format(const std::string& device_path,
44 const std::string& device_path,
63 const std::string& device_path);
70 // Returns the |device_path| parameter from the last invocation of Unmount().
96 // Returns the |device_path| parameter from the last invocation of Format().
bluetooth_agent_service_provider.h 73 // PIN Code for authentication of the device with object path |device_path|,
79 virtual void RequestPinCode(const dbus::ObjectPath& device_path,
84 // |device_path| so that it may be authenticated. The Cancel() method
91 virtual void DisplayPinCode(const dbus::ObjectPath& device_path,
95 // Passkey for authentication of the device with object path |device_path|,
103 virtual void RequestPasskey(const dbus::ObjectPath& device_path,
108 // |device_path| so that it may be authenticated. The Cancel() method
119 virtual void DisplayPasskey(const dbus::ObjectPath& device_path,
133 virtual void RequestConfirmation(const dbus::ObjectPath& device_path,
139 // path |device_path| that would have otherwised triggered the just-work
    [all...]
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_profile_service_provider.h 33 const dbus::ObjectPath& device_path,
38 const dbus::ObjectPath& device_path,
cros_disks_client.cc 129 virtual void Unmount(const std::string& device_path,
136 writer.AppendString(device_path);
181 virtual void Format(const std::string& device_path,
188 writer.AppendString(device_path);
203 const std::string& device_path,
209 writer.AppendString(device_path);
214 device_path,
392 void OnGetDeviceProperties(const std::string& device_path,
400 DiskInfo disk(device_path, response);
432 std::string device_path; local
437 handler.Run(static_cast<FormatError>(error_code), device_path); local
    [all...]
  /external/chromium_org/components/storage_monitor/
volume_mount_watcher_win.h 42 // Gets the information about the device mounted at |device_path|. On success,
45 bool GetDeviceInfo(const base::FilePath& device_path,
71 const base::FilePath& device_path,
80 // Runs |get_device_details_callback| for |device_path| on a worker thread.
83 const base::FilePath& device_path,
88 virtual void DeviceCheckComplete(const base::FilePath& device_path);
volume_mount_watcher_win.cc 73 base::string16 device_path; local
76 device.c_str(), WriteInto(&device_path, kMaxPathBufLen), kMaxPathBufLen);
84 if (device_path.find(L"Floppy") != base::string16::npos ||
117 // Gets mass storage device information given a |device_path|. On success,
122 bool GetDeviceDetails(const base::FilePath& device_path, StorageInfo* info) {
126 if (!GetVolumePathName(device_path.value().c_str(),
168 GetVolumeInformationW(device_path.value().c_str(),
387 const base::FilePath& device_path,
391 if (!get_device_details_callback.Run(device_path, &info)) {
395 volume_watcher, device_path));
    [all...]
  /external/chromium_org/chrome/utility/image_writer/
disk_unmounter_mac.cc 30 void DiskUnmounterMac::Unmount(const std::string& device_path,
43 device_path));
96 void DiskUnmounterMac::UnmountOnWorker(const std::string& device_path) {
105 kCFAllocatorDefault, session_, device_path.c_str()));
disk_unmounter_mac.h 32 // Claims and unmounts the device described by |device_path| and then calls
35 void Unmount(const std::string& device_path,
55 void UnmountOnWorker(const std::string& device_path);
  /external/chromium_org/device/hid/
hid_service_linux.cc 76 const char* device_path = udev_device_get_syspath(device); local
77 if (!device_path)
84 device_info.device_id = device_path;
157 const char* device_path = udev_device_get_syspath(device);; local
158 if (device_path)
159 RemoveDevice(device_path);
187 std::string device_path = udev_device_get_devpath(hid_dev.get()); local
189 !device_path.compare(0, parent_path.length(), parent_path)) {
190 std::string sub_path = device_path.substr(parent_path.length());
hid_service_win.cc 144 void HidServiceWin::PlatformAddDevice(const std::string& device_path) {
146 device_info.device_id = device_path;
150 CreateFileA(device_path.c_str(),
161 CreateFileA(device_path.c_str(),
228 void HidServiceWin::PlatformRemoveDevice(const std::string& device_path) {
229 RemoveDevice(device_path);
  /external/chromium_org/chrome/browser/extensions/api/image_writer_private/
write_from_file_operation.cc 19 const std::string& device_path)
20 : Operation(manager, extension_id, device_path) {
operation_manager.h 58 const std::string& device_path,
64 const std::string& device_path,
73 const std::string& device_path,
  /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
  /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");
  /external/chromium_org/build/android/gyp/
push_libraries.py 36 device_path = os.path.join(options.device_dir, lib)
43 device.PushIfNeeded(host_path, device_path)
50 input_strings=[device_path])
  /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/build/android/pylib/device/
adb_wrapper_test.py 49 device_path = '/data/local/tmp/testfile.txt'
51 self._adb.Push(path, device_path)
52 self.assertEqual(self._adb.Shell('cat %s' % device_path), 'foo')
53 self._adb.Pull(device_path, local_tmpdir)
  /external/chromium_org/content/common/gpu/media/
exynos_v4l2_video_device.cc 113 const char* device_path = NULL; local
116 device_path = kDecoderDevice;
119 device_path = kEncoderDevice;
122 device_path = kImageProcessorDevice;
126 DVLOG(2) << "Initialize(): opening device: " << device_path;
128 device_fd_ = HANDLE_EINTR(open(device_path, O_RDWR | O_NONBLOCK | O_CLOEXEC));
tegra_v4l2_video_device.cc 147 const char* device_path = NULL; local
150 device_path = kDecoderDevice;
153 device_path = kEncoderDevice;
165 TegraV4L2_Open(device_path, O_RDWR | O_NONBLOCK | O_CLOEXEC));
167 DLOG(ERROR) << "Unable to open device " << device_path;
  /external/chromium_org/device/bluetooth/
bluetooth_adapter_chromeos.cc 439 const dbus::ObjectPath& device_path,
442 VLOG(1) << device_path.value() << ": RequestPinCode";
444 BluetoothPairingChromeOS* pairing = GetPairing(device_path);
454 const dbus::ObjectPath& device_path,
457 VLOG(1) << device_path.value() << ": DisplayPinCode: " << pincode;
459 BluetoothPairingChromeOS* pairing = GetPairing(device_path);
467 const dbus::ObjectPath& device_path,
470 VLOG(1) << device_path.value() << ": RequestPasskey";
472 BluetoothPairingChromeOS* pairing = GetPairing(device_path);
482 const dbus::ObjectPath& device_path,
    [all...]
  /system/core/debuggerd/
getevent.cpp 167 const char* device_path = "/dev/input"; local
174 res = inotify_add_watch(ufds[0].fd, device_path, IN_DELETE | IN_CREATE);
178 res = scan_dir(device_path);
199 const char* device_path = "/dev/input"; local
206 read_notify(device_path, ufds[0].fd);

Completed in 1066 milliseconds

12 3 4 5 6 7