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

/bionic/libc/include/
H A Ddirent.h63 typedef struct DIR DIR; typedef in typeref:struct:DIR
65 extern DIR* opendir(const char*);
66 extern DIR* fdopendir(int);
67 extern struct dirent* readdir(DIR*);
68 extern struct dirent64* readdir64(DIR*);
69 extern int readdir_r(DIR*, struct dirent*, struct dirent**);
70 extern int readdir64_r(DIR*, struct dirent64*, struct dirent64**);
71 extern int closedir(DIR*);
72 extern void rewinddir(DIR*);
[all...]
/bionic/libc/bionic/
H A Ddirent.cpp42 struct DIR { struct
50 static DIR* __allocate_DIR(int fd) {
51 DIR* d = reinterpret_cast<DIR*>(malloc(sizeof(DIR)));
62 int dirfd(DIR* dirp) {
66 DIR* fdopendir(int fd) {
80 DIR* opendir(const char* path) {
85 static bool __fill_DIR(DIR* d) {
95 static dirent* __readdir_locked(DIR*
[all...]

Completed in 2144 milliseconds