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

  /external/oprofile/libpp/
locate_images.cpp 56 archive_path = archive_path_;
57 if (!archive_path.empty())
58 archive_path = op_realpath(archive_path);
64 if (root_path.empty() && archive_path.empty())
66 if (!archive_path.empty())
67 populate(paths, archive_path);
68 if (!root_path.empty() && root_path != archive_path)
132 if (!archive_path.empty()) {
133 string image = op_realpath(archive_path + image_name)
    [all...]
locate_images.h 36 std::string const & archive_path,
73 std::string get_archive_path() const { return archive_path; }
76 /// a filename with the archive_path or root_path stripped.
96 std::string archive_path; member in class:extra_images
profile_spec.h 122 std::string archive_path; member in class:profile_spec
profile_spec.cpp 104 archive_path = op_realpath(str);
110 return archive_path;
533 base_dir = archive_path + op_samples_dir;
populate_for_spu.cpp 54 string archive_path = samples.extra_found_images.get_archive_path(); local
  /development/scripts/
divide_and_compress.py 155 def RemoveLastFile(self, archive_path=None):
163 archive_path: Path to the archive to modify. This archive should not be
169 if archive_path is None:
170 archive_path = os.path.join(self.output_dir, self.current_archive)
173 root, ext = os.path.splitext(archive_path)
175 os.rename(archive_path, old_archive)
182 new_fp = self.OpenZipFileAtPath(archive_path,
291 archive_path = os.path.join(self.output_dir, self.current_archive)
295 archive_obj = self.OpenZipFileAtPath(archive_path, mode='r')
305 os.unlink(archive_path)
    [all...]
  /external/chromium_org/chrome/test/functional/
webpagereplay.py 78 with ReplayServer(archive_path):
88 def __init__(self, archive_path, replay_host, http_port, https_port,
94 archive_path: a path to a specific WPR archive (required).
104 self.archive_path = os.environ.get('WPR_ARCHIVE_PATH', archive_path)
120 self._CheckPath('archive directory', os.path.dirname(self.archive_path))
121 elif not os.path.exists(self.archive_path):
122 self._CheckPath('archive file', self.archive_path)
196 cmd_line.append(self.archive_path)
perf_endure.py     [all...]
perf.py     [all...]
  /external/chromium_org/tools/telemetry/telemetry/page/
page_set_archive_info.py 25 for archive_path in data['archives']:
26 archive_path = self._WprFileNameToPath(archive_path)
28 cloud_storage.GetIfChanged(cloud_storage.INTERNAL_BUCKET, archive_path)
31 if os.path.exists(archive_path):
34 logging.warning('Could not download WPR archive: %s', archive_path)
42 archive_path)
page_runner.py 41 credentials_path, archive_path):
49 self.browser.SetReplayArchivePath(archive_path,
52 self._last_archive_path = page.archive_path
80 if page.archive_path and self._last_archive_path != page.archive_path:
82 page.archive_path,
85 self._last_archive_path = page.archive_path
204 if page.archive_path and os.path.isfile(page.archive_path)
215 credentials_path, page.archive_path)
    [all...]
page_set_unittest.py 52 self.assertEquals('data_01.wpr', os.path.basename(ps.pages[0].archive_path))
53 self.assertEquals('data_02.wpr', os.path.basename(ps.pages[1].archive_path))
page.py 108 def archive_path(self): member in class:Page
  /external/oprofile/pp/
oparchive.cpp 58 string const & archive_path)
70 string sample_base_dir = session_samples_dir.substr(archive_path.size());
106 string archive_path = classes.extra_found_images.get_archive_path(); local
194 copy_stats(base_samples_dir, archive_path);
200 /* Get rid of the the archive_path from the name */
201 string sample_base = sample_name.substr(archive_path.size());
219 copy_one_file(image_ok, archive_path + abi_name,
224 copy_one_file(image_ok, archive_path + log_name,
  /external/chromium_org/chrome/installer/mini_installer/
mini_installer.cc 378 const wchar_t* base_path, PathString* archive_path,
390 archive_path,
399 archive_path->length() == 0)
487 bool RunSetup(const Configuration& configuration, const wchar_t* archive_path,
508 !cmd_line.append(archive_path) ||
521 const wchar_t* archive_path,
523 ::DeleteFile(archive_path);
796 PathString archive_path; local
799 &archive_path, &setup_path)) {
806 if (!RunSetup(configuration, archive_path.get(), setup_path.get()
    [all...]
  /external/chromium_org/chrome/installer/setup/
install.h 95 // archive_path: Path to the archive (chrome.7z) as it will be copied
112 const base::FilePath& archive_path,
install_worker.h 96 // archive_path: Path to the archive (chrome.7z) as it will be copied
106 const base::FilePath& archive_path,
install_worker.cc 125 const base::FilePath& archive_path,
155 base::FilePath archive_dst(installer_dir.Append(archive_path.BaseName()));
156 if (archive_path != archive_dst) {
163 if (temp_path.IsParent(archive_path)) {
164 install_list->AddMoveTreeWorkItem(archive_path.value(),
173 install_list->AddCopyTreeWorkItem(archive_path.value(),
423 const base::FilePath& archive_path,
440 if (archive_path != old_archive) {
    [all...]
install.cc 164 // archive_path: Path to the archive (chrome.7z) as it will be copied
184 const base::FilePath& archive_path,
199 archive_path,
504 const base::FilePath& archive_path,
528 setup_path, archive_path, src_path, install_temp_path, new_version,
  /external/chromium_org/native_client_sdk/src/build_tools/sdk_tools/command/
update.py 177 archive_path = os.path.join(self.archive_cache, archive)
181 i + 1, len(archives), os.path.basename(archive_path))
186 logging.info('Opening file %s (%d/%d).' % (archive_path, i + 1,
189 tar_file = cygtar.CygTar(archive_path, 'r', verbose=True)
191 raise Error("Can't open archive '%s'.\n %s" % (archive_path, e))
199 subprocess.check_call(['tar', 'xf', archive_path])
201 raise Error('Error extracting archive: %s' % archive_path)
  /external/chromium_org/tools/telemetry/telemetry/core/
browser.py 330 def SetReplayArchivePath(self, archive_path, append_to_existing_wpr=False,
336 if not archive_path:
344 assert os.path.isfile(archive_path)
348 archive_path,
  /external/oprofile/libutil++/
op_bfd.h 265 std::string archive_path; member in class:op_bfd
op_spu_bfd.cpp 45 archive_path(extra_images.get_archive_path()),
op_bfd.cpp 104 archive_path(extra_images.get_archive_path()),

Completed in 2828 milliseconds