/busybox-1.35.0/coreutils/ |
D | printf.c | 186 static void print_direc(char *format, unsigned fmt_length, in print_direc() argument 195 saved = format[fmt_length]; in print_direc() 196 format[fmt_length] = '\0'; in print_direc() 198 have_prec = strstr(format, ".*"); in print_direc() 199 have_width = strchr(format, '*'); in print_direc() 206 switch (format[fmt_length - 1]) { in print_direc() 208 printf(format, *argument); in print_direc() 216 printf(format, llv); in print_direc() 218 printf(format, precision, llv); in print_direc() 221 printf(format, field_width, llv); in print_direc() [all …]
|
D | stat.c | 416 char *format = xstrdup(masterformat); variable 419 char *dest = xmalloc(strlen(format) + 2 + 1); 422 b = format; 461 free(format); 469 #define do_statfs(filename, format) do_statfs(filename) argument 471 static bool do_statfs(const char *filename, const char *format) in do_statfs() argument 475 const char *format; in do_statfs() local 497 if (format == NULL) { in do_statfs() 499 format = (option_mask32 & OPT_TERSE in do_statfs() 507 format = (option_mask32 & OPT_TERSE in do_statfs() [all …]
|
/busybox-1.35.0/util-linux/ |
D | ipcs.c | 125 static NOINLINE void do_shm(int format) in do_shm() argument 140 switch (format) { in do_shm() 201 if (format == CREATOR) { in do_shm() 206 switch (format) { in do_shm() 251 static NOINLINE void do_sem(int format) in do_sem() argument 267 switch (format) { in do_sem() 317 if (format == CREATOR) { in do_sem() 322 switch (format) { in do_sem() 356 static NOINLINE void do_msg(int format) in do_msg() argument 370 switch (format) { in do_msg() [all …]
|
/busybox-1.35.0/libbb/ |
D | platform.c | 38 int FAST_FUNC vasprintf(char **string_ptr, const char *format, va_list p) in vasprintf() argument 45 r = vsnprintf(buf, 128, format, p); in vasprintf() 57 r = (*string_ptr ? vsnprintf(*string_ptr, r+1, format, p2) : -1); in vasprintf() 66 int dprintf(int fd, const char *format, ...) in dprintf() argument 72 va_start(p, format); in dprintf() 73 r = vasprintf(&string_ptr, format, p); in dprintf()
|
D | xfuncs_printf.c | 340 char* FAST_FUNC xasprintf(const char *format, ...) in xasprintf() argument 346 va_start(p, format); in xasprintf() 347 r = vasprintf(&string_ptr, format, p); in xasprintf()
|
/busybox-1.35.0/ |
D | .indent.pro | 17 --dont-format-first-column-comments 18 --dont-format-comments
|
D | Makefile.flags | 28 CFLAGS += $(call cc-option,-Wno-format-security,)
|
/busybox-1.35.0/testsuite/date/ |
D | date-format-works | 1 # TODO: gnu date doesn't accept '2000.11.22-11:22:33' format,
|
D | date-@-works | 1 # Tests for time_t value (unix time format)
|
D | date-works | 2 # Expected format: Fri Apr 25 03:47:55 CEST 2008
|
/busybox-1.35.0/procps/ |
D | ps.posix | 6 ps [-aA][-defl][-G grouplist][-o format]...[-p proclist][-t termlist] 38 of the default. The name of the default file and the format of a 41 -o format 42 Write information according to the format specification given in 43 format. Multiple -o options can be specified; the format speci- 45 nation of all the format option-arguments. 58 defined format. On XSI-conformant systems, they shall be 77 With the exception of -o format, all of the options shown are used to 82 The -o option allows the output format to be specified under user con- 85 The application shall ensure that the format specification is a list of [all …]
|
/busybox-1.35.0/testsuite/ |
D | TODO | 5 Moving to the new format. 8 format is command.tests files that use testing.sh.
|
/busybox-1.35.0/util-linux/volume_id/ |
D | util.c | 135 void volume_id_set_uuid(struct volume_id *id, const uint8_t *buf, enum uuid_format format) in volume_id_set_uuid() argument 138 unsigned count = (format == UUID_DCE_STRING ? VOLUME_ID_UUID_SIZE : 4 << format); in volume_id_set_uuid() 150 switch (format) { in volume_id_set_uuid()
|
D | volume_id_internal.h | 141 void volume_id_set_uuid(struct volume_id *id, const uint8_t *buf, enum uuid_format format);
|
/busybox-1.35.0/networking/ |
D | nslookup.c | 345 const char *format = NULL; in parse_reply() local 392 if (!format) in parse_reply() 393 format = "%s\tnameserver = %s\n"; in parse_reply() 397 if (!format) in parse_reply() 398 format = "%s\tcanonical name = %s\n"; in parse_reply() 402 if (!format) in parse_reply() 403 format = "%s\tname = %s\n"; in parse_reply() 410 printf(format, ns_rr_name(rr), dname); in parse_reply()
|
/busybox-1.35.0/include/ |
D | libbb.h | 928 char *xasprintf(const char *format, ...) __attribute__ ((format(printf, 1, 2))) FAST_FUNC RETURNS_M… 1423 void bb_error_msg(const char *s, ...) __attribute__ ((format (printf, 1, 2))) FAST_FUNC; 1425 void bb_error_msg_and_die(const char *s, ...) __attribute__ ((noreturn, format (printf, 1, 2))) FAS… 1427 void bb_perror_msg(const char *s, ...) __attribute__ ((format (printf, 1, 2))) FAST_FUNC; 1429 void bb_perror_msg_and_die(const char *s, ...) __attribute__ ((noreturn, format (printf, 1, 2))) FA… 1431 void bb_herror_msg(const char *s, ...) __attribute__ ((format (printf, 1, 2))) FAST_FUNC; 1433 void bb_herror_msg_and_die(const char *s, ...) __attribute__ ((noreturn, format (printf, 1, 2))) FA… 1442 void bb_info_msg(const char *s, ...) __attribute__ ((format (printf, 1, 2))) FAST_FUNC; 1813 …t fd, unsigned request, void *argp, const char *fmt,...) __attribute__ ((format (printf, 4, 5))) F… 1814 …t fd, unsigned request, void *argp, const char *fmt,...) __attribute__ ((format (printf, 4, 5))) F…
|
D | platform.h | 561 extern int dprintf(int fd, const char *format, ...); 628 extern int vasprintf(char **string_ptr, const char *format, va_list p) FAST_FUNC;
|
/busybox-1.35.0/examples/bootfloppy/ |
D | bootfloppy.txt | 40 - Create an empty file that you can format as a filesystem: 103 - Insert a floppy in the drive and format it with an MSDOS filesystem:
|
/busybox-1.35.0/docs/ |
D | tar_pax.txt | 2 tar format limitations - older tar format has fixed fields 56 do so. The format of the <value> shall be as described in pax 118 has the appropriate privilege required to do so. The format of the
|
D | mdev.txt | 53 The file has the format: 88 the format:
|
D | new-applet-HOWTO.txt | 202 git format-patch HEAD^
|
/busybox-1.35.0/editors/ |
D | sed1line.txt | 52 # IN UNIX ENVIRONMENT: convert DOS newlines (CR/LF) to Unix format 57 # IN UNIX ENVIRONMENT: convert Unix newlines (LF) to DOS format 63 # IN DOS ENVIRONMENT: convert Unix newlines (LF) to DOS format 67 # IN DOS ENVIRONMENT: convert DOS newlines (CR/LF) to Unix format
|
/busybox-1.35.0/miscutils/ |
D | devfsd.c | 1414 const char *format; /* Format of output, "%s" takes data past match string, member 1491 if (trans->format == NULL) in get_old_name() 1493 sprintf(buffer, trans->format, after_match); in get_old_name()
|
/busybox-1.35.0/archival/libarchive/unxz/ |
D | README | 6 file format. Currently only decoding is implemented.
|
/busybox-1.35.0/scripts/kconfig/ |
D | confdata.c | 18 __attribute__ ((format (printf, 1, 2)));
|