Searched refs:dirp (Results 101 - 108 of 108) sorted by relevance

12345

/freebsd-11-stable/sbin/mount_nfs/
H A Dmount_nfs.c983 xdr_dir(XDR *xdrsp, char *dirp) argument
985 return (xdr_string(xdrsp, &dirp, MNTPATHLEN));
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/sanitizer_common/
H A Dsanitizer_platform_limits_posix.h754 void (*gl_closedir)(void *dirp);
755 void *(*gl_readdir)(void *dirp);
H A Dsanitizer_platform_limits_netbsd.h394 void (*gl_closedir)(void *dirp);
395 struct dirent *(*gl_readdir)(void *dirp);
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/tsan/rtl/
H A Dtsan_interceptors_posix.cpp42 #define dirfd(dirp) (*(int *)(dirp))
96 extern "C" int dirfd(void *dirp);
1782 TSAN_INTERCEPTOR(int, closedir, void *dirp) { argument
1783 SCOPED_TSAN_INTERCEPTOR(closedir, dirp);
1784 if (dirp) {
1785 int fd = dirfd(dirp);
1788 return REAL(closedir)(dirp);
/freebsd-11-stable/contrib/sendmail/src/
H A Ddeliver.c961 char *dirp; local
968 dirp = strrchr(filename, '/');
969 if (dirp != NULL)
973 dir[dirp - filename] = '\0';
974 dirp = dir;
977 dirp = ".";
978 dirfd = open(dirp, O_RDONLY, 0700);
981 dirp, dirfd);
988 dirp);
992 dirp, sm_errstrin
[all...]
/freebsd-11-stable/cddl/contrib/opensolaris/cmd/zpool/
H A Dzpool_main.c1145 DIR *dirp; local
1170 if ((dirp = opendir(buf)) == NULL && errno != ENOENT) {
1176 } else if (dirp) {
1179 while (count < 3 && readdir(dirp) != NULL)
1181 (void) closedir(dirp);
/freebsd-11-stable/contrib/gdb/gdb/
H A Dprocfs.c3225 DIR *dirp; local
3252 if ((dirp = opendir (pathname)) == NULL)
3255 old_chain = make_cleanup (do_closedir_cleanup, dirp);
3256 while ((direntry = readdir (dirp)) != NULL)
/freebsd-11-stable/contrib/opie/
H A Dconfigure2259 DIR *dirp = 0;

Completed in 312 milliseconds

12345