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

1 2 3 4 5 6

  /external/skia/gn/
checkdir.py 11 dirpath, = sys.argv[1:]
13 print os.path.isdir(dirpath)
highest_version_dir.py 12 dirpath = sys.argv[1] variable
15 print sorted(filter(regex.match, os.listdir(dirpath)))[-1]
  /external/skqp/gn/
checkdir.py 11 dirpath, = sys.argv[1:]
13 print os.path.isdir(dirpath)
highest_version_dir.py 12 dirpath = sys.argv[1] variable
15 print sorted(filter(regex.match, os.listdir(dirpath)))[-1]
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/rpcsvc/
mount.x 63 * The type dirpath is the pathname of a directory
65 typedef string dirpath<MNTPATHLEN>;
78 dirpath ml_directory;
96 dirpath ex_dir;
124 MOUNTPROC_MNT(dirpath) = 1;
139 MOUNTPROC_UMNT(dirpath) = 3;
mount.h 30 typedef char *dirpath; typedef
38 dirpath ml_directory;
54 dirpath ex_dir;
68 extern fhstatus * mountproc_mnt_1(dirpath *, CLIENT *);
69 extern fhstatus * mountproc_mnt_1_svc(dirpath *, struct svc_req *);
74 extern void * mountproc_umnt_1(dirpath *, CLIENT *);
75 extern void * mountproc_umnt_1_svc(dirpath *, struct svc_req *);
117 extern bool_t xdr_dirpath (XDR *, dirpath*);
  /bionic/libc/bionic/
lfs64_support.cpp 39 int ftw64(const char *dirpath,
41 return ftw(dirpath, reinterpret_cast<ftw_fn>(fn), nopenfd);
44 int nftw64(const char * dirpath,
47 return nftw(dirpath, reinterpret_cast<nftw_fn>(fn), nopenfd, flags);
  /external/autotest/client/common_lib/
file_utils.py 66 def ensure_dir_exists(dirpath):
70 @param dirpath: path, dir to check.
75 error_msg = 'Directory %s does not exist.' % dirpath
76 if not os.path.isdir(dirpath):
89 for dirpath in dirpaths:
90 ensure_dir_exists(dirpath)
93 def make_leaf_dir(dirpath):
97 @param dirpath: path, directory to create.
103 os.makedirs(dirpath)
118 for dirpath in dirpaths
    [all...]
  /development/gsi/gsi_util/
run_test.py 26 for dirpath, _, filenames in os.walk('.'):
27 if os.path.basename(dirpath) == 'tests':
28 matches.extend(os.path.join(dirpath, f)
  /external/libmojo/mojo/public/tools/bindings/pylib/mojom_tests/support/
find_files.py 15 for dirpath, _, filenames in walk(top, **kwargs):
17 matches.append(join(dirpath, filename))
  /bionic/tests/
TemporaryFile.h 36 explicit GenericTemporaryFile(const char* dirpath, T mk_fn = mkstemp) : mk_fn(mk_fn) {
37 init(dirpath);
  /external/tensorflow/tensorflow/tools/test/
file_name_test.py 38 for dirpath, dirnames, filenames in os.walk(BASE_DIR, followlinks=True):
44 raise AssertionError(ERROR_MESSAGE.format(dirpath))
upload_test_benchmarks.py 93 def is_real_file(dirpath, fname):
94 fpath = os.path.join(dirpath, fname)
98 def get_mtime(dirpath, fname):
99 fpath = os.path.join(dirpath, fname)
103 def list_files_by_mtime(dirpath):
111 dirpath: directory pathname
116 files = [f for f in os.listdir(dirpath) if is_real_file(dirpath, f)]
117 return sorted(files, key=lambda f: get_mtime(dirpath, f))
  /external/python/cpython2/Lib/lib-tk/test/
runtktests.py 32 for dirpath, dirnames, filenames in os.walk(basepath):
37 if is_package(dirpath) and filenames:
38 pkg_name = dirpath[len(basepath) + len(os.sep):].replace('/', '.')
  /external/python/cpython3/Lib/tkinter/test/
runtktests.py 30 for dirpath, dirnames, filenames in os.walk(basepath):
35 if is_package(dirpath) and filenames:
36 pkg_name = dirpath[len(basepath) + len(os.sep):].replace('/', '.')
  /external/autotest/site_utils/
gs_offloader.py 198 def sanitize_dir(dirpath):
203 @param dirpath: Directory entry to be sanitized.
205 if not os.path.exists(dirpath):
207 _escape_rename(dirpath)
208 _escape_rename_dir_contents(dirpath)
209 _sanitize_fifos(dirpath)
210 _sanitize_symlinks(dirpath)
213 def _escape_rename_dir_contents(dirpath):
216 @param dirpath: Directory path string.
218 for filename in os.listdir(dirpath)
    [all...]
  /external/ltp/testcases/kernel/syscalls/getcwd/
getcwd02.c 47 static int dir_exists(const char *dirpath)
51 if (!stat(dirpath, &sb) && S_ISDIR(sb.st_mode))
  /test/vts/utils/python/io/
file_util.py 33 for (dirpath, dirnames, filenames) in os.walk(
37 return os.path.join(dirpath, filename)
  /external/autotest/client/site_tests/kernel_CrosECSysfsAccel/
kernel_CrosECSysfsAccel.py 56 dirpath = os.path.join(self.sysfs_accel_search_path, d)
57 namepath = os.path.join(dirpath, 'name')
75 locpath = os.path.join(dirpath, 'location')
82 self.sysfs_accel_old_path = dirpath
88 self.sysfs_accel_paths[loc] = dirpath
  /external/skia/infra/bots/
zip_utils.py 49 dirpath = os.path.join(r, dirname)
50 z.write(dirpath, os.path.relpath(dirpath, target_dir))
  /external/skqp/infra/bots/
zip_utils.py 49 dirpath = os.path.join(r, dirname)
50 z.write(dirpath, os.path.relpath(dirpath, target_dir))
  /external/webrtc/talk/build/
merge_ios_libs 55 for dirpath, _, filenames in os.walk(lib_base_dir):
56 if dirpath.endswith(output_dir_name):
62 entry.append(os.path.join(dirpath, filename))
  /prebuilts/gdb/darwin-x86/lib/python2.7/lib-tk/test/
runtktests.py 75 for dirpath, dirnames, filenames in os.walk(basepath):
80 if is_package(dirpath) and filenames:
81 pkg_name = dirpath[len(basepath) + len(os.sep):].replace('/', '.')
  /prebuilts/gdb/linux-x86/lib/python2.7/lib-tk/test/
runtktests.py 75 for dirpath, dirnames, filenames in os.walk(basepath):
80 if is_package(dirpath) and filenames:
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 75 for dirpath, dirnames, filenames in os.walk(basepath):
80 if is_package(dirpath) and filenames:
81 pkg_name = dirpath[len(basepath) + len(os.sep):].replace('/', '.')

Completed in 651 milliseconds

1 2 3 4 5 6