Home
last modified time | relevance | path

Searched refs:DIR (Results 1 – 7 of 7) sorted by relevance

/DragonOS-0.1.7/user/libs/libc/src/
Ddirent.c16 struct DIR *opendir(const char *path) in opendir()
27 struct DIR *dirp = (struct DIR *)malloc(sizeof(struct DIR)); in opendir()
29 memset(dirp, 0, sizeof(struct DIR)); in opendir()
50 int closedir(struct DIR *dirp) in closedir()
67 struct dirent *readdir(struct DIR *dir) in readdir()
DMakefile2 GARBAGE := $(foreach DIR,$(DIRS),$(addprefix $(DIR)/,$(GARBAGE_PATTERNS)))
/DragonOS-0.1.7/user/libs/libc/src/include/export/
Ddirent.h65 struct DIR struct
90 struct DIR *opendir(const char *dirname);
105 int closedir(struct DIR *dirp);
113 struct dirent* readdir(struct DIR* dir);
/DragonOS-0.1.7/docs/userland/libc/apis/api-list/
Ddirent.md7 ``struct DIR`` :
33 ``DIR opendir(const char *path)``
37 ``int closedir(DIR *dirp)``
43 ``dirent readdir(DIR *dir)``
/DragonOS-0.1.7/kernel/src/
DMakefile4 GARBAGE := $(foreach DIR,$(DIRS),$(addprefix $(DIR)/,$(GARBAGE_PATTERNS)))
8 LIB_FILES := $(foreach DIR,$(DIR_LIB),$(addprefix $(DIR)/,$(lib_patterns)))
/DragonOS-0.1.7/user/
DMakefile6 GARBAGE := $(foreach DIR,$(DIRS),$(addprefix $(DIR)/,$(GARBAGE_PATTERNS)))
/DragonOS-0.1.7/user/apps/shell/
Dcmd.c246 struct DIR *dir = opendir(shell_current_path); in shell_cmd_ls()