Home | History | Annotate | Download | only in openssh

Lines Matching defs:dirp

274 	DIR *dirp;
300 handle_new(int use, const char *name, int fd, int flags, DIR *dirp)
316 handles[i].dirp = dirp;
369 return handles[handle].dirp;
429 ret = closedir(handles[handle].dirp);
1007 DIR *dirp = NULL;
1016 dirp = opendir(path);
1017 if (dirp == NULL) {
1020 handle = handle_new(HANDLE_DIR, path, 0, 0, dirp);
1022 closedir(dirp);
1037 DIR *dirp;
1047 dirp = handle_to_dir(handle);
1049 if (dirp == NULL || path == NULL) {
1058 while ((dp = readdir(dirp)) != NULL) {