/src/lib/libc/gen/ |
posix_spawn_fileactions.c | 179 char *dirpath; local in function:posix_spawn_file_actions_addchdir 187 dirpath = strdup(path); 188 if (dirpath == NULL) 192 fa->fae[i].fae_chdir_path = dirpath;
|
/src/lib/libedit/ |
filecomplete.c | 328 static char *filename = NULL, *dirname = NULL, *dirpath = NULL; local in function:fn_filename_completion_function 380 el_free(dirpath); 381 dirpath = NULL; 385 dirpath = strdup("./"); 387 dirpath = fn_tilde_expand(dirname); 389 dirpath = strdup(dirname); 391 if (dirpath == NULL) 394 dir = opendir(dirpath);
|
/src/sys/fs/nfs/client/ |
nfs_clvfsops.c | 528 char *dirpath; local in function:nfs_mountdiskless 534 dirpath = strchr(path, ':'); 535 if (dirpath != NULL) 536 dirlen = strlen(++dirpath); 540 if ((error = mountnfs(args, mp, nam, path, NULL, 0, dirpath, dirlen, 740 "nfsv3", "sec", "principal", "nfsv4", "gssname", "allgssname", "dirpath", 753 struct sockaddr_in **sinp, char *dirpath, size_t dirpathsize, int *dirlenp) 781 printf("%s: no <host>:<dirpath> nfs-name\n", __func__); 835 strlcpy(dirpath, spec, dirpathsize); 836 *dirlenp = strlen(dirpath); 881 u_char nfh[NFSX_FHMAX], krbname[100], dirpath[100], srvkrbname[100]; local in function:nfs_mount [all...] |
/src/usr.bin/make/ |
dir.c | 844 char *prefix, *dirpath, *end; local in function:SearchPath_ExpandMiddle 853 dirpath = Dir_FindFile(prefix, path); 857 * dirpath is null if can't find the leading component 865 if (dirpath == NULL) 868 end = &dirpath[strlen(dirpath) - 1]; 874 (void)SearchPath_Add(partPath, dirpath); 877 free(dirpath);
|