OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:fileStat
(Results
1 - 25
of
73
) sorted by null
1
2
3
/prebuilts/go/darwin-x86/src/os/
types_notwin.go
13
// A
fileStat
is the implementation of FileInfo returned by Stat and Lstat.
14
type
fileStat
struct {
22
func (fs *
fileStat
) Size() int64 { return fs.size }
23
func (fs *
fileStat
) Mode() FileMode { return fs.mode }
24
func (fs *
fileStat
) ModTime() time.Time { return fs.modTime }
25
func (fs *
fileStat
) Sys() interface{} { return fs.sys }
types_windows.go
13
// A
fileStat
is the implementation of FileInfo returned by Stat and Lstat.
14
type
fileStat
struct {
26
func (fs *
fileStat
) Size() int64 {
30
func (fs *
fileStat
) Mode() (m FileMode) {
48
func (fs *
fileStat
) ModTime() time.Time {
53
func (fs *
fileStat
) Sys() interface{} { return &fs.sys }
55
func (fs *
fileStat
) loadFileId() error {
83
// devNullStat is
fileStat
structure describing DevNull file ("NUL").
84
var devNullStat =
fileStat
{
92
func sameFile(fs1, fs2 *
fileStat
) bool
[
all
...]
stat_darwin.go
12
func sameFile(fs1, fs2 *
fileStat
) bool {
19
fs := &
fileStat
{
stat_dragonfly.go
12
func sameFile(fs1, fs2 *
fileStat
) bool {
19
fs := &
fileStat
{
stat_freebsd.go
12
func sameFile(fs1, fs2 *
fileStat
) bool {
19
fs := &
fileStat
{
stat_linux.go
12
func sameFile(fs1, fs2 *
fileStat
) bool {
19
fs := &
fileStat
{
stat_nacl.go
12
func sameFile(fs1, fs2 *
fileStat
) bool {
19
fs := &
fileStat
{
stat_netbsd.go
12
func sameFile(fs1, fs2 *
fileStat
) bool {
19
fs := &
fileStat
{
stat_openbsd.go
12
func sameFile(fs1, fs2 *
fileStat
) bool {
19
fs := &
fileStat
{
stat_solaris.go
12
func sameFile(fs1, fs2 *
fileStat
) bool {
19
fs := &
fileStat
{
types.go
102
func (fs *
fileStat
) Name() string { return fs.name }
103
func (fs *
fileStat
) IsDir() bool { return fs.Mode().IsDir() }
112
fs1, ok1 := fi1.(*
fileStat
)
113
fs2, ok2 := fi2.(*
fileStat
)
stat_plan9.go
14
func sameFile(fs1, fs2 *
fileStat
) bool {
21
fs := &
fileStat
{
/prebuilts/go/linux-x86/src/os/
types_notwin.go
13
// A
fileStat
is the implementation of FileInfo returned by Stat and Lstat.
14
type
fileStat
struct {
22
func (fs *
fileStat
) Size() int64 { return fs.size }
23
func (fs *
fileStat
) Mode() FileMode { return fs.mode }
24
func (fs *
fileStat
) ModTime() time.Time { return fs.modTime }
25
func (fs *
fileStat
) Sys() interface{} { return fs.sys }
types_windows.go
13
// A
fileStat
is the implementation of FileInfo returned by Stat and Lstat.
14
type
fileStat
struct {
26
func (fs *
fileStat
) Size() int64 {
30
func (fs *
fileStat
) Mode() (m FileMode) {
48
func (fs *
fileStat
) ModTime() time.Time {
53
func (fs *
fileStat
) Sys() interface{} { return &fs.sys }
55
func (fs *
fileStat
) loadFileId() error {
83
// devNullStat is
fileStat
structure describing DevNull file ("NUL").
84
var devNullStat =
fileStat
{
92
func sameFile(fs1, fs2 *
fileStat
) bool
[
all
...]
stat_darwin.go
12
func sameFile(fs1, fs2 *
fileStat
) bool {
19
fs := &
fileStat
{
stat_dragonfly.go
12
func sameFile(fs1, fs2 *
fileStat
) bool {
19
fs := &
fileStat
{
stat_freebsd.go
12
func sameFile(fs1, fs2 *
fileStat
) bool {
19
fs := &
fileStat
{
stat_linux.go
12
func sameFile(fs1, fs2 *
fileStat
) bool {
19
fs := &
fileStat
{
stat_nacl.go
12
func sameFile(fs1, fs2 *
fileStat
) bool {
19
fs := &
fileStat
{
stat_netbsd.go
12
func sameFile(fs1, fs2 *
fileStat
) bool {
19
fs := &
fileStat
{
stat_openbsd.go
12
func sameFile(fs1, fs2 *
fileStat
) bool {
19
fs := &
fileStat
{
stat_solaris.go
12
func sameFile(fs1, fs2 *
fileStat
) bool {
19
fs := &
fileStat
{
types.go
102
func (fs *
fileStat
) Name() string { return fs.name }
103
func (fs *
fileStat
) IsDir() bool { return fs.Mode().IsDir() }
112
fs1, ok1 := fi1.(*
fileStat
)
113
fs2, ok2 := fi2.(*
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));
/build/blueprint/choosestage/
choosestage.go
84
fileStat
, err := os.Stat(filename)
89
time :=
fileStat
.ModTime()
151
fileStat
, err := os.Stat(fileName)
167
fmt.Printf("For %s:\n file: %s\n time: %s\n", fileName,
fileStat
.ModTime(), timestampStat.ModTime())
173
if timestampStat.ModTime().After(
fileStat
.ModTime()) {
Completed in 248 milliseconds
1
2
3