Searched defs:dirp (Results 1 - 7 of 7) sorted by relevance

/vbox/src/VBox/Devices/EFI/Firmware/StdLib/PosixLib/Gen/
H A Dopendir.c76 DIR *dirp = NULL; local
91 if ((dirp = (DIR *)malloc(sizeof(DIR))) == NULL)
93 dirp->dd_buf = NULL;
103 dirp->dd_len = incr;
104 dirp->dd_buf = malloc((size_t)dirp->dd_len);
105 if (dirp->dd_buf == NULL)
107 dirp->dd_seek = 0;
110 dirp->dd_loc = 0;
111 dirp
[all...]
H A Dreaddir.c61 _readdir_unlocked(DIR *dirp, int skipdeleted) argument
67 if (dirp->dd_loc >= dirp->dd_size) {
68 if (dirp->dd_flags & __DTF_READALL)
70 dirp->dd_loc = 0;
72 if (dirp->dd_loc == 0 && !(dirp->dd_flags & __DTF_READALL)) {
73 dirp->dd_size = (long)read(dirp->dd_fd, dirp
88 readdir(DIR *dirp) argument
105 readdir_r(DIR *dirp, struct dirent *entry, struct dirent **result) argument
[all...]
/vbox/src/VBox/Devices/EFI/Firmware/StdLib/PosixLib/Glob/
H A Dglob.c677 DIR *dirp; local
698 if ((dirp = g_opendir(pathbuf, pglob)) == NULL) {
725 while ((dp = (*readdirfunc)(dirp)) != NULL) {
790 (*pglob->gl_closedir)(dirp);
792 closedir(dirp);
/vbox/src/VBox/ExtPacks/VBoxDTrace/onnv/lib/libdtrace/common/
H A Ddt_module.c939 DIR *dirp; local
950 (dirp = opendir(OBJFS_ROOT)) != NULL) {
953 while ((dp = readdir(dirp)) != NULL) {
958 (void) closedir(dirp);
H A Ddt_cc.c1959 DIR *dirp; local
1974 if ((dirp = opendir(path)) == NULL) {
1988 while ((dp = readdir(dirp)) != NULL) {
2029 (void) closedir(dirp);
2086 dt_dirpath_t *dirp; local
2093 for (dirp = dt_list_next(&dtp->dt_lib_path);
2094 dirp != NULL; dirp = dt_list_next(dirp)) {
2095 if (dt_load_libs_dir(dtp, dirp
[all...]
H A Ddt_open.c733 DIR *dirp; local
736 if ((dirp = opendir(_dtrace_provdir)) == NULL)
742 while (readdir_r(dirp, ep, &dp) == 0 && dp != NULL) {
778 (void) closedir(dirp);
1407 dt_dirpath_t *dirp; local
1465 while ((dirp = dt_list_next(&dtp->dt_lib_path)) != NULL) {
1466 dt_list_delete(&dtp->dt_lib_path, dirp);
1467 free(dirp->dir_path);
1468 free(dirp);
/vbox/src/VBox/RDP/client-1.8.3/
H A Ddisk.c356 DIR *dirp; local
362 dirp = NULL;
439 dirp = opendir(path);
440 if (!dirp)
458 handle = DIRFD(dirp);
515 if (dirp)
516 g_fileinfo[handle].pdir = dirp;

Completed in 2278 milliseconds