HomeSort by relevance Sort by last modified time
    Searched defs:readdir (Results 1 - 25 of 30) sorted by null

1 2

  /prebuilts/go/darwin-x86/src/os/
dir_plan9.go 12 func (file *File) readdir(n int) ([]FileInfo, error) { func
36 return fi, &PathError{"readdir", file.name, err}
39 return fi, &PathError{"readdir", file.name, syscall.ErrShortStat}
47 return fi, &PathError{"readdir", file.name, syscall.ErrShortStat}
52 return fi, &PathError{"readdir", file.name, err}
67 fi, err := file.Readdir(n)
dir_unix.go 19 func (f *File) readdir(n int) (fi []FileInfo, err error) { func
29 // File disappeared between readdir + stat.
39 // Per File.Readdir, the slice must be non-empty or err
dir_windows.go 13 func (file *File) readdir(n int) (fi []FileInfo, err error) { func
18 return nil, &PathError{"Readdir", file.name, syscall.ENOTDIR}
72 fis, err := file.Readdir(n)
  /prebuilts/go/linux-x86/src/os/
dir_plan9.go 12 func (file *File) readdir(n int) ([]FileInfo, error) { func
36 return fi, &PathError{"readdir", file.name, err}
39 return fi, &PathError{"readdir", file.name, syscall.ErrShortStat}
47 return fi, &PathError{"readdir", file.name, syscall.ErrShortStat}
52 return fi, &PathError{"readdir", file.name, err}
67 fi, err := file.Readdir(n)
dir_unix.go 19 func (f *File) readdir(n int) (fi []FileInfo, err error) { func
29 // File disappeared between readdir + stat.
39 // Per File.Readdir, the slice must be non-empty or err
dir_windows.go 13 func (file *File) readdir(n int) (fi []FileInfo, err error) { func
18 return nil, &PathError{"Readdir", file.name, syscall.ENOTDIR}
72 fis, err := file.Readdir(n)
  /device/linaro/bootloader/edk2/StdLib/PosixLib/Gen/
readdir.c 40 NetBSD: readdir.c,v 1.24 2008/05/04 18:53:26 tonnerre Exp
41 readdir.c 8.3 (Berkeley) 9/29/94
88 readdir(DIR *dirp) function
  /external/syslinux/core/fs/
readdir.c 33 __export struct dirent *readdir(DIR *dir) function
40 if (dd_dir->fs->fs_ops->readdir) {
41 rv = dd_dir->fs->fs_ops->readdir(dd_dir, &buf);
  /external/ImageMagick/MagickCore/
vms.c 157 % readdir() returns a pointer to a structure representing the directory entry
160 % The format of the readdir
162 % readdir(entry)
170 struct dirent *readdir(DIR *directory)
166 struct dirent *readdir(DIR *directory) function
nt-base.h 217 #if !defined(readdir)
218 # define readdir(directory) NTReadDirectory(directory) macro
  /external/vulkan-validation-layers/loader/
dirent_on_windows.c 84 struct dirent *readdir(DIR *dir) { function
  /build/soong/finder/fs/
readdir.go 17 // This is based on the readdir implementation from Go 1.9:
32 func readdir(path string) ([]DirEntryInfo, error) { func
40 // file.ReadDir does since it will keep a thread blocked and not just a goroutine.
65 // File disappeared between readdir + stat.
  /external/syslinux/com32/include/syslinux/
pmapi.h 65 struct dirent *(*readdir)(struct _DIR_ *); member in struct:com32_pmapi
  /bionic/libc/bionic/
dirent.cpp 46 // and use it in their own code, but they also call into readdir.
124 dirent* readdir(DIR* d) { function
129 __strong_alias(readdir64, readdir);
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/
dirent.h 155 storage returned may be overwritten by a later readdir call on the
164 extern struct dirent *readdir (DIR *__dirp) __nonnull ((1));
167 extern struct dirent *__REDIRECT (readdir, (DIR *__dirp), readdir64)
170 # define readdir readdir64 macro
179 /* Reentrant version of `readdir'. Return in RESULT a pointer to the
  /prebuilts/misc/common/swig/include/2.0.11/perl5/
noembed.h 94 #ifdef readdir
95 #undef readdir macro
  /build/kati/
pathutil.go 63 fsCache.readdir(".", unknownFileid)
133 _, ents := fsCache.readdir(parent, unknownFileid)
166 func (c *fsCacheT) readdir(dir string, id fileid) (fileid, []dirent) { func
167 glog.V(3).Infof("readdir: %s [%v]", dir, id)
204 glog.Warningf("readdir %s: %v", name, err)
217 glog.Warningf("readdir %s: %v", name, err)
227 glog.V(3).Infof("readdir:%s => %v: %v", dir, id, ents)
238 _, ents := c.readdir(filepathClean(dir), unknownFileid)
399 id, ents := c.readdir(filepathClean(filepathJoin(fc.chdir, path)), id)
475 _, ents := fsCache.readdir(filepathClean(fcp.fc.testdir), unknownFileid
    [all...]
  /external/e2fsprogs/contrib/
spd_readdir.c 2 * readdir accelerator
9 * and that the regular readdir wrapper will take slightly more
129 real_readdir = dlsym(RTLD_NEXT, "readdir");
229 DEBUG_DIR(printf("readdir: %lu %s\n",
235 DEBUG_DIR(printf("No memory, backing off to direct readdir\n"));
263 DEBUG_DIR(printf("Directory size %ld, using direct readdir\n",
296 DEBUG_DIR(printf("Directory size %ld, using direct readdir\n",
320 struct dirent *readdir(DIR *dir) function
  /system/core/adb/
sysdeps.h 244 #define readdir adb_readdir macro
  /external/python/cpython3/Modules/
_posixsubprocess.c 31 # define readdir readdir64 macro
261 * available that does no harm. opendir/readdir/closedir perform memory
312 * It calls opendir(), readdir() and closedir(). Of these, the one most
318 * implemented as readdir() followed by memcpy(). See also:
354 while ((dir_entry = readdir(proc_fd_dir))) {
365 /* readdir error, revert behavior. Highly Unlikely. */
  /external/syslinux/core/fs/pxe/
pxe.h 118 int (*readdir)(struct inode *inode, struct dirent *dirent); member in struct:pxe_conn_ops
  /external/syslinux/core/include/
fs.h 71 int (*readdir)(struct file *, struct dirent *); member in struct:fs_ops
221 /* readdir.c */
223 struct dirent *readdir(DIR *dir);
  /external/fio/os/windows/
posix.c 919 struct dirent *readdir(DIR *dirp) function
  /libcore/ojluni/src/main/java/sun/nio/fs/
UnixNativeDispatcher.java 427 * struct dirent* readdir(DIR *dirp)
431 static native byte[] readdir(long dir) throws UnixException; method in class:UnixNativeDispatcher
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/
pthread.h 639 #define readdir(...) (pthread_testcancel(), readdir(__VA_ARSG__)) macro
    [all...]

Completed in 1058 milliseconds

1 2