/coreutils/tests/mv/ |
D | hard-2.sh | 25 mkdir dst || framework_failure_ 26 (cd dst && touch a b c) || framework_failure_ 33 cp --preserve=link a b c dst || fail=1 38 cd dst 53 rm -f dst/[abc] 54 (cd dst && touch a b c) 57 mv a b c dst || fail=1 63 cd dst
|
D | hard-3.sh | 37 mkdir -p x dst/x || framework_failure_ 38 touch dst/x/b || framework_failure_ 39 chmod a-w dst/x 47 cp --preserve=link --parents a x/b c dst 2> /dev/null && fail=1 53 cd dst
|
D | i-1.pl | 32 {IN => {src => "a\n"}}, {IN => {dst => "b\n"}}, '<', {IN => "n\n"},
|
/coreutils/src/blake2/ |
D | blake2-impl.h | 84 static BLAKE2_INLINE void store16( void *dst, uint16_t w ) in store16() argument 87 memcpy(dst, &w, sizeof w); in store16() 89 uint8_t *p = ( uint8_t * )dst; in store16() 95 static BLAKE2_INLINE void store32( void *dst, uint32_t w ) in store32() argument 98 memcpy(dst, &w, sizeof w); in store32() 100 uint8_t *p = ( uint8_t * )dst; in store32() 108 static BLAKE2_INLINE void store64( void *dst, uint64_t w ) in store64() argument 111 memcpy(dst, &w, sizeof w); in store64() 113 uint8_t *p = ( uint8_t * )dst; in store64() 136 static BLAKE2_INLINE void store48( void *dst, uint64_t w ) in store48() argument [all …]
|
/coreutils/tests/cp/ |
D | existing-perm-dir.sh | 24 mkdir -p -m ug-s,u=rwx,g=,o= dst/dir || fail=1 26 cp -r src/. dst/ || fail=1 28 mode=$(stat --p=%A dst/dir)
|
D | backup-dir.sh | 34 mkdir -p src/foo dst/foo || framework_failure_ 35 touch src/foo/bar dst/foo/bar || framework_failure_ 36 cp --recursive --backup src/* dst || fail=1
|
D | link-deref.sh | 119 compare exp out || { ls -lid $src $tgt dst; fail=1; } 121 rm -rf dst err exp out || framework_failure_
|
/coreutils/tests/install/ |
D | install-Z-selinux.sh | 42 for dst in single_d/existing/file multi/ple/file; do 43 ginstall -Z -D standard "$dst" || fail=1
|
/coreutils/ |
D | bootstrap | 982 dst=${3-$2} 988 dst_dir=$(dirname "$dst") 1005 test ! -h "$dst" || { 1006 echo "$me: rm -f $dst" && 1007 rm -f "$dst" 1010 test -f "$dst" && 1011 cmp -s "$src" "$dst" || { 1012 echo "$me: cp -fp $src $dst" && 1013 cp -fp "$src" "$dst" 1022 test -h "$dst" && [all …]
|
D | NEWS | 2436 are hard-linked and dst/s/a is up to date, "cp -up s dst" would copy s/b 2437 to dst/s/b rather than simply linking dst/s/b to dst/s/a.
|
/coreutils/src/ |
D | stat.c | 676 char *dst = pformat + 1; in make_format() local 679 for (src = dst; src < srclim && strchr (printf_flags, *src); src++) in make_format() 681 *dst++ = *src; in make_format() 683 *dst++ = *src++; in make_format() 684 strcpy (dst, suffix); in make_format() 777 char *dst = pformat; in out_epoch_sec() local 778 for (char const *src = dst; src < p; src++) in out_epoch_sec() 783 *dst++ = *src; in out_epoch_sec() 786 (dst - pformat in out_epoch_sec() 787 + (frac_left_adjust ? 0 : sprintf (dst, "%d", w))); in out_epoch_sec()
|
D | digest.c | 589 char *dst = s; in filename_unescape() local 605 *dst++ = '\n'; in filename_unescape() 608 *dst++ = '\r'; in filename_unescape() 611 *dst++ = '\\'; in filename_unescape() 624 *dst++ = s[i]; in filename_unescape() 628 if (dst < s + s_len) in filename_unescape() 629 *dst = '\0'; in filename_unescape()
|
D | df.c | 320 char *dst = cell; in replace_invalid_chars() local 338 memmove (dst, src, n); in replace_invalid_chars() 339 dst += n; in replace_invalid_chars() 343 *dst++ = '?'; in replace_invalid_chars() 348 *dst = '\0'; in replace_invalid_chars()
|
D | longlong.h | 229 #define ALPHA_CMPBGE_0(dst, src) \ argument 230 do { asm ("cmpbge $31, %1, %0" : "=r" (dst) : "r" (src)); } while (0)
|
D | copy.c | 2079 emit_verbose (char const *src, char const *dst, char const *backup_dst_name) in emit_verbose() argument 2081 printf ("%s -> %s", quoteaf_n (0, src), quoteaf_n (1, dst)); in emit_verbose()
|
/coreutils/tests/date/ |
D | date-debug.sh | 205 date: input timezone: TZ="America/New_York" environment value, dst 254 date: input timezone: TZ="Europe/Helsinki" environment value, dst
|