HomeSort by relevance Sort by last modified time
    Searched refs:host_path (Results 1 - 17 of 17) sorted by null

  /external/chromium_org/tools/telemetry/telemetry/core/platform/profiler/
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/
native_messaging_test_util.cc 27 const base::FilePath& host_path,
33 manifest->SetString("path", host_path.AsUTF8Unsafe());
87 base::FilePath host_path = test_user_data_dir.AppendASCII("echo.py"); local
89 base::FilePath host_path = test_user_data_dir.AppendASCII("echo.bat"); local
92 temp_dir_.path(), kHostName, host_path, user_level));
native_process_launcher.cc 161 base::FilePath host_path = manifest->path(); local
162 if (!host_path.IsAbsolute()) {
166 host_path = manifest_path.DirName().Append(host_path);
177 if (!base::PathExists(host_path)) {
181 << host_path.AsUTF8Unsafe();
186 CommandLine command_line(host_path);
  /external/chromium_org/build/android/gyp/
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/
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/tools/deep_memory_profiler/subcommands/
expand.py 40 target_path, host_path = alternative_dir_pair.split('@', 1)
41 alternative_dirs_dict[target_path] = host_path
cat.py 34 target_path, host_path = alternative_dir_pair.split('@', 1)
35 alternative_dirs_dict[target_path] = host_path
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/importer/
profile_writer.cc 283 const std::string host_path = BuildHostPathKey( local
285 if (!host_path.empty()) {
286 const TemplateURL* existing_turl = (*host_path_map)[host_path];
294 (*host_path_map)[host_path] = template_urls[i];
  /external/chromium_org/tools/find_runtime_symbols/
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/build/android/pylib/
android_commands.py     [all...]
  /external/chromium_org/build/android/pylib/device/
device_utils.py 504 def PushChangedFiles(self, host_path, device_path, timeout=None,
509 host_path: A string containing the absolute path to the file or directory
521 self.old_interface.PushIfNeeded(host_path, device_path)
560 def PullFile(self, device_path, host_path, timeout=None, retries=None):
566 host_path: A string containing the absolute path of the destination on
576 self.old_interface.PullFileFromDevice(device_path, host_path)
784 def TakeScreenshot(self, host_path=None, timeout=None, retries=None):
788 host_path: A string containing the path on the host to save the
801 return self.old_interface.TakeScreenshot(host_path)
device_utils_test.py 428 def mockGetFilesChanged(host_path, device_path, ignore_filenames):
429 return [(host_path, device_path)]
454 def mockGetFilesChanged(host_path, device_path, ignore_filenames):
455 return [(host_path, device_path)]
477 def mockGetFilesChanged(host_path, device_path, ignore_filenames):
    [all...]
  /external/chromium_org/chrome/browser/web_applications/
web_app.cc 293 base::FilePath::StringType host_path(base::UTF8ToUTF16(host));
296 base::FilePath::StringType host_path(host);
300 return app_data_dir.Append(host_path).Append(scheme_port_path);
  /external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/performance_tests/
perftestsrunner.py 334 def _upload_json(self, test_results_server, json_path, host_path="/api/report", file_uploader=FileUploader):
335 url = "https://%s%s" % (test_results_server, host_path)
perftestsrunner_unittest.py 494 def mock_upload_json(hostname, json_path, host_path=None):
498 self.assertIn(host_path, [None, '/api/report'])
    [all...]
  /external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/layout_tests/port/
android.py 208 def push(self, host_path, device_path, ignore_error=False):
209 return self.run(['push', host_path, device_path], ignore_error=ignore_error)
211 def pull(self, device_path, host_path, ignore_error=False):
212 return self.run(['pull', device_path, host_path], ignore_error=ignore_error)
    [all...]

Completed in 1415 milliseconds