/coreutils/src/ |
D | mkdir.c | 111 announce_mkdir (char const *dir, void *options) in announce_mkdir() argument 113 struct mkdir_options const *o = options; in announce_mkdir() 124 make_ancestor (char const *dir, char const *component, void *options) in make_ancestor() argument 126 struct mkdir_options const *o = options; in make_ancestor() 146 announce_mkdir (dir, options); in make_ancestor() 153 process_dir (char *dir, struct savewd *wd, void *options) in process_dir() argument 155 struct mkdir_options const *o = options; in process_dir() 167 int ret = (make_dir_parents (dir, wd, o->make_ancestor_function, options, in process_dir() 196 struct mkdir_options options; in main() local 198 options.make_ancestor_function = nullptr; in main() [all …]
|
D | set-fields.c | 135 set_fields (char const *fieldstr, unsigned int options) in set_fields() argument 148 if ((options & SETFLD_ALLOW_DASH) && STREQ (fieldstr,"-")) in set_fields() 163 FATAL_ERROR ((options & SETFLD_ERRMSG_USE_POS) in set_fields() 171 FATAL_ERROR ((options & SETFLD_ERRMSG_USE_POS) in set_fields() 190 if (options & SETFLD_ALLOW_DASH) in set_fields() 217 FATAL_ERROR ((options & SETFLD_ERRMSG_USE_POS) in set_fields() 255 error (0, 0, (options & SETFLD_ERRMSG_USE_POS) in set_fields() 267 error (0, 0, (options & SETFLD_ERRMSG_USE_POS) in set_fields() 276 FATAL_ERROR ((options&SETFLD_ERRMSG_USE_POS) in set_fields() 299 if (options & SETFLD_COMPLEMENT) in set_fields()
|
D | users.c | 83 users (char const *filename, int options) in users() argument 87 options |= READ_UTMP_USER_PROCESS; in users() 88 if (read_utmp (filename, &n_users, &utmp_buf, options) != 0) in users()
|
D | set-fields.h | 42 extern void set_fields (char const *fieldstr, unsigned int options);
|
D | install.c | 357 announce_mkdir (char const *dir, void *options) in announce_mkdir() argument 359 struct cp_options const *x = options; in announce_mkdir() 368 make_ancestor (char const *dir, char const *component, void *options) in make_ancestor() argument 370 struct cp_options const *x = options; in make_ancestor() 379 announce_mkdir (dir, options); in make_ancestor() 385 process_dir (char *dir, struct savewd *wd, void *options) in process_dir() argument 387 struct cp_options const *x = options; in process_dir() 389 int ret = (make_dir_parents (dir, wd, make_ancestor, options, in process_dir()
|
D | uptime.c | 126 uptime (char const *filename, int options) in uptime() argument 130 int read_utmp_status = (read_utmp (filename, &n_users, &utmp_buf, options) < 0 in uptime()
|
D | copy.h | 299 int nonexistent_dst, const struct cp_options *options,
|
D | who.c | 618 who (char const *filename, int options) in who() argument 623 options |= READ_UTMP_USER_PROCESS; in who() 624 if (read_utmp (filename, &n_users, &utmp_buf, options) != 0) in who()
|
D | ls.c | 253 struct quoting_options const *options, 259 struct quoting_options const *options, 306 struct quoting_options const *options, 4530 struct quoting_options const *options, in quote_name_buf() argument 4538 enum quoting_style qs = get_quoting_style (options); in quote_name_buf() 4546 len = quotearg_buffer (buf, bufsize, name, -1, options); in quote_name_buf() 4550 quotearg_buffer (buf, len + 1, name, -1, options); in quote_name_buf() 4724 quote_name_width (char const *name, struct quoting_options const *options, in quote_name_width() argument 4732 quote_name_buf (&buf, sizeof smallbuf, (char *) name, options, in quote_name_width() 4767 quote_name (char const *name, struct quoting_options const *options, in quote_name() argument [all …]
|
D | dircolors.hin | 12 # Global config options can be specified before TERM or COLORTERM entries
|
D | copy.c | 2363 int options = ((x->preserve_timestamps in copy_internal() local 2370 &src_sb, options)) in copy_internal() 3403 int nonexistent_dst, const struct cp_options *options, in copy() argument 3406 valid_options (options); in copy() 3421 options, true, in copy()
|
/coreutils/tests/stty/ |
D | stty-pairs.sh | 42 options=$(stty -a | tr -s ';' '\n' | sed "s/^ //;$sed_del;s/-//g") 45 for opt1 in $options; do 46 for opt2 in $options; do
|
D | stty.sh | 55 options=$(stty -a | tr -s ';' '\n' | sed "s/^ //;$sed_del;s/-//g") 58 for opt in $options; do
|
/coreutils/gl/lib/ |
D | xfts.c | 32 xfts_open (char * const *argv, int options, in xfts_open() argument 35 FTS *fts = fts_open (argv, options | FTS_CWDFD, compar); in xfts_open()
|
D | xfts.h | 4 xfts_open (char * const *, int options,
|
/coreutils/tests/ |
D | CuTmpdir.pm | 53 my $options = {untaint => 1, wanted => \&chmod_1}; 54 find ($options, $dir);
|
/coreutils/tests/mv/ |
D | part-symlink.sh | 65 for options in '' --rem '--rem -d' '--rem -b' -b -bd -d; do 66 case "$options" in *d*|*--rem*) test $copy = mv && continue;; esac 84 $copy $options $actual_args 2>.err 86 echo $copy_status $copy $options $args
|
/coreutils/tests/cp/ |
D | same-file.sh | 49 for options in '' -d -f -df --rem -b -bd -bf -bdf \ 51 case $args$options in 73 case $hard_link_to_symlink_does_the_deref:$args:$options in 96 cp $options $args 2>_err 97 echo $? $options
|
/coreutils/doc/ |
D | coreutils.texi | 30 * Common options: (coreutils)Common options. 189 * Common options:: Common options 228 * Backup options:: Backup options 285 * General options in ptx:: Options which affect general program behavior 572 @node Common options 573 @chapter Common options 582 @xref{Backup options}. 592 @xref{Backup options}. 734 @cindex common options 736 Certain options are available in all of these programs. Rather than [all …]
|
/coreutils/tests/sort/ |
D | sort-debug-warn.sh | 37 sort: options '-bghMRrV' are ignored 41 sort: options '-bghMRV' are ignored 51 sort: options '-bg' are ignored
|
/coreutils/tests/df/ |
D | df-output.sh | 25 df: options OPT and --output are mutually exclusive
|
/coreutils/tests/dd/ |
D | misc.sh | 83 Therefore, dd options like iflag=noatime may be silently ignored.
|
/coreutils/ |
D | NEWS | 11 numfmt options like --suffix no longer have an arbitrary 127-byte limit. 33 tail now supports following multiple processes, with repeated --pid options. 260 stty ispeed and ospeed options no longer accept and silently ignore 347 split now accepts options like '-n SIZE' that exceed machine integer 367 date --debug now diagnoses if multiple --date or --set options are 711 Affected programs and options include du -d, expr's numeric operands 733 from an empty directory, with default ls options. 802 uptime, users, whoami, yes: now always process --help and --version options, 804 end-of-options marker. 806 nohup now processes --help and --version as first options even if other [all …]
|
D | README-hacking | 70 configure-time options, please report the warnings to the bug
|
/coreutils/m4/ |
D | jm-macros.m4 | 159 # Accept configure options: --with-tty-group[=GROUP], --without-tty-group
|