Home
last modified time | relevance | path

Searched refs:chp (Results 1 – 2 of 2) sorted by relevance

/busybox-1.35.0/coreutils/
Dmktemp.c67 char *chp; in mktemp_main() local
97 chp = argv[optind]; in mktemp_main()
98 if (!chp) { in mktemp_main()
102 chp = xstrdup("tmp.XXXXXX"); in mktemp_main()
107 if ((opts & OPT_t) && bb_basename(chp) != chp) { in mktemp_main()
113 chp = concat_path_file(path, chp); in mktemp_main()
116 chp = mktemp(chp); in mktemp_main()
117 if (chp[0] == '\0') in mktemp_main()
120 if (mkdtemp(chp) == NULL) in mktemp_main()
123 if (mkstemp(chp) < 0) in mktemp_main()
[all …]
Ddf.c134 char *chp, *opt_t; in df_main() local
156 IF_FEATURE_DF_FANCY(, &chp) in df_main()
165 if (strcmp(kmg_i_suffixes[i].suffix, chp) == 0) { in df_main()
171 df_disp_hr = xatoul_range_sfx(chp, 1, ULONG_MAX, kmg_i_suffixes); in df_main()