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

  /prebuilts/go/darwin-x86/src/os/
doc.go 118 // Readdirnames reads and returns a slice of names from the directory f.
120 // If n > 0, Readdirnames returns at most n names. In this case, if
121 // Readdirnames returns an empty slice, it will return a non-nil error
124 // If n <= 0, Readdirnames returns all the names from the directory in
125 // a single slice. In this case, if Readdirnames succeeds (reads all
128 // directory, Readdirnames returns the names read until that point and
130 func (f *File) Readdirnames(n int) (names []string, err error) {
134 return f.readdirnames(n)
  /prebuilts/go/linux-x86/src/os/
doc.go 118 // Readdirnames reads and returns a slice of names from the directory f.
120 // If n > 0, Readdirnames returns at most n names. In this case, if
121 // Readdirnames returns an empty slice, it will return a non-nil error
124 // If n <= 0, Readdirnames returns all the names from the directory in
125 // a single slice. In this case, if Readdirnames succeeds (reads all
128 // directory, Readdirnames returns the names read until that point and
130 func (f *File) Readdirnames(n int) (names []string, err error) {
134 return f.readdirnames(n)

Completed in 3893 milliseconds