/prebuilts/go/darwin-x86/src/cmd/go/ |
go_windows_test.go | 39 defer os.Chdir(wd) 41 // Chdir so current directory and a.go reside on the same drive. 42 err = os.Chdir(dir)
|
/prebuilts/go/darwin-x86/src/os/exec/ |
lp_unix_test.go | 25 err = os.Chdir(tmp) 27 t.Fatal("Chdir failed: ", err) 29 defer os.Chdir(wd)
|
/prebuilts/go/linux-x86/src/cmd/go/ |
go_windows_test.go | 39 defer os.Chdir(wd) 41 // Chdir so current directory and a.go reside on the same drive. 42 err = os.Chdir(dir)
|
/prebuilts/go/linux-x86/src/os/exec/ |
lp_unix_test.go | 25 err = os.Chdir(tmp) 27 t.Fatal("Chdir failed: ", err) 29 defer os.Chdir(wd)
|
/external/clang/lib/StaticAnalyzer/Checkers/ |
ChrootChecker.cpp | 37 // NO_CHROOT ---chroot(path)--> ROOT_CHANGED ---chdir(/) --> JAIL_ENTERED 39 // ROOT_CHANGED<--chdir(..)-- JAIL_ENTERED<--chdir(..)-- 60 void Chdir(CheckerContext &C, const CallExpr *CE) const; 74 II_chdir = &Ctx.Idents.get("chdir"); 81 Chdir(C, CE); 98 void ChrootChecker::Chdir(CheckerContext &C, const CallExpr *CE) const { 107 // After chdir("/"), enter the jail, set the enum value JAIL_ENTERED. 124 // Check the jail state before any function call except chroot and chdir(). 134 II_chdir = &Ctx.Idents.get("chdir"); [all...] |
/prebuilts/go/darwin-x86/test/fixedbugs/ |
bug248.go | 22 err = os.Chdir(filepath.Join("fixedbugs", "bug248.dir"))
|
bug345.go | 22 err = os.Chdir(filepath.Join(".", "fixedbugs", "bug345.dir"))
|
bug369.go | 20 err := os.Chdir(filepath.Join(".", "fixedbugs", "bug369.dir"))
|
issue9355.go | 23 err := os.Chdir(filepath.Join("fixedbugs", "issue9355.dir"))
|
/prebuilts/go/linux-x86/test/fixedbugs/ |
bug248.go | 22 err = os.Chdir(filepath.Join("fixedbugs", "bug248.dir"))
|
bug345.go | 22 err = os.Chdir(filepath.Join(".", "fixedbugs", "bug345.dir"))
|
bug369.go | 20 err := os.Chdir(filepath.Join(".", "fixedbugs", "bug369.dir"))
|
issue9355.go | 23 err := os.Chdir(filepath.Join("fixedbugs", "issue9355.dir"))
|
/prebuilts/go/darwin-x86/src/cmd/link/ |
linkbig_test.go | 85 os.Chdir(tmpdir) 98 os.Chdir(tmpdir)
|
/prebuilts/go/darwin-x86/test/ |
linkobj.go | 32 if err := os.Chdir(dir); err != nil { 148 os.Chdir(pwd) // get out of tmpdir before removing it
|
/prebuilts/go/linux-x86/src/cmd/link/ |
linkbig_test.go | 85 os.Chdir(tmpdir) 98 os.Chdir(tmpdir)
|
/prebuilts/go/linux-x86/test/ |
linkobj.go | 32 if err := os.Chdir(dir); err != nil { 148 os.Chdir(pwd) // get out of tmpdir before removing it
|
/prebuilts/go/darwin-x86/src/syscall/ |
pwd_plan9.go | 32 // always call chdir when getwd returns an error 37 if err := chdir(wdStr); err != nil { 68 func Chdir(path string) error { 72 if err := chdir(path); err != nil {
|
/prebuilts/go/linux-x86/src/syscall/ |
pwd_plan9.go | 32 // always call chdir when getwd returns an error 37 if err := chdir(wdStr); err != nil { 68 func Chdir(path string) error { 72 if err := chdir(path); err != nil {
|
/prebuilts/go/darwin-x86/src/os/ |
file.go | 220 // Chdir changes the current working directory to the named directory. 222 func Chdir(dir string) error { 223 if e := syscall.Chdir(dir); e != nil { 224 return &PathError{"chdir", dir, e} 229 // Chdir changes the current working directory to the file, 232 func (f *File) Chdir() error { 233 if err := f.checkValid("chdir"); err != nil { 237 return &PathError{"chdir", f.name, e}
|
os_windows_test.go | 37 err = os.Chdir(temp) 41 defer os.Chdir(wd) 96 err = os.Chdir(tmpdir) 100 defer os.Chdir(oldwd) 417 err = os.Chdir(dir) 421 defer os.Chdir(oldwd) 542 err = os.Chdir("..") 568 err = os.Chdir(tmpdir) 572 defer os.Chdir(wd)
|
/prebuilts/go/linux-x86/src/os/ |
file.go | 220 // Chdir changes the current working directory to the named directory. 222 func Chdir(dir string) error { 223 if e := syscall.Chdir(dir); e != nil { 224 return &PathError{"chdir", dir, e} 229 // Chdir changes the current working directory to the file, 232 func (f *File) Chdir() error { 233 if err := f.checkValid("chdir"); err != nil { 237 return &PathError{"chdir", f.name, e}
|
os_windows_test.go | 37 err = os.Chdir(temp) 41 defer os.Chdir(wd) 96 err = os.Chdir(tmpdir) 100 defer os.Chdir(oldwd) 417 err = os.Chdir(dir) 421 defer os.Chdir(oldwd) 542 err = os.Chdir("..") 568 err = os.Chdir(tmpdir) 572 defer os.Chdir(wd)
|
/prebuilts/go/darwin-x86/src/path/filepath/ |
path_test.go | 415 if err := os.Chdir(d); err != nil { 419 if err := os.Chdir(oldwd); err != nil { 854 err := os.Chdir(wd) 860 err := os.Chdir(path) 884 err := os.Chdir(wd) 890 err := os.Chdir(path) 917 err := os.Chdir(wd) 923 err := os.Chdir(simpleJoin(tmpDir, "test")) 945 err := os.Chdir(wd) 951 err := os.Chdir(tmpDir [all...] |
/prebuilts/go/linux-x86/src/path/filepath/ |
path_test.go | 415 if err := os.Chdir(d); err != nil { 419 if err := os.Chdir(oldwd); err != nil { 854 err := os.Chdir(wd) 860 err := os.Chdir(path) 884 err := os.Chdir(wd) 890 err := os.Chdir(path) 917 err := os.Chdir(wd) 923 err := os.Chdir(simpleJoin(tmpDir, "test")) 945 err := os.Chdir(wd) 951 err := os.Chdir(tmpDir [all...] |