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

  /prebuilts/go/darwin-x86/src/os/
dir.go 7 // Readdir reads the contents of the directory associated with file and
12 // If n > 0, Readdir returns at most n FileInfo structures. In this case, if
13 // Readdir returns an empty slice, it will return a non-nil error
16 // If n <= 0, Readdir returns all the FileInfo from the directory in
17 // a single slice. In this case, if Readdir succeeds (reads all
20 // directory, Readdir returns the FileInfo read until that point
22 func (f *File) Readdir(n int) ([]FileInfo, error) {
26 return f.readdir(n)
  /prebuilts/go/linux-x86/src/os/
dir.go 7 // Readdir reads the contents of the directory associated with file and
12 // If n > 0, Readdir returns at most n FileInfo structures. In this case, if
13 // Readdir returns an empty slice, it will return a non-nil error
16 // If n <= 0, Readdir returns all the FileInfo from the directory in
17 // a single slice. In this case, if Readdir succeeds (reads all
20 // directory, Readdir returns the FileInfo read until that point
22 func (f *File) Readdir(n int) ([]FileInfo, error) {
26 return f.readdir(n)
  /external/python/cpython2/Demo/rpc/
nfsclient.py 4 # XXX Only GETATTR, SETTTR, LOOKUP and READDIR are supported.
155 def Readdir(self, ra):
165 (status, rest) = self.Readdir(ra)
  /prebuilts/go/darwin-x86/src/net/http/
fs_test.go 628 func (f *fakeFile) Readdir(count int) ([]os.FileInfo, error) {
    [all...]
  /prebuilts/go/linux-x86/src/net/http/
fs_test.go 628 func (f *fakeFile) Readdir(count int) ([]os.FileInfo, error) {
    [all...]

Completed in 256 milliseconds