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

1 2 3 4

  /prebuilts/go/darwin-x86/src/os/
types_plan9.go 12 // A fileStat is the implementation of FileInfo returned by Stat and Lstat.
13 type fileStat struct {
21 func (fs *fileStat) Size() int64 { return fs.size }
22 func (fs *fileStat) Mode() FileMode { return fs.mode }
23 func (fs *fileStat) ModTime() time.Time { return fs.modTime }
24 func (fs *fileStat) Sys() interface{} { return fs.sys }
26 func sameFile(fs1, fs2 *fileStat) bool {
types_unix.go 15 // A fileStat is the implementation of FileInfo returned by Stat and Lstat.
16 type fileStat struct {
24 func (fs *fileStat) Size() int64 { return fs.size }
25 func (fs *fileStat) Mode() FileMode { return fs.mode }
26 func (fs *fileStat) ModTime() time.Time { return fs.modTime }
27 func (fs *fileStat) Sys() interface{} { return &fs.sys }
29 func sameFile(fs1, fs2 *fileStat) bool {
types_windows.go 13 // A fileStat is the implementation of FileInfo returned by Stat and Lstat.
14 type fileStat struct {
27 func (fs *fileStat) Size() int64 {
31 func (fs *fileStat) Mode() (m FileMode) {
52 func (fs *fileStat) ModTime() time.Time {
57 func (fs *fileStat) Sys() interface{} { return &fs.sys }
59 func (fs *fileStat) loadFileId() error {
87 // devNullStat is fileStat structure describing DevNull file ("NUL").
88 var devNullStat = fileStat{
96 func sameFile(fs1, fs2 *fileStat) bool
    [all...]
stat_unix.go 19 var fs fileStat
31 var fs fileStat
45 var fs fileStat
stat_windows.go 35 return &fileStat{name: basename(file.name), pipe: true}, nil
43 return &fileStat{
92 fs := &fileStat{name: basename(name)}
stat_dragonfly.go 12 func fillFileStatFromSys(fs *fileStat, name string) {
stat_solaris.go 12 func fillFileStatFromSys(fs *fileStat, name string) {
types.go 107 func (fs *fileStat) Name() string { return fs.name }
108 func (fs *fileStat) IsDir() bool { return fs.Mode().IsDir() }
117 fs1, ok1 := fi1.(*fileStat)
118 fs2, ok2 := fi2.(*fileStat)
dir_windows.go 50 f := &fileStat{
stat_darwin.go 12 func fillFileStatFromSys(fs *fileStat, name string) {
stat_freebsd.go 12 func fillFileStatFromSys(fs *fileStat, name string) {
stat_linux.go 12 func fillFileStatFromSys(fs *fileStat, name string) {
stat_nacl.go 12 func fillFileStatFromSys(fs *fileStat, name string) {
stat_netbsd.go 12 func fillFileStatFromSys(fs *fileStat, name string) {
stat_openbsd.go 12 func fillFileStatFromSys(fs *fileStat, name string) {
  /prebuilts/go/linux-x86/src/os/
types_plan9.go 12 // A fileStat is the implementation of FileInfo returned by Stat and Lstat.
13 type fileStat struct {
21 func (fs *fileStat) Size() int64 { return fs.size }
22 func (fs *fileStat) Mode() FileMode { return fs.mode }
23 func (fs *fileStat) ModTime() time.Time { return fs.modTime }
24 func (fs *fileStat) Sys() interface{} { return fs.sys }
26 func sameFile(fs1, fs2 *fileStat) bool {
types_unix.go 15 // A fileStat is the implementation of FileInfo returned by Stat and Lstat.
16 type fileStat struct {
24 func (fs *fileStat) Size() int64 { return fs.size }
25 func (fs *fileStat) Mode() FileMode { return fs.mode }
26 func (fs *fileStat) ModTime() time.Time { return fs.modTime }
27 func (fs *fileStat) Sys() interface{} { return &fs.sys }
29 func sameFile(fs1, fs2 *fileStat) bool {
types_windows.go 13 // A fileStat is the implementation of FileInfo returned by Stat and Lstat.
14 type fileStat struct {
27 func (fs *fileStat) Size() int64 {
31 func (fs *fileStat) Mode() (m FileMode) {
52 func (fs *fileStat) ModTime() time.Time {
57 func (fs *fileStat) Sys() interface{} { return &fs.sys }
59 func (fs *fileStat) loadFileId() error {
87 // devNullStat is fileStat structure describing DevNull file ("NUL").
88 var devNullStat = fileStat{
96 func sameFile(fs1, fs2 *fileStat) bool
    [all...]
stat_unix.go 19 var fs fileStat
31 var fs fileStat
45 var fs fileStat
stat_windows.go 35 return &fileStat{name: basename(file.name), pipe: true}, nil
43 return &fileStat{
92 fs := &fileStat{name: basename(name)}
stat_dragonfly.go 12 func fillFileStatFromSys(fs *fileStat, name string) {
stat_solaris.go 12 func fillFileStatFromSys(fs *fileStat, name string) {
types.go 107 func (fs *fileStat) Name() string { return fs.name }
108 func (fs *fileStat) IsDir() bool { return fs.Mode().IsDir() }
117 fs1, ok1 := fi1.(*fileStat)
118 fs2, ok2 := fi2.(*fileStat)
dir_windows.go 50 f := &fileStat{
  /frameworks/base/tools/aapt/
FileFinder.cpp 24 struct stat fileStat;
25 if (stat(filename, &fileStat) == -1) {
28 return(S_ISDIR(fileStat.st_mode));
34 struct stat fileStat;
35 if (stat(filename, &fileStat) == -1) {
38 return(S_ISREG(fileStat.st_mode));

Completed in 561 milliseconds

1 2 3 4