HomeSort by relevance Sort by last modified time
    Searched refs:basepath (Results 1 - 25 of 35) sorted by null

1 2

  /external/ltp/testcases/kernel/controllers/cpuset/cpuset_lib/
common.h 40 #define while_each_childdir(basepath, p_relpath, c_relpath, c_pathlen) \
49 if (basepath[strlen(basepath) - 1] == '/' \
53 snprintf(fullpath, sizeof(fullpath), "%s%s", basepath, \
71 start = strlen(basepath); \
72 if (basepath[start - 1] == '/') \
  /external/python/cpython3/Lib/test/test_tools/
__init__.py 7 basepath = os.path.dirname( # <src/install dir> variable
12 toolsdir = os.path.join(basepath, 'Tools')
test_unparse.py 11 from test.test_tools import basepath, toolsdir, skip_if_missing
275 test_dir = os.path.join(basepath, d)
  /test/vts/drivers/hal/common/include/driver_base/
DriverBase.h 80 bool ScanAllGcdaFiles(const string& basepath,
84 bool ReadGcdaFile(const string& basepath, const string& filename,
  /external/python/cpython2/Lib/lib-tk/test/
runtktests.py 23 def get_tests_modules(basepath=this_dir_path, gui=True, packages=None):
25 and are inside packages found in the path starting at basepath.
32 for dirpath, dirnames, filenames in os.walk(basepath):
38 pkg_name = dirpath[len(basepath) + len(os.sep):].replace('/', '.')
  /external/python/cpython3/Lib/tkinter/test/
runtktests.py 21 def get_tests_modules(basepath=this_dir_path, gui=True, packages=None):
23 and are inside packages found in the path starting at basepath.
30 for dirpath, dirnames, filenames in os.walk(basepath):
36 pkg_name = dirpath[len(basepath) + len(os.sep):].replace('/', '.')
  /prebuilts/gdb/darwin-x86/lib/python2.7/lib-tk/test/
runtktests.py 66 def get_tests_modules(basepath=this_dir_path, gui=True, packages=None):
68 and are inside packages found in the path starting at basepath.
75 for dirpath, dirnames, filenames in os.walk(basepath):
81 pkg_name = dirpath[len(basepath) + len(os.sep):].replace('/', '.')
  /prebuilts/gdb/linux-x86/lib/python2.7/lib-tk/test/
runtktests.py 66 def get_tests_modules(basepath=this_dir_path, gui=True, packages=None):
68 and are inside packages found in the path starting at basepath.
75 for dirpath, dirnames, filenames in os.walk(basepath):
81 pkg_name = dirpath[len(basepath) + len(os.sep):].replace('/', '.')
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/lib-tk/test/
runtktests.py 66 def get_tests_modules(basepath=this_dir_path, gui=True, packages=None):
68 and are inside packages found in the path starting at basepath.
75 for dirpath, dirnames, filenames in os.walk(basepath):
81 pkg_name = dirpath[len(basepath) + len(os.sep):].replace('/', '.')
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/lib-tk/test/
runtktests.py 66 def get_tests_modules(basepath=this_dir_path, gui=True, packages=None):
68 and are inside packages found in the path starting at basepath.
75 for dirpath, dirnames, filenames in os.walk(basepath):
81 pkg_name = dirpath[len(basepath) + len(os.sep):].replace('/', '.')
  /external/lisa/libs/utils/
conf.py 42 basepath = os.path.dirname(__file__).replace('/libs/utils', '')
43 filepath = os.path.join(basepath, filepath)
env.py 49 basepath = os.path.dirname(os.path.realpath(__file__)) variable
50 basepath = basepath.replace('/libs/utils', '') variable
235 self._log.info('Using base path: %s', basepath)
287 self.res_dir = os.path.join(basepath, 'results', self.res_dir)
289 self.res_dir = os.path.join(basepath, OUT_PREFIX)
300 res_lnk = os.path.join(basepath, LATEST_LINK)
334 conf_file = os.path.join(basepath, filepath)
694 binary = '{}/tools/scripts/{}'.format(basepath, tool)
697 .format(basepath, self.target.abi, tool
    [all...]
  /test/vts/drivers/hal/common/driver_base/
DriverBase.cpp 219 bool DriverBase::ReadGcdaFile(const string& basepath, const string& filename,
225 string buffer = basepath + "/" + filename;
277 bool DriverBase::ScanAllGcdaFiles(const string& basepath,
279 DIR* srcdir = opendir(basepath.c_str());
281 LOG(ERROR) << "Couln't open " << basepath;
288 LOG(DEBUG) << "readdir(" << basepath << ") for " << dent->d_name;
299 ScanAllGcdaFiles(basepath + "/" + dent->d_name, msg);
301 ReadGcdaFile(basepath, dent->d_name, msg);
316 LOG(WARNING) << "No gcov basepath set";
  /external/sl4a/Docs/
generate_api_reference_md.py 108 def __init__(self, basepath):
109 """Construct based on all the *Facade.java files in the given basepath."""
112 for path, dirs, files in os.walk(basepath):
219 basepath = os.path.abspath(os.path.join(os.path.dirname( variable
221 g = DocGenerator(basepath)
222 g.WriteOutput(os.path.join(basepath, 'Docs/ApiReference.md'))
  /external/devlib/devlib/module/
cpuidle.py 99 basepath = '/sys/devices/system/cpu/'
100 values_tree = self.target.read_tree_values(basepath, depth=4, check_exit_code=False)
116 path=self.target.path.join(basepath, cpu_id, 'cpuidle', state_id),
  /prebuilts/go/darwin-x86/src/path/filepath/
path.go 256 // joined to basepath with an intervening separator. That is,
257 // Join(basepath, Rel(basepath, targpath)) is equivalent to targpath itself.
258 // On success, the returned path will always be relative to basepath,
259 // even if basepath and targpath share no elements.
260 // An error is returned if targpath can't be made relative to basepath or if
263 func Rel(basepath, targpath string) (string, error) {
264 baseVol := VolumeName(basepath)
266 base := Clean(basepath)
280 return "", errors.New("Rel: can't make " + targpath + " relative to " + basepath)
    [all...]
  /prebuilts/go/linux-x86/src/path/filepath/
path.go 256 // joined to basepath with an intervening separator. That is,
257 // Join(basepath, Rel(basepath, targpath)) is equivalent to targpath itself.
258 // On success, the returned path will always be relative to basepath,
259 // even if basepath and targpath share no elements.
260 // An error is returned if targpath can't be made relative to basepath or if
263 func Rel(basepath, targpath string) (string, error) {
264 baseVol := VolumeName(basepath)
266 base := Clean(basepath)
280 return "", errors.New("Rel: can't make " + targpath + " relative to " + basepath)
    [all...]
  /prebuilts/gdb/darwin-x86/lib/python2.7/test/
test_tools.py 23 basepath = os.path.join(os.path.dirname(os.path.dirname(os.path.dirname(__file__))), variable
25 scriptsdir = os.path.join(basepath, 'scripts')
  /prebuilts/gdb/linux-x86/lib/python2.7/test/
test_tools.py 23 basepath = os.path.join(os.path.dirname(os.path.dirname(os.path.dirname(__file__))), variable
25 scriptsdir = os.path.join(basepath, 'scripts')
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_tools.py 23 basepath = os.path.join(os.path.dirname(os.path.dirname(os.path.dirname(__file__))), variable
25 scriptsdir = os.path.join(basepath, 'scripts')
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_tools.py 23 basepath = os.path.join(os.path.dirname(os.path.dirname(os.path.dirname(__file__))), variable
25 scriptsdir = os.path.join(basepath, 'scripts')
  /external/python/cpython2/Lib/test/
test_tools.py 25 basepath = os.path.join(os.path.dirname(os.path.dirname(os.path.dirname(__file__))), variable
27 scriptsdir = os.path.join(basepath, 'scripts')
  /external/python/cpython3/Lib/test/
test_capi.py 352 basepath = os.path.dirname(os.path.dirname(os.path.dirname(here)))
359 exepath = os.path.join(basepath, "Programs")
367 os.chdir(basepath)
  /external/skia/tools/fonts/
create_test_font.cpp 343 static void generate_fonts(const char* basepath) {
355 SkString filepath(SkOSPath::Join(basepath, fontDesc.fFile));
  /external/skqp/tools/
create_test_font.cpp 342 static void generate_fonts(const char* basepath) {
354 SkString filepath(SkOSPath::Join(basepath, fontDesc.fFile));

Completed in 225 milliseconds

1 2