/prebuilts/go/darwin-x86/src/os/ |
getwd.go | 40 if err == nil && SameFile(dot, d) { 60 if err == nil && SameFile(dot, d) { 72 if SameFile(root, dot) { 97 if SameFile(d, dot) { 110 if SameFile(pd, root) {
|
types_windows.go | 18 // used to implement SameFile 86 // hopefully this will work for SameFile 92 func sameFile(fs1, fs2 *fileStat) bool {
|
types.go | 105 // SameFile reports whether fi1 and fi2 describe the same file. 109 // SameFile only applies to results returned by this package's Stat. 111 func SameFile(fi1, fi2 FileInfo) bool { 117 return sameFile(fs1, fs2)
|
os_windows_test.go | 74 if !os.SameFile(ia1, ia2) { 86 if !os.SameFile(ia1, ia3) {
|
stat_darwin.go | 12 func sameFile(fs1, fs2 *fileStat) bool {
|
stat_dragonfly.go | 12 func sameFile(fs1, fs2 *fileStat) bool {
|
stat_freebsd.go | 12 func sameFile(fs1, fs2 *fileStat) bool {
|
stat_linux.go | 12 func sameFile(fs1, fs2 *fileStat) bool {
|
stat_nacl.go | 12 func sameFile(fs1, fs2 *fileStat) bool {
|
stat_netbsd.go | 12 func sameFile(fs1, fs2 *fileStat) bool {
|
stat_openbsd.go | 12 func sameFile(fs1, fs2 *fileStat) bool {
|
stat_solaris.go | 12 func sameFile(fs1, fs2 *fileStat) bool {
|
/prebuilts/go/linux-x86/src/os/ |
getwd.go | 40 if err == nil && SameFile(dot, d) { 60 if err == nil && SameFile(dot, d) { 72 if SameFile(root, dot) { 97 if SameFile(d, dot) { 110 if SameFile(pd, root) {
|
types_windows.go | 18 // used to implement SameFile 86 // hopefully this will work for SameFile 92 func sameFile(fs1, fs2 *fileStat) bool {
|
types.go | 105 // SameFile reports whether fi1 and fi2 describe the same file. 109 // SameFile only applies to results returned by this package's Stat. 111 func SameFile(fi1, fi2 FileInfo) bool { 117 return sameFile(fs1, fs2)
|
os_windows_test.go | 74 if !os.SameFile(ia1, ia2) { 86 if !os.SameFile(ia1, ia3) {
|
stat_darwin.go | 12 func sameFile(fs1, fs2 *fileStat) bool {
|
stat_dragonfly.go | 12 func sameFile(fs1, fs2 *fileStat) bool {
|
stat_freebsd.go | 12 func sameFile(fs1, fs2 *fileStat) bool {
|
stat_linux.go | 12 func sameFile(fs1, fs2 *fileStat) bool {
|
stat_nacl.go | 12 func sameFile(fs1, fs2 *fileStat) bool {
|
stat_netbsd.go | 12 func sameFile(fs1, fs2 *fileStat) bool {
|
stat_openbsd.go | 12 func sameFile(fs1, fs2 *fileStat) bool {
|
/libcore/luni/src/test/java/libcore/java/net/ |
OldURLStreamHandlerTest.java | 126 assertTrue("Test case 1", handler.sameFile(url1, url2)); 127 assertFalse("Test case 2", handler.sameFile(url3, url2)); 128 assertFalse("Test case 3", handler.sameFile(url3, url4)); 129 assertFalse("Test case 4", handler.sameFile(url4, url5)); 130 assertFalse("Test case 5", handler.sameFile(url1, url6)); 208 @Override public boolean sameFile(URL a, URL b) { 209 return super.sameFile(a, b);
|
/libcore/ojluni/src/main/java/sun/net/www/protocol/jar/ |
Handler.java | 61 protected boolean sameFile(URL u1, URL u2) { 71 return super.sameFile(u1, u2); 85 return super.sameFile(u1, u2); 88 if (!super.sameFile(enclosedURL1, enclosedURL2)) {
|