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

  /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] == '/') \
  /test/vts/drivers/hal/common/include/fuzz_tester/
FuzzerBase.h 86 const string& basepath, FunctionSpecificationMessage* msg);
90 const string& basepath, const string& filename,
  /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/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'))
  /test/vts/drivers/hal/common/fuzz_tester/
FuzzerBase.cpp 457 const string& basepath, const string& filename,
464 string buffer = basepath + "/" + filename;
523 const string& basepath, FunctionSpecificationMessage* msg) {
524 DIR* srcdir = opendir(basepath.c_str());
527 << " couln't open " << basepath << endl;
535 << " readdir(" << basepath << ") for " << dent->d_name << endl;
546 ScanAllGcdaFiles(basepath + "/" + dent->d_name, msg);
548 ReadGcdaFile(basepath, dent->d_name, msg);
565 cerr << __FUNCTION__ << ": no gcov basepath set" << endl;
  /prebuilts/go/darwin-x86/src/path/filepath/
path.go 251 // joined to basepath with an intervening separator. That is,
252 // Join(basepath, Rel(basepath, targpath)) is equivalent to targpath itself.
253 // On success, the returned path will always be relative to basepath,
254 // even if basepath and targpath share no elements.
255 // An error is returned if targpath can't be made relative to basepath or if
258 func Rel(basepath, targpath string) (string, error) {
259 baseVol := VolumeName(basepath)
261 base := Clean(basepath)
275 return "", errors.New("Rel: can't make " + targpath + " relative to " + basepath)
    [all...]
  /prebuilts/go/linux-x86/src/path/filepath/
path.go 251 // joined to basepath with an intervening separator. That is,
252 // Join(basepath, Rel(basepath, targpath)) is equivalent to targpath itself.
253 // On success, the returned path will always be relative to basepath,
254 // even if basepath and targpath share no elements.
255 // An error is returned if targpath can't be made relative to basepath or if
258 func Rel(basepath, targpath string) (string, error) {
259 baseVol := VolumeName(basepath)
261 base := Clean(basepath)
275 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')
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/
lmshare.h 207 NET_API_STATUS WINAPI NetFileEnum(LMSTR servername,LMSTR basepath,LMSTR username,DWORD level,LPBYTE *bufptr,DWORD prefmaxlen,LPDWORD entriesread,LPDWORD totalentries,PDWORD_PTR resume_handle);
  /prebuilts/go/darwin-x86/src/net/http/cgi/
host_test.go 352 fmt.Fprintf(rw, "basepath=%s\n", req.URL.Path)
361 "basepath": "/foo",
  /prebuilts/go/linux-x86/src/net/http/cgi/
host_test.go 352 fmt.Fprintf(rw, "basepath=%s\n", req.URL.Path)
361 "basepath": "/foo",
  /prebuilts/gdb/darwin-x86/lib/python2.7/idlelib/
EditorWindow.py 132 basepath = '/usr/share/doc/' # standard location
133 dochome = os.path.join(basepath, pyver,
    [all...]
  /prebuilts/gdb/linux-x86/lib/python2.7/idlelib/
EditorWindow.py 132 basepath = '/usr/share/doc/' # standard location
133 dochome = os.path.join(basepath, pyver,
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/idlelib/
EditorWindow.py 132 basepath = '/usr/share/doc/' # standard location
133 dochome = os.path.join(basepath, pyver,
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/idlelib/
EditorWindow.py 132 basepath = '/usr/share/doc/' # standard location
133 dochome = os.path.join(basepath, pyver,
    [all...]

Completed in 3469 milliseconds