Home
last modified time | relevance | path

Searched defs:unixDirent (Results 1 – 1 of 1) sorted by relevance

/aosp_15_r20/prebuilts/go/linux-x86/src/os/
Dfile_unix.go472 type unixDirent struct { struct
473 parent string
474 name string
475 typ FileMode
476 info FileInfo
479 func (d *unixDirent) Name() string { return d.name }
480 func (d *unixDirent) IsDir() bool { return d.typ.IsDir() }
481 func (d *unixDirent) Type() FileMode { return d.typ }
483 func (d *unixDirent) Info() (FileInfo, error) {
490 func (d *unixDirent) String() string {