Home | History | Annotate | Download | only in openssh

Lines Matching defs:dirp

180 	DIR *dirp;
205 handle_new(int use, const char *name, int fd, DIR *dirp)
221 handles[i].dirp = dirp;
273 return handles[handle].dirp;
325 ret = closedir(handles[handle].dirp);
883 DIR *dirp = NULL;
892 dirp = opendir(path);
893 if (dirp == NULL) {
896 handle = handle_new(HANDLE_DIR, path, 0, dirp);
898 closedir(dirp);
913 DIR *dirp;
923 dirp = handle_to_dir(handle);
925 if (dirp == NULL || path == NULL) {
934 while ((dp = readdir(dirp)) != NULL) {