/external/chromium_org/tools/telemetry/telemetry/core/platform/profiler/ |
D | android_prebuilt_profiler_helper.py | 22 host_path = support_binaries.FindPath(profiler_binary, 'android') 23 if not host_path: 25 host_path) 29 device.PushChangedFiles(host_path, device_binary_path)
|
/external/chromium_org/chrome/browser/extensions/api/messaging/ |
D | native_messaging_test_util.cc | 27 const base::FilePath& host_path, in WriteTestNativeHostManifest() argument 33 manifest->SetString("path", host_path.AsUTF8Unsafe()); in WriteTestNativeHostManifest() 87 base::FilePath host_path = test_user_data_dir.AppendASCII("echo.py"); in RegisterTestHost() local 89 base::FilePath host_path = test_user_data_dir.AppendASCII("echo.bat"); in RegisterTestHost() local 92 temp_dir_.path(), kHostName, host_path, user_level)); in RegisterTestHost()
|
D | native_process_launcher.cc | 161 base::FilePath host_path = manifest->path(); in DoLaunchOnThreadPool() local 162 if (!host_path.IsAbsolute()) { in DoLaunchOnThreadPool() 166 host_path = manifest_path.DirName().Append(host_path); in DoLaunchOnThreadPool() 177 if (!base::PathExists(host_path)) { in DoLaunchOnThreadPool() 181 << host_path.AsUTF8Unsafe(); in DoLaunchOnThreadPool() 186 CommandLine command_line(host_path); in DoLaunchOnThreadPool()
|
/external/chromium_org/build/android/gyp/ |
D | push_libraries.py | 37 host_path = os.path.join(options.libraries_dir, lib) 43 device.PushChangedFiles(host_path, device_path) 45 record_path = '%s.%s.push.md5.stamp' % (host_path, serial_number) 49 input_paths=[host_path],
|
/external/chromium_org/remoting/tools/ |
D | register_local_nm_hosts.sh | 17 local host_path="$2" 25 echo Registering ${host_path} in ${target_manifest} 27 sed -e "s#{{ ${host_path_var_name} }}#${host_path}#g" \
|
/external/chromium_org/build/android/pylib/ |
D | android_commands.py | 959 def _RunMd5Sum(self, host_path, device_path): argument 985 assert os.path.exists(host_path), 'Local path not found %s' % host_path 988 host_path]) 992 def GetFilesChanged(self, host_path, device_path, ignore_filenames=False): argument 1013 real_host_path = os.path.realpath(host_path) 1054 def PushIfNeeded(self, host_path, device_path): argument 1063 if not os.path.exists(host_path): 1065 'Local path not found %s' % host_path, device=str(self)) 1070 if not os.path.isdir(host_path): 1071 if host_path in self._push_if_needed_cache: [all …]
|
/external/chromium_org/build/android/pylib/device/ |
D | device_utils.py | 504 def PushChangedFiles(self, host_path, device_path, timeout=None, argument 521 self.old_interface.PushIfNeeded(host_path, device_path) 560 def PullFile(self, device_path, host_path, timeout=None, retries=None): argument 576 self.old_interface.PullFileFromDevice(device_path, host_path) 784 def TakeScreenshot(self, host_path=None, timeout=None, retries=None): argument 801 return self.old_interface.TakeScreenshot(host_path)
|
D | device_utils_test.py | 428 def mockGetFilesChanged(host_path, device_path, ignore_filenames): argument 429 return [(host_path, device_path)] 454 def mockGetFilesChanged(host_path, device_path, ignore_filenames): argument 455 return [(host_path, device_path)] 477 def mockGetFilesChanged(host_path, device_path, ignore_filenames): argument
|
/external/chromium_org/tools/find_runtime_symbols/ |
D | prepare_symbol_info.py | 155 for target_path, host_path in alternative_dirs.iteritems(): 157 binary_path = entry.name.replace(target_path, host_path, 1) 225 target_path, host_path = alternative_dir_pair.split('@', 1) 226 alternative_dirs_dict[target_path] = host_path
|
/external/chromium_org/chrome/browser/importer/ |
D | profile_writer.cc | 283 const std::string host_path = BuildHostPathKey( in BuildHostPathMap() local 285 if (!host_path.empty()) { in BuildHostPathMap() 286 const TemplateURL* existing_turl = (*host_path_map)[host_path]; in BuildHostPathMap() 294 (*host_path_map)[host_path] = template_urls[i]; in BuildHostPathMap()
|
/external/chromium_org/tools/deep_memory_profiler/subcommands/ |
D | expand.py | 40 target_path, host_path = alternative_dir_pair.split('@', 1) 41 alternative_dirs_dict[target_path] = host_path
|
D | cat.py | 34 target_path, host_path = alternative_dir_pair.split('@', 1) 35 alternative_dirs_dict[target_path] = host_path
|
D | policies.py | 40 target_path, host_path = alternative_dir_pair.split('@', 1) 41 alternative_dirs_dict[target_path] = host_path
|
/external/chromium_org/chrome/browser/web_applications/ |
D | web_app.cc | 293 base::FilePath::StringType host_path(base::UTF8ToUTF16(host)); in GetWebAppDataDirectory() local 296 base::FilePath::StringType host_path(host); in GetWebAppDataDirectory() local 300 return app_data_dir.Append(host_path).Append(scheme_port_path); in GetWebAppDataDirectory()
|
/external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/performance_tests/ |
D | perftestsrunner.py | 334 …def _upload_json(self, test_results_server, json_path, host_path="/api/report", file_uploader=File… argument 335 url = "https://%s%s" % (test_results_server, host_path)
|
D | perftestsrunner_unittest.py | 494 def mock_upload_json(hostname, json_path, host_path=None): argument 498 self.assertIn(host_path, [None, '/api/report'])
|
/external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/layout_tests/port/ |
D | android.py | 208 def push(self, host_path, device_path, ignore_error=False): argument 209 return self.run(['push', host_path, device_path], ignore_error=ignore_error) 211 def pull(self, device_path, host_path, ignore_error=False): argument 212 return self.run(['pull', device_path, host_path], ignore_error=ignore_error)
|