Searched defs:base_dir (Results 1 - 25 of 37) sorted by last modified time

12

/external/valgrind/main/coregrind/
H A Dm_options.c143 static HChar base_dir[VKI_PATH_MAX]; local
147 Bool ok = VG_(get_startup_wd)(base_dir, VKI_PATH_MAX);
256 len = VG_(strlen)(base_dir) + 1 + VG_(strlen)(out) + 1;
259 VG_(strcpy)(absout, base_dir);
/external/oprofile/gui/
H A Doprof_start_util.cpp285 * @param base_dir directory to start at
291 string const do_open_file_or_dir(string const & base_dir, bool dir_only) argument
296 result = QFileDialog::getExistingDirectory(base_dir.c_str(), 0,
299 result = QFileDialog::getOpenFileName(base_dir.c_str(), 0, 0,
/external/oprofile/libpp/
H A Dprofile_spec.cpp376 bool valid_candidate(string const & base_dir, string const & filename, argument
384 string const & sub = filename.substr(base_dir.size(), string::npos);
430 unsigned int j = base_dir.rfind('/');
431 string session_samples_dir = base_dir.substr(0, j);
530 string base_dir; local
533 base_dir = archive_path + op_samples_dir;
534 base_dir += *cit;
536 base_dir = op_realpath(base_dir);
539 create_file_list(files, base_dir, "*", tru
[all...]
/external/oprofile/libutil/
H A Dop_file.c116 char const * base_dir, char const * filter,
139 if (!(dir = opendir(base_dir)))
158 name = make_pathname_from_dirent(base_dir, ent,
173 name = make_pathname_from_dirent(base_dir, ent,
115 get_matching_pathnames(void * name_list, get_pathname_callback getpathname, char const * base_dir, char const * filter, enum recursion_type recursion) argument
/external/oprofile/libutil++/
H A Dfile_manip.cpp120 bool create_file_list(list<string> & file_list, string const & base_dir, argument
124 base_dir.c_str(), filter.c_str(),
/external/chromium_org/tools/chrome_proxy/
H A Drun_benchmark17 base_dir = os.path.dirname(os.path.realpath(__file__)) variable
18 test_runner.config = environment.Environment([base_dir])
H A Drun_tests22 base_dir = os.path.dirname(os.path.realpath(__file__)) variable
25 run_tests.config = run_tests.Config(base_dir, [base_dir], progress_reporters)
/external/chromium_org/tools/perf/
H A Drun_benchmark16 base_dir = os.path.dirname(os.path.realpath(__file__)) variable
24 test_runner.config = environment.Environment([base_dir], test_aliases)
H A Drun_tests21 base_dir = os.path.dirname(os.path.realpath(__file__)) variable
24 run_tests.config = run_tests.Config(base_dir, [base_dir], progress_reporters)
/external/chromium_org/tools/telemetry/
H A Drun_tests14 base_dir = os.path.dirname(os.path.realpath(__file__)) variable
17 run_tests.config = run_tests.Config(base_dir, [base_dir], progress_reporters)
/external/chromium_org/tools/telemetry/telemetry/page/
H A Dpage_set.py51 self.serving_dirs.add(os.path.realpath(os.path.join(self.base_dir, sd)))
77 page_url, self, self.base_dir))
88 def base_dir(self): member in class:PageSet
100 os.path.join(self.base_dir, self.archive_data_file)))
/external/chromium_org/content/test/gpu/
H A Drun_gpu_test.py17 base_dir = os.path.dirname(os.path.realpath(__file__)) variable
18 test_runner.config = environment.Environment([base_dir])
H A Drun_unittests23 base_dir = os.path.dirname(os.path.realpath(__file__)) variable
26 run_tests.config = run_tests.Config(base_dir, [base_dir], progress_reporters)
/external/chromium_org/components/url_fixer/
H A Durl_fixer.cc596 GURL url_fixer::FixupRelativeFile(const base::FilePath& base_dir, argument
599 if (!base_dir.empty()) {
602 base::SetCurrentDirectory(base_dir);
634 if (!base_dir.empty())
/external/chromium_org/content/browser/download/
H A Dsave_package.cc396 const base::FilePath& base_dir) {
399 static_cast<uint32>(base_dir.value().length()) +
395 GetMaxPathLengthForDirectory( const base::FilePath& base_dir) argument
/external/chromium_org/content/browser/fileapi/
H A Dcopy_or_move_file_validator_unittest.cc57 base::FilePath base_dir = base_.path(); local
59 file_system_context_ = CreateFileSystemContextForTesting(NULL, base_dir);
H A Dcopy_or_move_operation_delegate_unittest.cc191 base::FilePath base_dir = base_.path(); local
194 base_dir,
201 CreateFileSystemContextForTesting(quota_manager_proxy_.get(), base_dir);
H A Dfile_system_operation_impl_unittest.cc58 base::FilePath base_dir = base_.path().AppendASCII("filesystem"); variable
61 base_dir,
67 sandbox_file_system_.SetUp(base_dir, quota_manager_proxy_.get());
H A Dfile_system_operation_runner_unittest.cc47 base::FilePath base_dir = base_.path(); variable
49 CreateFileSystemContextForTesting(NULL, base_dir);
H A Dobfuscated_file_util_unittest.cc624 void TestDirectoryTimestampHelper(const FileSystemURL& base_dir, argument
629 FileSystemURLAppendUTF8(base_dir, "foo_dir"));
631 FileSystemURLAppendUTF8(base_dir, "bar_dir"));
/external/chromium_org/content/public/test/
H A Dsandbox_file_system_test_helper.cc45 void SandboxFileSystemTestHelper::SetUp(const base::FilePath& base_dir) { argument
46 SetUp(base_dir, NULL);
57 const base::FilePath& base_dir,
60 quota_manager_proxy, base_dir);
56 SetUp( const base::FilePath& base_dir, storage::QuotaManagerProxy* quota_manager_proxy) argument
/external/chromium_org/chrome/installer/util/
H A Dself_cleaning_temp_dir.cc15 // Populates |base_dir| with the topmost directory in the hierarchy of
17 // |base_dir| is cleared.
21 base::FilePath* base_dir) {
22 DCHECK(base_dir);
25 // Empty base_dir means that we didn't create any extra directories.
26 base_dir->clear();
30 *base_dir = parent_dir;
32 } while (parent_dir != *base_dir && !base::PathExists(parent_dir));
58 base::FilePath base_dir; local
59 GetTopDirToCreate(parent_dir, &base_dir);
19 GetTopDirToCreate( const base::FilePath& temp_parent_dir, base::FilePath* base_dir) argument
[all...]
H A Dself_cleaning_temp_dir_unittest.cc50 base::FilePath base_dir; local
51 SelfCleaningTempDir::GetTopDirToCreate(base::FilePath(L"C:\\"), &base_dir);
52 EXPECT_TRUE(base_dir.empty());
58 base::FilePath base_dir; local
61 SelfCleaningTempDir::GetTopDirToCreate(parent_dir, &base_dir);
62 EXPECT_EQ(parent_dir, base_dir);
/external/chromium_org/chrome/test/remoting/
H A Dwebapp_javascript_unittest.cc15 base::FilePath base_dir; local
16 ASSERT_TRUE(PathService::Get(base::DIR_EXE, &base_dir));
21 base_dir = base::mac::GetAppBundlePath(base_dir).DirName();
25 base_dir.Append(FILE_PATH_LITERAL("remoting/unittests/unittest.html")));
/external/chromium_org/chromecast/common/
H A Dcast_paths.cc33 base::FilePath base_dir; local
34 CHECK(PathService::Get(base::DIR_ANDROID_APP_DATA, &base_dir));
35 *result = base_dir.AppendASCII("cast_shell.log");
51 base::FilePath base_dir; local
53 CHECK(PathService::Get(base::DIR_ANDROID_APP_DATA, &base_dir));
54 *result = base_dir.Append("paks/cast_shell.pak");
56 CHECK(PathService::Get(base::DIR_MODULE, &base_dir));
57 *result = base_dir.Append("assets/cast_shell.pak");

Completed in 1321 milliseconds

12