/src/usr.sbin/lpr/lp/ |
lp | 44 symlink="-s" 59 symlink="";; 75 exec /usr/bin/lpr "-P${dest}" ${reqid} ${symlink} ${ncopies} "$@"
|
/src/tests/lib/librumphijack/ |
t_cwd.sh | 51 test_case symlink_chdir /rump symlink chdir 52 test_case symlink_fchdir /rump symlink fchdir 53 test_case symlink_slash_chdir // symlink chdir 54 test_case symlink_slash_fchdir // symlink fchdir
|
/src/sys/fs/efs/ |
efs_dinode.h | 77 * If di_numextents == 0 and di_mode indicates a symlink, the 78 * symlink path is inlined into _di_symlink. Otherwise, the 79 * symlink exists in extents. 81 * Note that the symlink is stored without nul-termination, 84 char symlink[sizeof(struct efs_dextent) * EFS_DIRECTEXTENTS]; member in union:efs_dinode::__anon92ad2896010a 102 #define di_symlink di_u.symlink 130 #define EFS_IFLNK 0120000 /* symlink */
|
/src/lib/librefuse/refuse/ |
v11.h | 58 int (*symlink) (const char *, const char *); member in struct:fuse_operations_v11
|
v21.h | 54 int (*symlink) (const char *, const char *); member in struct:fuse_operations_v21
|
v22.h | 58 int (*symlink) (const char *, const char *); member in struct:fuse_operations_v22
|
v23.h | 58 int (*symlink) (const char *, const char *); member in struct:fuse_operations_v23
|
v25.h | 54 int (*symlink) (const char *, const char *); member in struct:fuse_operations_v25
|
v28.h | 54 int (*symlink) (const char *, const char *); member in struct:fuse_operations_v28
|
v29.h | 54 int (*symlink) (const char *, const char *); member in struct:fuse_operations_v29
|
v34.h | 53 int (*symlink) (const char *, const char *); member in struct:fuse_operations_v34
|
v35.h | 53 int (*symlink) (const char *, const char *); member in struct:fuse_operations_v35
|
v26.h | 54 int (*symlink) (const char *, const char *); member in struct:fuse_operations_v26
|
v30.h | 62 int (*symlink) (const char *, const char *); member in struct:fuse_operations_v30
|
v38.h | 53 int (*symlink) (const char *, const char *); member in struct:fuse_operations_v38
|
/src/sys/external/gpl2/dts/dist/arch/arm/boot/dts/ |
tps6507x.dtsi | 8 * http://www.ti.com/lit/ds/symlink/tps65070.pdf
|
tps65217.dtsi | 8 * http://www.ti.com/lit/ds/symlink/tps65217.pdf
|
tps65910.dtsi | 8 * http://www.ti.com/lit/ds/symlink/tps65910.pdf
|
/src/tests/lib/libc/c063/ |
t_readlinkat.c | 48 #define LINK "dir/symlink" 49 #define BASELINK "symlink" 67 ATF_REQUIRE(symlink(FILE, LINK) == 0); 93 ATF_REQUIRE(symlink(FILE, LINK) == 0); 143 ATF_REQUIRE(symlink(FILE, LINK) == 0);
|
/src/tests/lib/libc/gen/ |
t_ftok.c | 73 ATF_REQUIRE(symlink(path, slnk) == 0);
|
t_realpath.c | 134 ATF_REQUIRE(symlink(path, slnk) == 0);
|
/src/share/man/man7/ |
Makefile | 33 MAN+= symlink.7
|
/src/distrib/common/ |
parselist.awk | 102 # IMP SYMLINK src dest [...] symlink src to dest, [...] 256 $1 == "SYMLINK" \ 259 err("Usage: SYMLINK prog link [...]"); 262 symlink($2, $i); 335 function symlink (src, dest) \ function
|
/src/usr.bin/audiocfg/ |
audiodev.c | 231 if (symlink(audiopath, _PATH_AUDIO) == -1) { 232 warn("symlink %s", _PATH_AUDIO); 235 if (symlink(soundpath, _PATH_SOUND) == -1) { 236 warn("symlink %s", _PATH_SOUND); 239 if (symlink(audioctlpath, _PATH_AUDIOCTL) == -1) { 240 warn("symlink %s", _PATH_AUDIOCTL); 243 if (symlink(mixerpath, _PATH_MIXER) == -1) { 244 warn("symlink %s", _PATH_MIXER);
|
/src/usr.sbin/makefs/ |
walk.c | 256 * Symlink permission bits vary between filesystems/OSs 340 cur->symlink = estrdup(slink); 424 if (cur->symlink) 425 free(cur->symlink); 604 curfsnode->symlink = estrdup(curnode->slink); 658 assert(dirnode->symlink != NULL); 660 ASEPRINT("symlink", "%s", dirnode->symlink, specnode->slink); 661 free(dirnode->symlink); 662 dirnode->symlink = estrdup(specnode->slink) [all...] |