Searched refs:pathname (Results 1 - 3 of 3) sorted by relevance

/sendmail/sendmail/
H A Dmci.c1108 ** Recursively find all the mci host files in `pathname'. Default to
1110 ** Call (*action)(pathname, host) for each file found.
1120 ** pathname -- root of tree. If null, use main host status
1131 mci_traverse_persistent(action, pathname)
1133 char *pathname;
1139 if (pathname == NULL)
1140 pathname = HostStatDir;
1141 if (pathname == NULL)
1145 sm_dprintf("mci_traverse: pathname is %s\n", pathname);
[all...]
H A Dutil.c2400 ** pathname -- pathname to check for directory-ness.
2404 ** true -- if the indicated pathname is a directory
2409 path_is_dir(pathname, createflag)
2410 char *pathname;
2416 if (lstat(pathname, &statbuf) < 0)
2418 if (stat(pathname, &statbuf) < 0)
2423 if (mkdir(pathname, 0755) < 0)
/sendmail/libsm/
H A Dstdio.c48 ** info -- pathname of the file to be opened
386 ** SM_STDFDOPEN -- open file by primitive 'fd' rather than pathname
460 ** pathname -- path of file to open
472 sm_io_fopen(char *pathname, int flags, ...) argument
474 sm_io_fopen(pathname, flags, va_alist)
475 char *pathname;
511 fp->f_file = open(pathname, flags, mode);

Completed in 40 milliseconds