Home | History | Annotate | Download | only in bionic

Lines Matching defs:DIR

51 struct DIR {
60 #define CHECK_DIR(d) if (d == nullptr) __fortify_fatal("%s: null DIR*", __FUNCTION__)
62 static DIR* __allocate_DIR(int fd) {
63 DIR* d = reinterpret_cast<DIR*>(malloc(sizeof(DIR)));
75 int dirfd(DIR* d) {
80 DIR* fdopendir(int fd) {
94 DIR* opendir(const char* path) {
99 static bool __fill_DIR(DIR* d) {
110 static dirent* __readdir_locked(DIR* d) {
124 dirent* readdir(DIR* d) {
131 int readdir_r(DIR* d, dirent* entry, dirent** result) {
154 int closedir(DIR* d) {
166 void rewinddir(DIR* d) {
175 void seekdir(DIR* d, long offset) {
186 long telldir(DIR* d) {