HomeSort by: relevance | last modified time | path
    Searched refs:strlcat (Results 1 - 25 of 173) sorted by relevancy

1 2 3 4 5 6 7

  /src/common/lib/libc/arch/arm/string/
strlcat.S 1 /* $NetBSD: strlcat.S,v 1.4 2017/01/14 03:00:13 christos Exp $ */
6 WEAK_ALIAS(strlcat, _strlcat)
7 #define strlcat _strlcat macro
strlcat_arm.S 34 /* LINTSTUB: size_t strlcat(char *, const char *, size_t) */
35 ENTRY(strlcat) function
73 END(strlcat)
strlcat_naive.S 34 /* LINTSTUB: size_t strlcat(char *, const char *, size_t) */
35 ENTRY(strlcat) function
79 END(strlcat)
  /src/sbin/ttyflags/
ttyflags.c 177 (void)strlcat(strflags, "local", sizeof(strflags));
183 (void)strlcat(strflags, "|", sizeof(strflags));
184 (void)strlcat(strflags, "rtscts", sizeof(strflags));
189 (void)strlcat(strflags, "|", sizeof(strflags));
190 (void)strlcat(strflags, "dtrcts", sizeof(strflags));
195 (void)strlcat(strflags, "|", sizeof(strflags));
196 (void)strlcat(strflags, "softcar", sizeof(strflags));
201 (void)strlcat(strflags, "|", sizeof(strflags));
202 (void)strlcat(strflags, "mdmbuf", sizeof(strflags));
  /src/games/hack/
hack.options.c 251 (void) strlcat(buf, "standout,", sizeof(buf));
253 (void) strlcat(buf, "nonull,", sizeof(buf));
255 (void) strlcat(buf, "nonews,", sizeof(buf));
257 (void) strlcat(buf, "time,", sizeof(buf));
259 (void) strlcat(buf, "notombstone,", sizeof(buf));
261 (void) strlcat(buf, "!rest_on_space,", sizeof(buf));
268 (void) strlcat(buf, "/own scores", sizeof(buf));
hack.objnam.c 142 strlcat(buf, " gem", sizeof(buf));
236 strlcat(buf, un, bufmax);
239 strlcat(buf, an, bufmax);
243 strlcat(buf, " potion", bufmax);
256 strlcat(buf, an, bufmax);
259 strlcat(buf, un, bufmax);
262 strlcat(buf, dn, bufmax);
296 strlcat(buf, " stone", bufmax);
322 strlcat(buf, "es", bufmax);
326 strlcat(buf, "ies", bufmax)
    [all...]
  /src/dist/pf/sbin/pfctl/
pfctl_osfp.c 519 strlcat(buf, " ", len);
520 strlcat(buf, version_name, len);
523 strlcat(buf, " ", len);
526 strlcat(buf, ".", len);
528 strlcat(buf, " ", len);
529 strlcat(buf, subtype_name, len);
1018 strlcat(buf, "*", sizeof(buf));
1020 strlcat(buf, "S", sizeof(buf));
1022 strlcat(buf, "T", sizeof(buf));
1025 strlcat(buf, "%", sizeof(buf))
    [all...]
  /src/lib/libc/locale/
generic_lc_all.c 105 strlcat(&locale->query[0], "/",
107 strlcat(&locale->query[0], s,
111 strlcat(&locale->query[0], "/", sizeof(locale->query));
112 strlcat(&locale->query[0], t, sizeof(locale->query));
  /src/tests/
h_macros.h 67 strlcat(buf, ": ", sizeof(buf));
68 strlcat(buf, strerror(sverrno), sizeof(buf));
  /src/common/lib/libc/string/
strlcat.c 1 /* $NetBSD: strlcat.c,v 1.5 2024/11/01 21:11:37 riastradh Exp $ */
2 /* $OpenBSD: strlcat.c,v 1.10 2003/04/12 21:56:39 millert Exp $ */
27 __RCSID("$NetBSD: strlcat.c,v 1.5 2024/11/01 21:11:37 riastradh Exp $");
39 __weak_alias(strlcat, _strlcat)
56 strlcat(char *__restrict dst, const char *__restrict src, size_t siz)
  /src/usr.sbin/rpc.pcnfsd/
pcnfsd_misc.c 215 (void) strlcat(fontname, "-Roman", sizeof(fontname));
218 (void) strlcat(fontname, "-", sizeof(fontname));
220 (void) strlcat(fontname, "Bold", sizeof(fontname));
222 (void) strlcat(fontname, f == 't' ? "Italic" : "Oblique",
243 (void) strlcat(temp_file, "X", sizeof(temp_file)); /* intermediate file name */
248 (void) strlcat(commbuf, mapfont(opts[4], opts[5], opts[6]),
250 (void) strlcat(commbuf, " -F ", sizeof(commbuf));
251 (void) strlcat(commbuf, mapfont(opts[7], opts[8], opts[9]),
253 (void) strlcat(commbuf, " ", sizeof(commbuf));
254 (void) strlcat(commbuf, f, sizeof(commbuf))
    [all...]
  /src/usr.sbin/altq/altqd/
libaltq2.c 77 strlcat(buf, ": %m", sizeof(buf));
  /src/usr.sbin/sysinst/
upgrade.c 147 strlcat(newx, "/bin/X", sizeof(newx));
149 strlcat(oldx, ".old", sizeof(oldx));
183 strlcat(newx, "/bin/X", sizeof(newx));
185 strlcat(oldx, ".old", sizeof(oldx));
  /src/usr.bin/nohup/
nohup.c 121 (void)strlcat(path, "/", sizeof(path));
122 (void)strlcat(path, FILENAME, sizeof(path));
  /src/sys/arch/x86/x86/
spectre.c 89 strlcat(name, "[GCC retpoline]", sizeof(name));
95 strlcat(name, "(none)", sizeof(name));
98 strlcat(name, " + ", sizeof(name));
101 strlcat(name, "[AMD DIS_IND]", sizeof(name));
104 strlcat(name, "[Intel IBRS]", sizeof(name));
107 strlcat(name, "[Intel Enhanced IBRS]", sizeof(name));
378 strlcat(name, "(none)", sizeof(name));
384 strlcat(name, "[Intel SSBD]", sizeof(name));
387 strlcat(name, "[Intel SSB_NO]", sizeof(name));
390 strlcat(name, "[AMD SSB_NO]", sizeof(name))
    [all...]
  /src/lib/libc/gen/
xsyslog.c 241 strlcat(fmt_cat, msgid, FMT_LEN);
242 strlcat(fmt_cat, " ", FMT_LEN);
244 strlcat(fmt_cat, "- ", FMT_LEN);
247 strlcat(fmt_cat, sdfmt, FMT_LEN);
249 strlcat(fmt_cat, "-", FMT_LEN);
257 strlcat(fmt_cat, " ", FMT_LEN);
258 strlcat(fmt_cat, msgfmt, FMT_LEN);
  /src/games/atc/
main.c 252 (void)strlcat(games, GAMES, 256);
266 (void)strlcat(file, line, 256);
279 (void)strlcat(games, GAMES, 256);
289 (void)strlcat(file, line, 256);
313 (void)strlcat(games, GAMES, 256);
  /src/sbin/veriexecctl/
veriexecctl.c 98 strlcat(buf, ", ", len);
101 strlcat(buf, "direct", len);
106 strlcat(buf, "indirect", len);
111 strlcat(buf, "file", len);
116 strlcat(buf, "untrusted", len);
  /src/lib/libutil/
stat_flags.c 58 (void)strlcat(string, prefix, sizeof(string)); \
59 (void)strlcat(string, s, sizeof(string)); \
  /src/sys/dist/pf/net/
pf_ruleset.c 240 strlcat(anchor->path, "/", sizeof(anchor->path));
242 strlcat(anchor->path, anchor->name, sizeof(anchor->path));
344 strlcat(path, "/", MAXPATHLEN);
345 strlcat(path, name, MAXPATHLEN);
371 strlcat(pr->anchor_call, r->anchor->path,
387 strlcat(pr->anchor_call, "../",
397 strlcat(pr->anchor_call, r->anchor->path + (a[0] ?
402 strlcat(pr->anchor_call, pr->anchor_call[0] ? "/*" : "*",
  /src/tests/lib/libc/gen/
t_realpath.c 128 (void)strlcat(path, "/realpath", sizeof(path));
129 (void)strlcat(slnk, "/symbolic", sizeof(slnk));
  /src/usr.bin/ldd/
ldd.c 171 strlcat(path, "/", sizeof(path));
172 strlcat(path, *argv, sizeof(path));
  /src/tests/lib/libc/sys/
t_chroot.c 61 (void)strlcat(buf, "/dir", sizeof(buf));
99 (void)strlcat(buf, "/file", sizeof(buf));
186 (void)strlcat(buf, "/dir", sizeof(buf));
222 (void)strlcat(buf, "/file", sizeof(buf));
  /src/tests/lib/libc/locale/
t_strfmon.c 118 strlcat(expected, ts, sizeof(expected));
119 strlcat(expected, "234", sizeof(expected));
203 strlcat(actual, buf, sizeof(actual));
248 strlcat(actual, buf, sizeof(actual));
  /src/libexec/rexecd/
rexecd.c 356 (void)strlcat(path, _PATH_DEFPATH, sizeof(path));
358 (void)strlcat(homedir, pwd->pw_dir, sizeof(homedir));
359 (void)strlcat(shell, pwd->pw_shell, sizeof(shell));
360 (void)strlcat(username, pwd->pw_name, sizeof(username));
361 (void)strlcat(logname, pwd->pw_name, sizeof(logname));

Completed in 24 milliseconds

1 2 3 4 5 6 7