/third_party/skia/infra/bots/recipe_modules/flavor/ |
H A D | ssh.py | 50 device_path = self.device_path_join(self.device_dirs.bin_dir, self.app_name) 51 self.copy_file_to_device(host_path, device_path) 52 self.ssh('make %s executable' % self.app_name, 'chmod', '+x', device_path) 69 def scp_device_path(self, device_path): 70 return '%s:%s' % (self.user_ip, device_path) 72 def copy_file_to_device(self, host_path, device_path): 73 device_path = self.scp_device_path(device_path) 74 self._run('scp %s %s' % (host_path, device_path), 75 ['scp', host_path, device_path], infra_ste [all...] |
H A D | chromebook.py | 52 def copy_directory_contents_to_device(self, host_path, device_path): 53 self._copy_dir(host_path, self.scp_device_path(device_path)) 55 def copy_directory_contents_to_host(self, device_path, host_path): 56 self._copy_dir(self.scp_device_path(device_path), host_path)
|
H A D | api.py | 93 def copy_file_to_device(self, host_path, device_path): 94 return self._f.copy_file_to_device(host_path, device_path) 135 host_path, device_path): 148 self.create_clean_device_dir(device_path) 150 host_path, device_path)
|
H A D | default.py | 66 'host_path and device_path are the same (%s vs %s).' % ( 76 'host_path and device_path are the same (%s vs %s).' % ( 79 def copy_file_to_device(self, host_path, device_path): 83 if str(host_path) != str(device_path): 86 'host_path and device_path are the same (%s vs %s).' % ( 87 str(host_path), str(device_path)))
|
/third_party/cups-filters/cupsfilters/ |
H A D | colord.c | 268 char *device_path = NULL; in get_device_path_for_device_id() local 304 device_path = strdup(device_path_tmp); in get_device_path_for_device_id() 310 return device_path; in get_device_path_for_device_id() 318 char *device_path = NULL; in colord_get_profile_for_device_id() local 335 device_path = get_device_path_for_device_id (con, device_id); in colord_get_profile_for_device_id() 336 if (device_path == NULL) { in colord_get_profile_for_device_id() 342 filename = get_profile_for_device_path(con, device_path, qualifier_tuple); in colord_get_profile_for_device_id() 349 free(device_path); in colord_get_profile_for_device_id() 420 char *device_path = NULL; in colord_get_inhibit_for_device_id() local 432 device_path in colord_get_inhibit_for_device_id() [all...] |
/third_party/gn/src/base/files/ |
H A D | file_util_win.cc | 448 // to it. If that junction is a prefix of |device_path|, then we in DevicePathToDriveLetterPath() 455 FilePath device_path(device_path_as_string); in DevicePathToDriveLetterPath() 456 if (device_path == nt_device_path || in DevicePathToDriveLetterPath() 457 device_path.IsParent(nt_device_path)) { in DevicePathToDriveLetterPath() 472 // letter path to the volume that holds |device_path|, so fail. in DevicePathToDriveLetterPath()
|
H A D | file_util.h | 229 bool DevicePathToDriveLetterPath(const FilePath& device_path,
|
/third_party/mesa3d/src/drm-shim/ |
H A D | drm_shim.c | 100 static char *device_path; variable 241 nfasprintf(&device_path, in init_shim() 640 if (strcmp(path, device_path) != 0) in realpath()
|
/third_party/pulseaudio/src/modules/bluetooth/ |
H A D | bluez5-util.c | 394 char *device_path; member 416 device = pa_hashmap_get(y->devices, data->device_path); in pa_bluetooth_device_switch_codec_reply() 419 data->device_path, pa_bluetooth_profile_to_string(data->profile)); in pa_bluetooth_device_switch_codec_reply() 423 data->device_path, pa_bluetooth_profile_to_string(data->profile)); in pa_bluetooth_device_switch_codec_reply() 427 data->device_path, pa_bluetooth_profile_to_string(data->profile), in pa_bluetooth_device_switch_codec_reply() 434 pa_xfree(data->device_path); in pa_bluetooth_device_switch_codec_reply() 499 data->device_path = pa_xstrdup(device->path); in pa_bluetooth_device_switch_codec() 1886 const char *device_path = NULL; in parse_remote_endpoint_properties() local 1946 dbus_message_iter_get_basic(&variant_i, &device_path); in parse_remote_endpoint_properties() 1967 if (!device_path) { in parse_remote_endpoint_properties() [all...] |
/third_party/ffmpeg/libavdevice/ |
H A D | kmsgrab.c | 66 const char *device_path; member 421 ctx->device_path, NULL, 0); in kmsgrab_read_header() 683 OFFSET(device_path), AV_OPT_TYPE_STRING,
|
H A D | v4l2.c | 124 static int device_open(AVFormatContext *ctx, const char* device_path) in device_open() argument 165 fd = v4l2_open(device_path, flags, 0); in device_open() 169 device_path, av_err2str(err)); in device_open()
|
/third_party/libinput/tools/ |
H A D | libinput-record.c | 1900 char *device_path; in select_device() local 1956 rc = xasprintf(&device_path, "/dev/input/event%d", selected_device); in select_device() 1960 return device_path; in select_device() 1976 char *device_path; in all_devices() local 1978 int rc = xasprintf(&device_path, in all_devices() 1984 devices[i] = device_path; in all_devices()
|
/third_party/libdrm/ |
H A D | xf86drm.c | 3520 static int get_subsystem_type(const char *device_path) in get_subsystem_type() argument 3537 strncpy(path, device_path, PATH_MAX); in get_subsystem_type()
|