HomeSort by relevance Sort by last modified time
    Searched defs:base_dir (Results 1 - 9 of 9) sorted by null

  /external/chromium-trace/catapult/third_party/gsutil/third_party/crcmod/
setup.py 6 base_dir = 'python2' variable
8 base_dir = 'python3' variable
20 'crcmod' : os.path.join(base_dir,'crcmod'),
24 Extension('crcmod._crcfunext', [os.path.join(base_dir,'src/_crcfunext.c'), ],
  /system/tools/aidl/
io_delegate.cpp 123 string base_dir = caller_base_dir; local
124 if (base_dir.empty()) {
125 base_dir = ".";
128 if (base_dir[base_dir.size() - 1] != OS_PATH_SEPARATOR) {
129 base_dir += OS_PATH_SEPARATOR;
131 base_dir += subdir;
134 success = _mkdir(base_dir.c_str()) == 0;
136 success = mkdir(base_dir.c_str(),
141 LOG(ERROR) << "Error while creating " << base_dir << ":
    [all...]
  /external/autotest/client/tests/kvm/
get_started.py 73 base_dir = "/tmp/kvm_autotest_root" variable
76 sub_dir_path = os.path.join(base_dir, sub_dir)
107 destination = os.path.join(base_dir, 'isos', 'linux')
120 destination = os.path.join(base_dir, 'isos', 'windows')
  /external/chromium-trace/catapult/telemetry/telemetry/story/
story_set.py 20 base_dir=None, serving_dirs=None):
25 to self.base_dir.
30 serving_dirs: A set of paths, relative to self.base_dir, to directories
39 if base_dir:
40 if not os.path.isdir(base_dir):
41 raise ValueError('Invalid directory path of base_dir: %s' % base_dir)
42 self._base_dir = base_dir
46 self._serving_dirs = set(os.path.realpath(os.path.join(self.base_dir, d))
68 def base_dir(self) member in class:StorySet
    [all...]
  /external/chromium-trace/catapult/third_party/WebOb/docs/comment-example-code/
example.py 137 base_dir = args[0] variable in class:Commenter
139 app = StaticURLParser(base_dir)
  /external/v8/tools/release/
test_mergeinfo.py 20 base_dir = TEST_CONFIG["GIT_REPO"] variable in class:TestMergeInfo
24 fullCommand = ["git", "-C", self.base_dir] + git_args
34 if path.exists(self.base_dir):
35 shutil.rmtree(self.base_dir)
37 check_call(["git", "init", self.base_dir])
45 if path.exists(self.base_dir):
46 shutil.rmtree(self.base_dir)
78 self.base_dir,
90 self.base_dir,
110 self.base_dir,
    [all...]
test_search_related_commits.py 20 base_dir = TEST_CONFIG["GIT_REPO"] variable in class:TestSearchRelatedCommits
24 fullCommand = ["git", "-C", self.base_dir] + git_args
34 if path.exists(self.base_dir):
35 shutil.rmtree(self.base_dir)
37 check_call(["git", "init", self.base_dir])
60 if path.exists(self.base_dir):
61 shutil.rmtree(self.base_dir)
102 self.base_dir, hash_of_first_commit, "HEAD", None)
122 self.base_dir, hash_of_first_commit, "HEAD", None)
146 self.base_dir,
    [all...]
  /external/chromium-trace/catapult/telemetry/telemetry/page/
__init__.py 19 def __init__(self, url, page_set=None, base_dir=None, name='',
35 # Default value of base_dir is the directory of the file that defines the
37 if base_dir is None:
38 base_dir = os.path.dirname(inspect.getfile(self.__class__))
39 self._base_dir = base_dir
182 def base_dir(self): member in class:Page
  /external/valgrind/coregrind/
m_options.c 167 const HChar *base_dir; local
172 base_dir = VG_(get_startup_wd)();
275 len = VG_(strlen)(base_dir) + 1 + VG_(strlen)(out) + 1;
278 VG_(strcpy)(absout, base_dir);

Completed in 178 milliseconds