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

1 2

  /external/cldr/tools/scripts/
CLDRWrapper 13 # and symlink it to XMLValidator and LDML2ICUConverter
67 echo Symlink $0 to the names XMLValidator, LDML2ICUConverter, and other ${PKG} tools.
  /build/soong/ui/build/paths/
config.go 20 // Whether to create the symlink in the new PATH for this tool.
21 Symlink bool
35 Symlink: true,
41 Symlink: false,
47 Symlink: true,
53 // Currently this will create the symlink, but log and error when it's used. In
54 // the future, I expect the symlink to be removed, and this will be equivalent
57 Symlink: true,
63 Symlink: false,
logs.go 74 err = os.Symlink(absDir, filepath.Join(d, "d"))
  /external/syzkaller/sys/syz-extract/
freebsd.go 28 if err := os.Symlink(filepath.Join(arch.sourceDir, "sys", "amd64", "include"),
32 if err := os.Symlink(filepath.Join(arch.sourceDir, "sys", "x86", "include"),
netbsd.go 42 if err := os.Symlink(machineInclude(arch, machine),
  /build/soong/android/
hooks.go 79 Symlink() bool
82 // Install hooks are run after a module creates a rule to install a file or symlink.
84 // InstallHookContext.Symlink() will be true if it was a symlink.
93 symlink bool
100 func (x *installHookContext) Symlink() bool {
101 return x.symlink
104 func (x *hooks) runInstallHooks(ctx ModuleContext, path OutputPath, symlink bool) {
109 symlink: symlink,
    [all...]
defs.go 69 // A symlink rule.
70 Symlink = pctx.AndroidStaticRule("Symlink",
73 Description: "symlink $out",
module.go     [all...]
  /build/soong/ui/build/
path.go 136 if !paths.GetConfig(name).Symlink && !allowAllSymlinks {
140 err := os.Symlink("../.path_interposer", filepath.Join(myPath, name))
144 ctx.Fatalln("Failed to create symlink:", err)
  /external/libyuv/files/
setup_links.py 201 class Symlink(Action):
203 super(Symlink, self).__init__(dangerous=False)
228 os.symlink(source_path, os.path.abspath(self._link_path))
237 # Handles symlink creation on the different platforms.
239 def symlink(source_path, link_path): member in class:LinkError
243 raise OSError('Failed to create symlink to %s. Notice that only NTFS '
246 os.symlink = symlink
304 now replaced with a symlink into the full Chromium checkout.
354 This will be a symlink on POSIX platforms. On Windows this require
    [all...]
  /external/webrtc/
setup_links.py 222 class Symlink(Action):
224 super(Symlink, self).__init__(dangerous=False)
249 os.symlink(source_path, os.path.abspath(self._link_path))
258 # Handles symlink creation on the different platforms.
260 def symlink(source_path, link_path): member in class:LinkError
264 raise OSError('Failed to create symlink to %s. Notice that only NTFS '
267 os.symlink = symlink
325 now replaced with a symlink into the full Chromium checkout.
375 This will be a symlink on POSIX platforms. On Windows this require
    [all...]
  /build/soong/cmd/diff_target_files/
zip_artifact.go 139 err = os.Symlink(string(target), path)
  /external/llvm/tools/llvm-go/
llvm-go.go 165 err = os.Symlink(filepath.Join(srcdir, p.llvmpath), path)
  /external/roboto-fonts/
Android.mk 21 # create symlink for given font
24 define create-font-symlink
26 @echo "Symlink: $$@ -> $$<"
56 $(eval $(call create-font-symlink,Roboto-Black.ttf,Roboto-Bold.ttf))
57 $(eval $(call create-font-symlink,Roboto-BlackItalic.ttf,Roboto-BoldItalic.ttf))
58 $(eval $(call create-font-symlink,Roboto-Light.ttf,Roboto-Regular.ttf))
59 $(eval $(call create-font-symlink,Roboto-LightItalic.ttf,Roboto-Italic.ttf))
60 $(eval $(call create-font-symlink,Roboto-Medium.ttf,Roboto-Regular.ttf))
61 $(eval $(call create-font-symlink,Roboto-MediumItalic.ttf,Roboto-Italic.ttf))
62 $(eval $(call create-font-symlink,Roboto-Thin.ttf,Roboto-Regular.ttf)
    [all...]
  /build/soong/cc/
compdb.go 30 // at out/development/ide/compdb/compile_commands.json. It will also symlink it
109 if err := os.Symlink(compDBFile, finalLinkPath); err != nil {
110 log.Fatalf("Unable to symlink %s to %s: %s", compDBFile, finalLinkPath, err)
cmakelists.go 115 os.Symlink(path, dst)
binary.go 38 // if set, install a symlink to the preferred architecture
41 // install symlinks to the binary. Symlink names will have the suffix and the binary
395 for _, symlink := range binary.Properties.Symlinks {
397 symlink+String(binary.Properties.Suffix)+ctx.toolchain().ExecutableSuffix())
433 for _, symlink := range binary.symlinks {
434 ctx.InstallAbsoluteSymlink(dir, symlink, target)
435 binary.post_install_cmds = append(binary.post_install_cmds, makeSymlinkCmd(dirOnDevice, symlink, target))
441 // The original path becomes a symlink to the corresponding file in the
450 for _, symlink := range binary.symlinks {
451 ctx.InstallSymlink(binary.baseInstaller.installDir(ctx), symlink, binary.baseInstaller.path
    [all...]
  /external/swiftshader/third_party/llvm-7.0/llvm/tools/llvm-go/
llvm-go.go 169 err = os.Symlink(abspath, path)
  /external/syzkaller/vendor/golang.org/x/sys/unix/
syscall_dragonfly.go 314 //sys Symlink(path string, link string) (err error)
syscall_netbsd.go 296 //sys Symlink(path string, link string) (err error)
syscall_openbsd.go 270 //sys Symlink(path string, link string) (err error)
syscall_darwin.go 473 //sys Symlink(path string, link string) (err error)
syscall_freebsd.go 544 //sys Symlink(path string, link string) (err error)
syscall_solaris.go 669 //sys Symlink(path string, link string) (err error)
  /build/soong/finder/fs/
fs.go 848 func (m *MockFs) Symlink(oldPath string, newPath string) (err error) {

Completed in 1965 milliseconds

1 2