Searched refs:work_dir (Results 1 - 5 of 5) sorted by relevance

/external/chromium_org/chrome/installer/util/
H A Dself_cleaning_temp_dir_unittest.cc69 base::ScopedTempDir work_dir; local
70 EXPECT_TRUE(work_dir.CreateUniqueTempDir());
73 base::FilePath parent_temp_dir(work_dir.path().Append(L"One").Append(L"Two"));
83 EXPECT_TRUE(work_dir.Delete());
90 base::ScopedTempDir work_dir; local
91 EXPECT_TRUE(work_dir.CreateUniqueTempDir());
94 base::FilePath parent_temp_dir(work_dir.path().Append(L"One").Append(L"Two"));
119 EXPECT_TRUE(work_dir.Delete());
127 base::ScopedTempDir work_dir; local
128 EXPECT_TRUE(work_dir
152 base::ScopedTempDir work_dir; local
[all...]
/external/chromium_org/tools/ipc_fuzzer/mutate/
H A Dcf_package_builder.py44 self.work_dir = tempfile.mkdtemp()
45 os.chdir(self.work_dir)
49 shutil.rmtree(self.work_dir)
/external/chromium_org/chrome/installer/test/
H A Dalternate_version_generator.cc268 // Retrieves the version number of setup.exe in |work_dir| from its version
270 bool GetSetupExeVersion(const base::FilePath& work_dir, argument
272 return GetFileVersion(work_dir.Append(&kSetupExe[0]), version);
415 // Raises or lowers the version of all .exe and .dll files in |work_dir| as well
419 bool ApplyAlternateVersion(const base::FilePath& work_dir, argument
424 if (!GetSetupExeVersion(work_dir, &ctx.current_version)) {
435 base::FileEnumerator all_files(work_dir, true, base::FileEnumerator::FILES);
448 base::FilePath chrome_bin = work_dir.Append(&kChromeBin[0]);
519 ScopedTempDirectory work_dir; local
520 if (!work_dir
[all...]
/external/chromium_org/chrome/installer/mini_installer/
H A Dmini_installer.cc537 // of created directory in |work_dir|. If successful return true, otherwise
538 // false. When successful, the returned |work_dir| will always have a trailing
546 bool CreateWorkDir(const wchar_t* base_path, PathString* work_dir) { argument
547 if (!work_dir->assign(base_path) || !work_dir->append(kTempPrefix))
551 size_t end = work_dir->length();
557 if ((work_dir->capacity() - end) < (arraysize("fffff.tmp") + 1))
570 if (!HexEncode(&id, sizeof(id), work_dir->get() + end,
571 work_dir->capacity() - end)) {
577 work_dir
594 GetWorkDir(HMODULE module, PathString* work_dir) argument
[all...]
/external/chromium_org/third_party/cython/src/
H A Druntests.py1634 parser.add_option("--work-dir", dest="work_dir", default=os.path.join(os.getcwd(), 'BUILD'),
1647 WORKDIR = os.path.abspath(options.work_dir)
1743 WORKDIR = os.path.abspath(options.work_dir)

Completed in 482 milliseconds