/src/sys/compat/netbsd32/ |
netbsd32_execve.c | 97 char ***pathp, char **pathp32) 101 *pathp = &fae->fae_path; 105 *pathp = &fae->fae_chdir_path; 121 char *pbuf = NULL, **pathp = NULL, *pathp32 = NULL; local in function:netbsd32_posix_spawn_fa_alloc 158 if (!netbsd32_posix_spawn_fae_path(fae, f32, &pathp, &pathp32) 159 || pathp == NULL || pathp32 == NULL) 164 *pathp = kmem_alloc(slen, KM_SLEEP); 165 memcpy(*pathp, pbuf, slen);
|
/src/usr.bin/rdist/ |
expand.c | 58 char *pathp; variable in typeref:typename:char * 113 path = tpathp = pathp = pathbuf; 114 *pathp = '\0'; 146 path = tpathp = pathp = NULL; 231 tpathp = pathp = cp - 1; 233 tpathp = pathp = path; 236 *pathp = '\0'; 271 spathp = pathp; 287 cp--, pathp--; 289 cp++, pathp++ [all...] |
/src/sys/kern/ |
kern_exec.c | 2458 char **pathp = posix_spawn_fae_path(&fa->fae[i]); local in function:posix_spawn_fa_free 2459 if (pathp) 2460 kmem_strfree(*pathp); 2499 char **pathp = posix_spawn_fae_path(&fa->fae[i]); local in function:posix_spawn_fa_alloc 2500 if (pathp == NULL) 2502 error = copyinstr(*pathp, pbuf, MAXPATHLEN, &fal); 2505 *pathp = kmem_alloc(fal, KM_SLEEP); 2506 memcpy(*pathp, pbuf, fal);
|