/external/skqp/infra/bots/recipe_modules/flavor/ |
api.py | 102 def copy_file_to_device(self, host_path, device_path): 103 return self._f.copy_file_to_device(host_path, device_path) 141 host_path, device_path, test_expected_version, 155 self.create_clean_device_dir(device_path) 157 host_path, device_path)
|
/system/extras/simpleperf/scripts/ |
binary_cache_builder.py | 206 def _pull_file_from_device(self, device_path, host_path): 207 if self.adb.run(['pull', device_path, host_path]): 211 filename = device_path[device_path.rfind('/')+1:] 212 if (self.adb.run(['shell', 'cp', device_path, '/data/local/tmp']) and 216 log_warning('failed to pull %s from device' % device_path)
|
/external/autotest/client/site_tests/network_DhcpVendorEncapsulatedOptions/ |
network_DhcpVendorEncapsulatedOptions.py | 46 device_path = shill_proxy.ShillProxy.dbus2primitive(device.object_path) 47 service = proxy.find_object('Service', {'Device': device_path})
|
/external/autotest/client/site_tests/camera_V4L2/src/ |
common_types.h | 16 std::string device_path; member in struct:DeviceInfo
|
camera_characteristics.cc | 56 "", // device_path 151 tmp_device_infos[camera_id].device_path = device->second; 181 if (tmp_device_infos[id].device_path.empty()) {
|
/external/chromium-trace/catapult/devil/docs/ |
device_utils.md | 537 host_device_tuples: A list of (host_path, device_path) tuples, where 539 that should be minimially pushed to the device, and |device_path| is 565 device_path: A string containing the absolute path to the file on the 586 device_path: A string containing the absolute path to the file on the 604 device_path: A string containing the absolute path of the file to pull 622 device_path: A string containing the absolute path of the file to read 633 The contents of |device_path| as a string. Contents are intepreted using 650 device_path: A string containing the absolute path to the file to write 677 device_path: A string containing the path of the directory on the device 688 AdbCommandFailedError if |device_path| does not specify a valid an [all...] |
/external/tensorflow/tensorflow/core/debug/ |
debug_node_key.h | 46 const string device_path; member in struct:tensorflow::DebugNodeKey
|
debug_node_key.cc | 34 device_path(DeviceNameToDevicePath(device_name)) {}
|
/system/core/fastboot/ |
usb.h | 53 char device_path[256]; member in struct:usb_ifc_info
|
/external/autotest/client/site_tests/hardware_StorageFio/ |
hardware_StorageFio.py | 50 device_path = findsys.stdout.rstrip() 52 vendor_file = device_path.replace('block/%s' % device, 'vendor') 53 model_file = device_path.replace('block/%s' % device, 'model')
|
/external/vboot_reference/cgpt/ |
cgpt_wrapper.c | 41 // Check if |device_path| is an MTD device based on its major number being 90. 42 static bool is_mtd(const char *device_path) { 44 if (lstat(device_path, &stat) != 0) {
|
/external/autotest/client/common_lib/cros/network/ |
interface.py | 158 def device_path(self): member in class:Interface 161 device_path = os.path.join(DEVICE_INFO_ROOT, self._name, 'device') 162 if not self.host.path_exists(device_path): 163 logging.error('No device information found at %s', device_path) 166 return device_path 179 device_path = self.device_path 180 if not device_path: 187 vendor_id = read_file(os.path.join(device_path, 'vendor')) 188 product_id = read_file(os.path.join(device_path, 'device') [all...] |
/system/update_engine/ |
boot_control_chromeos.cc | 257 base::FilePath device_path(device); 258 if (device_path.DirName().value() != "/dev") { 261 return base::FilePath("/sys/block").Append(device_path.BaseName()).value();
|
/bionic/libc/kernel/uapi/linux/ |
edd.h | 145 } device_path; member in struct:edd_device_params
|
/external/autotest/client/site_tests/security_DeviceJail_Detach/ |
security_DeviceJail_Detach.py | 48 return { child.device_path : child.driver for child in device.children
|
/system/update_engine/payload_consumer/ |
postinstall_runner_action_unittest.cc | 95 // partition |device_path|, running the |postinstall_program| command from 97 void RunPosinstallAction(const string& device_path, 166 const string& device_path, 174 part.target_path = device_path;
|
/external/autotest/client/cros/ |
network.py | 76 device_path = service_properties['Device'] 77 device = conn_mgr.GetObjectInterface('Device', device_path)
|
dhcpv6_test_base.py | 61 device_path = shill_proxy.ShillProxy.dbus2primitive(device.object_path) 62 return self.shill_proxy.find_object('Service', {'Device': device_path})
|
/external/chromium-trace/catapult/devil/devil/utils/ |
mock_calls_test.py | 27 def Push(self, host_path, device_path): 28 logging.debug('(device %s) pushing %r to %r', self, host_path, device_path)
|
/external/libmojo/third_party/catapult/devil/devil/utils/ |
mock_calls_test.py | 27 def Push(self, host_path, device_path): 28 logging.debug('(device %s) pushing %r to %r', self, host_path, device_path)
|
/hardware/libhardware/modules/camera/3_4/ |
v4l2_wrapper.h | 41 static V4L2Wrapper* NewV4L2Wrapper(const std::string device_path); 94 V4L2Wrapper(const std::string device_path);
|
/external/autotest/client/cros/bluetooth/ |
bluetooth_device_xmlrpc_server.py | 60 def RequestPinCode(self, device_path): 65 @param device_path: The object path of the device. 70 logging.info('RequestPinCode for %s; return %s', device_path, self._pin) 913 def _set_trusted_by_path(self, device_path, trusted=True): 916 @param device_path: the object path of the device. 924 device_path) [all...] |
/external/webrtc/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/walt/android/WALT/app/src/main/jni/ |
sync_clock_linux.c | 31 printf("Usage %s <device_path>\n"
|
/system/core/toolbox/ |
getevent.c | 531 const char *device_path = "/dev/input"; local 625 res = inotify_add_watch(ufds[0].fd, device_path, IN_DELETE | IN_CREATE); 627 fprintf(stderr, "could not add watch for %s, %s\n", device_path, strerror(errno)); 630 res = scan_dir(device_path, print_flags); 632 fprintf(stderr, "scan dir failed for %s\n", device_path); 658 read_notify(device_path, ufds[0].fd, print_flags);
|