Searched refs:suffix (Results 1 - 25 of 255) sorted by relevance

1234567891011

/freebsd-current/contrib/xz/src/xz/
H A Dsuffix.h3 /// \file suffix.h
4 /// \brief Checks filename suffix and creates the destination filename
22 /// \brief Set a custom filename suffix
24 /// This function calls xstrdup() for the given suffix, thus the caller
26 /// suffix, thus if this is called multiple times, the old suffixes are freed
28 extern void suffix_set(const char *suffix);
31 /// \brief Check if a custom suffix has been set
33 /// Returns true if the internal tracking of the suffix string has been set
34 /// and false if the string has not been set. This will keep the suffix
H A Dsuffix.c3 /// \file suffix.c
4 /// \brief Checks filename suffix and creates the destination filename
19 // For case-insensitive filename suffix on case-insensitive systems
56 /// \brief Test for special suffix used for 8.3 short filenames (SFN)
82 /// \param suffix Filename suffix to look for
86 /// \return If src_name has the suffix, src_len - strlen(suffix) is
90 test_suffix(const char *suffix, const char *src_name, size_t src_len) argument
92 const size_t suffix_len = strlen(suffix);
179 msg_suffix(const char *src_name, const char *suffix) argument
257 const char *suffix = custom_suffix != NULL local
383 suffix_set(const char *suffix) argument
[all...]
/freebsd-current/sbin/ipf/libipf/
H A Dprintaddr.c15 char *suffix; local
20 suffix = "bcast";
26 suffix = NULL;
30 suffix = "net";
34 suffix = "netmasked";
38 suffix = "peer";
42 suffix = NULL;
49 suffix = NULL;
55 suffix = NULL;
61 suffix
[all...]
/freebsd-current/contrib/bmake/unit-tests/
H A Dvarmod-sysv.exp5 suffix = "suffix"
7 pre-middle-suffix = "pre-middle-suffix"
9 suffix =NS "suffixNS"
11 pre-middle-suffix =NS "pre-middle-suffixNS"
13 suffix =% "suffix%"
15 pre-middle-suffix =% "pre-middle-suffix
[all...]
H A Dsuff-phony.exp1 Adding suffix ".c"
7 No valid suffix on all
9 No known suffix on .END. Using .NULL suffix
10 adding suffix rules
H A Ddeptgt-phony.exp13 No known suffix on all. Using .NULL suffix
14 adding suffix rules
24 No valid suffix on depsrc-phony-pr-15164
26 No valid suffix on deptgt-phony-pr-15164
34 No known suffix on .END. Using .NULL suffix
35 adding suffix rules
H A Dsuff-lookup.exp1 Adding suffix ".c"
2 Adding suffix ".cc"
3 Adding suffix ".ccc"
4 Adding suffix ".short"
5 Adding suffix ".sho"
6 Adding suffix ".dead-end"
28 Adding suffix ".c"
29 Adding suffix ".cc"
30 Adding suffix ".ccc"
35 Adding suffix "
[all...]
H A Dsuff-transform-select.exp1 Adding suffix ".c"
2 Adding suffix ".d"
6 Adding suffix ".e"
10 Adding suffix ".f"
11 Adding suffix ".g"
26 No known suffix on all. Using .NULL suffix
27 adding suffix rules
34 Wildcard expanding "issue10.e"...suffix is ".e"...
37 suffix i
[all...]
H A Dsuff-incomplete.exp6 Adding suffix ".a"
7 Adding suffix ".b"
8 Adding suffix ".c"
30 No known suffix on all. Using .NULL suffix
31 adding suffix rules
32 Wildcard expanding "suff-incomplete.c"...suffix is ".c"...
35 Wildcard expanding "suff-incomplete.c"...suffix is ".c"...
39 No known suffix on .END. Using .NULL suffix
[all...]
H A Dsuff-transform-endless.exp1 Adding suffix ".c"
2 Adding suffix ".d"
6 Adding suffix ".e"
10 Adding suffix ".f"
25 No known suffix on all. Using .NULL suffix
26 adding suffix rules
33 Wildcard expanding "issue6.f"...suffix is ".f"...
40 suffix is ".e"...
H A Dsuff-rebuild.exp6 Adding suffix ".a"
7 Adding suffix ".b"
8 Adding suffix ".c"
39 No known suffix on all. Using .NULL suffix
40 adding suffix rules
46 No known suffix on suff-rebuild-example. Using .NULL suffix
47 adding suffix rules
56 suffix i
[all...]
H A Dposix1.exp28 Target with suffix transformations
32 Implied source with suffix transformations
36 Suffixless target with suffix transformations
40 Out-of-date dependencies with suffix transformations
44 Member with suffix transformations
68 Target with suffix transformations
72 Implied source with suffix transformations
76 Suffixless target with suffix transformations
80 Out-of-date dependencies with suffix transformations
84 Member with suffix transformation
[all...]
H A Dsuff-main-several.exp10 Adding suffix ".1"
11 Adding suffix ".2"
17 Adding suffix ".3"
23 Adding suffix ".4"
34 Adding suffix ".4"
35 Adding suffix ".3"
36 Adding suffix ".2"
37 Adding suffix ".1"
43 Adding suffix ".1"
44 Adding suffix "
[all...]
/freebsd-current/crypto/openssh/regress/misc/sk-dummy/
H A Dfatal.c14 LogLevel level, const char *suffix, const char *fmt, ...)
23 if (suffix != NULL)
24 fprintf(stderr, ": %s", suffix);
13 sshfatal(const char *file, const char *func, int line, int showfunc, LogLevel level, const char *suffix, const char *fmt, ...) argument
/freebsd-current/crypto/openssh/
H A Dfatal.c38 LogLevel level, const char *suffix, const char *fmt, ...)
43 sshlogv(file, func, line, showfunc, level, suffix, fmt, args);
37 sshfatal(const char *file, const char *func, int line, int showfunc, LogLevel level, const char *suffix, const char *fmt, ...) argument
/freebsd-current/usr.bin/basename/
H A Dbasename.c49 char *p, *suffix; local
59 suffix = NULL;
68 suffix = optarg;
86 if ((suffix == NULL && !aflag) && argc == 2) {
87 suffix = argv[1];
90 if (suffix != NULL)
91 suffixlen = strlen(suffix);
95 stripsuffix(p, suffix, suffixlen);
103 stripsuffix(char *p, const char *suffix, size_t suffixlen) argument
110 strcmp(suffix,
[all...]
/freebsd-current/contrib/llvm-project/lldb/source/Plugins/Language/ObjCPlusPlus/
H A DObjCPlusPlusLanguage.cpp21 for (auto suffix : suffixes) {
22 if (file_path.ends_with_insensitive(suffix))
/freebsd-current/contrib/ncurses/
H A Dmk-2nd.awk35 # suffix rules (to force compilation with the appropriate flags). We could use
104 suffix=".cc"
108 suffix=".c"
111 printf "../%s/%s$o :\t%s/%s%s", model, $1, $3, $1, suffix
138 printf "../%s/%s%s%s", name, dir, $1, suffix
140 printf "%s/%s%s", $3, $1, suffix
H A Dmk-1st.awk41 # suffix (e.g., "_g.a", for debug libraries)
48 # TermlibSuffix (".so" or other suffix for libterm.so)
72 return sprintf("%s%s%s", prefix, a_name, suffix)
77 result = sprintf("%s%s%s.a", prefix, a_name, suffix);
79 result = sprintf("%s%s%s.lib", prefix, a_name, suffix);
88 result = sprintf("%s%s$(ABI_VERSION)%s", "cyg", a_name, suffix);
90 result = sprintf("%s%s$(ABI_VERSION)%s", "msys-", a_name, suffix);
92 result = sprintf("%s%s$(ABI_VERSION)%s", prefix, a_name, suffix);
94 result = sprintf("%s%s.$(ABI_VERSION)%s", prefix, a_name, suffix);
103 result = sprintf("%s%s$(REL_VERSION)%s", "cyg", a_name, suffix);
[all...]
/freebsd-current/sys/contrib/openzfs/tests/zfs-tests/tests/functional/cli_root/zfs_set/
H A Dreservation_001_neg.ksh51 set -A suffix "b" "k" "m" "t" "p" "e" "K" "M" "G" "T" "P" "E" "kb" "Mb" "Gb" \
71 while (( $j < ${#suffix[*]} )); do
73 log_mustnot zfs set reservation=${values[$i]}${suffix[$j]} $obj
/freebsd-current/contrib/ncurses/misc/
H A Dgen-pkgconfig.in52 suffix=@PC_MODULE_SUFFIX@
195 reqs="$PANEL_LIBRARY${suffix}, $MENU_LIBRARY${suffix}, $FORM_LIBRARY${suffix}, $MAIN_LIBRARY${suffix}"
198 reqs="$MAIN_LIBRARY${suffix}"
207 reqs="${reqs}${SUB_LIBRARY}${suffix}"
217 echo "** creating ${name}${suffix}.pc"
218 cat >${name}${suffix}.pc <<EOF
230 Name: ${name}${suffix}
[all...]
/freebsd-current/crypto/openssl/crypto/
H A Dtrace.c178 char *suffix; member in struct:__anon4007
205 OSSL_TRACE2(TRACE, "Attach suffix \"%s\" to category '%s'\n",
226 OSSL_TRACE2(TRACE, "Detach suffix \"%s\" from category '%s'\n",
243 const char **prefix, const char **suffix,
257 curr_suffix = trace_channels[category].suffix;
264 if (suffix != NULL && curr_suffix != NULL) {
278 if (suffix != NULL && curr_suffix != NULL) {
280 trace_channels[category].suffix = NULL;
296 if (suffix != NULL && *suffix !
242 set_trace_data(int category, int type, BIO **channel, const char **prefix, const char **suffix, int (*attach_cb)(int, int, const void *), int (*detach_cb)(int, int, const void *)) argument
341 const char *suffix = NULL; local
437 OSSL_trace_set_suffix(int category, const char *suffix) argument
506 char *suffix = NULL; local
[all...]
/freebsd-current/contrib/libxo/libxo/
H A Dxo_humanize.h64 const char *suffix, int scale, int flags)
80 assert(suffix != NULL);
109 if (buf == NULL || suffix == NULL)
129 baselen += strlen(suffix);
131 /* Check if enough room for `x y' + suffix + `\0' */
160 sep, SCALE2PREFIX(i), suffix);
166 sep, SCALE2PREFIX(i), suffix);
63 xo_humanize_number(char *buf, size_t len, int64_t bytes, const char *suffix, int scale, int flags) argument
/freebsd-current/tests/sys/cddl/zfs/tests/cli_root/zfs_set/
H A Dreservation_001_neg.ksh61 set -A suffix "b" "k" "m" "t" "p" "e" "K" "M" "G" "T" "P" "E" "kb" "Mb" "Gb" \
81 while (( $j < ${#suffix[*]} )); do
84 reservation=${values[$i]}${suffix[$j]} $obj \
89 reservation=${values[$i]}${suffix[$j]} $obj"
/freebsd-current/contrib/libarchive/libarchive/
H A Darchive_write_set_format_filter_by_ext.c68 int cmpsuff(const char *str, const char *suffix) argument
72 if ((str == NULL) || (suffix == NULL))
76 length_suffix = strlen(suffix);
79 return strcmp(str + (length_str - length_suffix), suffix);

Completed in 359 milliseconds

1234567891011