Searched defs:DIR (Results 1 - 2 of 2) sorted by relevance

/bionic/libc/include/
H A Ddirent.h69 typedef struct DIR DIR; typedef in typeref:struct:DIR
71 extern DIR* opendir(const char*);
72 extern DIR* fdopendir(int);
73 extern struct dirent* readdir(DIR*);
74 extern struct dirent64* readdir64(DIR*);
75 extern int readdir_r(DIR*, struct dirent*, struct dirent**);
76 extern int readdir64_r(DIR*, struct dirent64*, struct dirent64**);
77 extern int closedir(DIR*);
78 extern void rewinddir(DIR*);
[all...]
/bionic/libc/bionic/
H A Ddirent.cpp50 struct DIR { struct
59 static DIR* __allocate_DIR(int fd) {
60 DIR* d = reinterpret_cast<DIR*>(malloc(sizeof(DIR)));
72 int dirfd(DIR* dirp) {
76 DIR* fdopendir(int fd) {
90 DIR* opendir(const char* path) {
95 static bool __fill_DIR(DIR* d) {
105 static dirent* __readdir_locked(DIR*
[all...]

Completed in 289 milliseconds