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

  /external/python/cpython2/Lib/test/
symlink_support.py 12 symlink_path = TESTFN + "can_symlink"
14 symlink(TESTFN, symlink_path)
19 os.remove(symlink_path)
  /bionic/linker/
linker_config_test.cpp 277 std::string symlink_path = std::string(tmp_dir.path) + "/symlink"; local
278 symlink(sub_dir.c_str(), symlink_path.c_str());
281 android::base::make_scope_guard([&symlink_path] { unlink(symlink_path.c_str()); });
284 "dir.test = " + symlink_path + "\n"
  /external/perfetto/tools/
heap_profile 300 symlink_path = os.path.join(os.path.dirname(profile_path),
302 if os.path.lexists(symlink_path):
303 os.unlink(symlink_path)
304 os.symlink(profile_path, symlink_path)
306 print("Wrote profiles to {} (symlink {})".format(profile_path, symlink_path))
  /external/autotest/scheduler/
scheduler_lib.py 145 symlink_path = os.path.join(
148 os.unlink(symlink_path)
151 os.symlink(os.path.join(log_dir, logfile_name), symlink_path)
  /external/python/setuptools/setuptools/tests/
test_find_packages.py 20 symlink_path = TESTFN + "can_symlink"
22 os.symlink(TESTFN, symlink_path)
27 os.remove(symlink_path)
  /external/libchrome/base/files/
file_util_posix.cc 509 const FilePath& symlink_path) {
510 DCHECK(!symlink_path.empty());
513 symlink_path.value().c_str()) != -1;
516 bool ReadSymbolicLink(const FilePath& symlink_path, FilePath* target_path) {
517 DCHECK(!symlink_path.empty());
520 ssize_t count = ::readlink(symlink_path.value().c_str(), buf, arraysize(buf));
    [all...]
  /external/e2fsprogs/contrib/
fsstress.c 303 int symlink_path(const char *, pathname_t *);
1328 int symlink_path(const char *name1, pathname_t * name) function
1344 rval = symlink_path(name1, &newname);
    [all...]
  /external/ltp/testcases/kernel/fs/fsstress/
fsstress.c 276 int symlink_path(const char *, pathname_t *);
1303 int symlink_path(const char *name1, pathname_t * name) function
1319 rval = symlink_path(name1, &newname);
    [all...]
  /external/python/cpython3/Lib/test/support/
__init__.py     [all...]

Completed in 2580 milliseconds