/prebuilts/go/darwin-x86/src/internal/testenv/ |
testenv_windows.go | 25 err = os.Symlink("target", filepath.Join(tmpdir, "symlink"))
|
testenv.go | 141 // HasSymlink reports whether the current system can use os.Symlink. 147 // MustHaveSymlink reports whether the current system can use os.Symlink.
|
/prebuilts/go/linux-x86/src/internal/testenv/ |
testenv_windows.go | 25 err = os.Symlink("target", filepath.Join(tmpdir, "symlink"))
|
testenv.go | 141 // HasSymlink reports whether the current system can use os.Symlink. 147 // MustHaveSymlink reports whether the current system can use os.Symlink.
|
/build/soong/android/ |
hooks.go | 119 Symlink() bool 122 // Install hooks are run after a module creates a rule to install a file or symlink. 124 // InstallHookContext.Symlink() will be true if it was a symlink. 133 symlink bool 140 func (x *installHookContext) Symlink() bool { 141 return x.symlink 144 func (x *hooks) runInstallHooks(ctx ModuleContext, path OutputPath, symlink bool) { 149 symlink: symlink, [all...] |
defs.go | 62 // A symlink rule. 63 Symlink = pctx.AndroidStaticRule("Symlink", 66 Description: "symlink $out",
|
/prebuilts/go/darwin-x86/src/os/ |
file_unix.go | 287 // Symlink creates newname as a symbolic link to oldname. 289 func Symlink(oldname, newname string) error { 290 e := syscall.Symlink(oldname, newname) 292 return &LinkError{"symlink", oldname, newname, e}
|
path_test.go | 188 err = Symlink("dir", link) 190 t.Fatalf("Symlink %s: %s", link, err)
|
os_windows_test.go | 378 return os.Symlink(target, link) 483 err = os.Symlink(target, link) 627 err := os.Symlink("x", "y") 633 err = os.Symlink("y", "x")
|
file_plan9.go | 436 // Symlink creates newname as a symbolic link to oldname. 438 func Symlink(oldname, newname string) error { 439 return &LinkError{"symlink", oldname, newname, syscall.EPLAN9}
|
file_windows.go | 520 // Symlink creates newname as a symbolic link to oldname. 522 func Symlink(oldname, newname string) error { 525 return &LinkError{"symlink", oldname, newname, syscall.EWINDOWS} 542 return &LinkError{"symlink", oldname, newname, err} 546 return &LinkError{"symlink", oldname, newname, err} 555 return &LinkError{"symlink", oldname, newname, err}
|
/prebuilts/go/linux-x86/src/os/ |
file_unix.go | 287 // Symlink creates newname as a symbolic link to oldname. 289 func Symlink(oldname, newname string) error { 290 e := syscall.Symlink(oldname, newname) 292 return &LinkError{"symlink", oldname, newname, e}
|
path_test.go | 188 err = Symlink("dir", link) 190 t.Fatalf("Symlink %s: %s", link, err)
|
os_windows_test.go | 378 return os.Symlink(target, link) 483 err = os.Symlink(target, link) 627 err := os.Symlink("x", "y") 633 err = os.Symlink("y", "x")
|
file_plan9.go | 436 // Symlink creates newname as a symbolic link to oldname. 438 func Symlink(oldname, newname string) error { 439 return &LinkError{"symlink", oldname, newname, syscall.EPLAN9}
|
file_windows.go | 520 // Symlink creates newname as a symbolic link to oldname. 522 func Symlink(oldname, newname string) error { 525 return &LinkError{"symlink", oldname, newname, syscall.EWINDOWS} 542 return &LinkError{"symlink", oldname, newname, err} 546 return &LinkError{"symlink", oldname, newname, err} 555 return &LinkError{"symlink", oldname, newname, 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...] |
/system/core/healthd/ |
Android.mk | 152 # Symlink /charger to /sbin/charger
|
/system/update_engine/common/ |
test_utils.h | 78 inline int Symlink(const std::string& oldpath, const std::string& newpath) { 79 return symlink(oldpath.c_str(), newpath.c_str()); 94 // Reads a symlink from disk. Returns empty string on failure.
|
/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...] |
/frameworks/base/data/fonts/ |
Android.mk | 21 # create symlink for given font 24 define create-font-symlink 26 @echo "Symlink: $$@ -> $$<" 38 $(eval $(call create-font-symlink,DroidSans.ttf,Roboto-Regular.ttf)) 39 $(eval $(call create-font-symlink,DroidSans-Bold.ttf,Roboto-Bold.ttf)) 40 $(eval $(call create-font-symlink,DroidSerif-Regular.ttf,NotoSerif-Regular.ttf)) 41 $(eval $(call create-font-symlink,DroidSerif-Bold.ttf,NotoSerif-Bold.ttf)) 42 $(eval $(call create-font-symlink,DroidSerif-Italic.ttf,NotoSerif-Italic.ttf)) 43 $(eval $(call create-font-symlink,DroidSerif-BoldItalic.ttf,NotoSerif-BoldItalic.ttf))
|
/prebuilts/go/darwin-x86/src/path/filepath/ |
path_test.go | 798 // /tmp may itself be a symlink! Avoid the confusion, although 802 t.Fatal("eval symlink for tmp dir:", err) 819 // Create the symlink farm using relative paths. 826 err = os.Symlink(d.dest, path) 838 // Evaluate the symlink farm. 975 err = os.Symlink("notexist", "link") 1002 err = os.Symlink(dir, linkToDir) 1012 err = os.Symlink(file, link1) 1017 err = os.Symlink(link1, link2) 1022 // /tmp may itself be a symlink! [all...] |
/prebuilts/go/linux-x86/src/path/filepath/ |
path_test.go | 798 // /tmp may itself be a symlink! Avoid the confusion, although 802 t.Fatal("eval symlink for tmp dir:", err) 819 // Create the symlink farm using relative paths. 826 err = os.Symlink(d.dest, path) 838 // Evaluate the symlink farm. 975 err = os.Symlink("notexist", "link") 1002 err = os.Symlink(dir, linkToDir) 1012 err = os.Symlink(file, link1) 1017 err = os.Symlink(link1, link2) 1022 // /tmp may itself be a symlink! [all...] |