HomeSort by relevance Sort by last modified time
    Searched refs:symlink (Results 226 - 250 of 524) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/toybox/toys/posix/
ls.c 52 --color device=yellow symlink=turquoise/red dir=blue socket=purple
502 if (fstatat(dirfd, sort[next]->symlink, &st2, 0)) color = 256+31;
508 printf("%s", sort[next]->symlink);
  /libcore/luni/src/main/java/libcore/io/
BlockGuardOs.java 336 @Override public void symlink(String oldPath, String newPath) throws ErrnoException { method in class:BlockGuardOs
338 os.symlink(oldPath, newPath);
  /system/core/adb/
file_sync_service.cpp 339 ret = symlink(&buffer[0], path.c_str());
345 ret = symlink(&buffer[0], path.c_str());
348 SendSyncFailErrno(s, "symlink failed");
  /bionic/libc/include/
unistd.h 141 int symlink(const char* __old_path, const char* __new_path);
  /build/kati/
runtest.rb 220 File.symlink('../../testcase/submake', 'submake')
  /external/apache-harmony/luni/src/test/api/unix/org/apache/harmony/luni/tests/java/io/
UnixFileTest.java 380 Libcore.os.symlink(target, linkName);
  /external/autotest/client/site_tests/firmware_TouchMTB/
firmware_utils.py 173 os.symlink(log_dir, latest_symlink)
175 print 'Error in setup latest symlink (%s): %s' % (latest_symlink, e)
  /external/e2fsprogs/debugfs/
dump.c 207 com_err("rdump", errno, "while allocating for symlink");
220 com_err("rdump", retval, "while opening symlink");
227 com_err("rdump", retval, "while reading symlink");
238 com_err("rdump", retval, "while closing symlink");
241 if (symlink(buf, fullname) == -1) {
242 com_err("rdump", errno, "while creating symlink %s -> %s", buf, fullname);
  /external/e2fsprogs/util/
symlinks.c 265 if (symlink(new, path)) {
  /external/python/cpython2/Mac/BuildScript/
build-installer.py     [all...]
  /external/python/cpython3/Lib/distutils/tests/
test_filelist.py 301 os.symlink('foo', 'bar')
  /external/python/cpython3/Lib/test/
test_stat.py 159 @unittest.skipUnless(hasattr(os, 'symlink'), 'os.symlink not available')
162 os.symlink(os.getcwd(), TESTFN)
  /external/python/cpython3/Mac/BuildScript/
build-installer.py     [all...]
  /external/squashfs-tools/kernel/fs/squashfs/
inode.c 273 struct squashfs_symlink_inode *sqsh_ino = &squashfs_ino.symlink;
  /external/syslinux/bios/utils/
mkdiskimage 245 die "$0: Failed to create symlink $imglink\n"
246 if ( !symlink(absolute_path($file), $imglink) );
  /external/toolchain-utils/
tc_enter_chroot.py 225 # Finally, create the symlink to build-gcc.
296 target.startswith('/'), "Can't create symlink to absolute path!")
302 os.symlink(target, link_name)
  /system/core/init/
devices_test.cpp 42 symlink(platform_bus.c_str(), (platform_device_dir + "/subsystem").c_str());
  /build/make/core/
base_rules.mk 435 $(foreach symlink,$(my_installed_symlinks),\
436 $(call symlink-file,$(LOCAL_INSTALLED_MODULE),$(my_installed_module_stem),$(symlink)))
Makefile     [all...]
  /external/clang/
build.py 131 def symlink(src, dst): function
132 """Proxy for os.symlink with logging and dry-run support."""
133 logger().info('symlink %s %s', src, dst)
135 os.symlink(src, dst)
387 symlink(short_version(),
  /external/libcxx/src/experimental/filesystem/
operations.cpp 114 if (S_ISLNK(mode)) fs_tmp.type(file_type::symlink);
424 if (::symlink(from.c_str(), to.c_str()) != 0)
439 if (::symlink(from.c_str(), to.c_str()) == -1)
  /external/python/cpython3/Lib/
shutil.py 100 symlink will be created instead of copying the file it points to.
118 os.symlink(os.readlink(src), dst)
213 # symlink. give up, suppress the error.
283 links are copied. If the file pointed by the symlink doesn't
289 platforms that don't support os.symlink.
329 os.symlink(linkto, dstname)
332 # ignore dangling symlink if the flag is on
426 # a directory with a symlink after the call to
466 # Note: To guard against symlink races, we use the standard
496 # Allow introspection of whether or not the hardening against symlink
    [all...]
  /libcore/luni/src/test/java/libcore/java/nio/file/
DefaultFileSystemProviderTest.java 633 Path symlink = filesSetup.getPathInTestDir("symlink"); local
637 Files.createSymbolicLink(symlink, filesSetup.getDataFilePath());
638 provider.copy(filesSetup.getDataFilePath(), symlink); local
  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/src/experimental/filesystem/
operations.cpp 87 if (S_ISLNK(mode)) fs_tmp.type(file_type::symlink);
387 if (::symlink(from.c_str(), to.c_str()) != 0)
402 if (::symlink(from.c_str(), to.c_str()) == -1)
  /external/autotest/server/hosts/
adb_host.py 65 # Regex to pull out file type, perms and symlink. Example:
68 FILE_SYMLINK_REGEX = '^.*-> (?P<SYMLINK>.+)'
    [all...]

Completed in 530 milliseconds

1 2 3 4 5 6 7 8 91011>>