HomeSort by relevance Sort by last modified time
    Searched defs:ReadDir (Results 1 - 3 of 3) sorted by null

  /prebuilts/go/darwin-x86/src/io/ioutil/
ioutil.go 94 // ReadDir reads the directory named by dirname and returns
96 func ReadDir(dirname string) ([]os.FileInfo, error) {
101 list, err := f.Readdir(-1)
  /prebuilts/go/linux-x86/src/io/ioutil/
ioutil.go 94 // ReadDir reads the directory named by dirname and returns
96 func ReadDir(dirname string) ([]os.FileInfo, error) {
101 list, err := f.Readdir(-1)
  /build/soong/finder/fs/
fs.go 54 ReadDir(path string) (contents []DirEntryInfo, err error)
102 func (osFs) ReadDir(path string) (contents []DirEntryInfo, err error) {
103 entries, err := readdir(path)
512 func (m *MockFs) ReadDir(path string) (contents []DirEntryInfo, err error) {

Completed in 285 milliseconds