Searched refs:strlcat (Results 1 - 25 of 51) sorted by relevance

123

/external/clang/test/Sema/
H A Dbuiltins-gnu-mode.c27 int strlcat; variable
H A Dwarn-strlcpycat-size.c1 // RUN: %clang_cc1 -Wstrlcpy-strlcat-size -verify -fsyntax-only %s
5 size_t strlcat (char * restrict dst, const char * restrict src, size_t size);
24 strlcat(s2, s3, sizeof(s3)); // expected-warning {{size argument in 'strlcat' call appears to be size of the source; expected the size of the destination}} expected-note {{change size argument to be the size of the destination}}
/external/dropbear/
H A Dcompat.h35 size_t strlcat(char *dst, const char *src, size_t siz);
H A Dprogressmeter.c174 strlcat(buf, " ", win_size);
179 strlcat(buf, "/s ", win_size);
188 strlcat(buf, "- stalled -", win_size);
190 strlcat(buf, " --:-- ETA", win_size);
210 strlcat(buf, " ETA", win_size);
212 strlcat(buf, " ", win_size);
H A Dcompat.c25 * strlcat() is copyright as follows:
118 /* "$OpenBSD: strlcat.c,v 1.8 2001/05/13 15:40:15 deraadt Exp $"
127 strlcat(dst, src, siz) function
H A Dcli-runopts.c258 strlcat(cli_opts.cmd, argv[j], cmdlen);
259 strlcat(cli_opts.cmd, " ", cmdlen);
/external/openssh/
H A Dmd5crypt.c145 strlcat(passwd, to64(l, 4), sizeof(passwd));
147 strlcat(passwd, to64(l, 4), sizeof(passwd));
149 strlcat(passwd, to64(l, 4), sizeof(passwd));
151 strlcat(passwd, to64(l, 4), sizeof(passwd));
153 strlcat(passwd, to64(l, 4), sizeof(passwd));
155 strlcat(passwd, to64(l, 2), sizeof(passwd));
H A Dprogressmeter.c184 strlcat(buf, " ", win_size);
189 strlcat(buf, "/s ", win_size);
198 strlcat(buf, "- stalled -", win_size);
200 strlcat(buf, " --:-- ETA", win_size);
220 strlcat(buf, " ETA", win_size);
222 strlcat(buf, " ", win_size);
H A Dmisc.c547 strlcat(ret, "/", sizeof(ret)) >= sizeof(ret))
553 if (strlcat(ret, filename, sizeof(ret)) >= sizeof(ret))
608 i = strlcat(buf, keys[j].repl, sizeof(buf));
754 strlcat(r, b, hl);
H A Dssh-keygen.c538 strlcat(encoded, line, sizeof(encoded));
910 strlcat(identity_file, ".pub", sizeof(identity_file));
996 strlcat(tmp, ".XXXXXXXXXX", sizeof(tmp)) >= sizeof(tmp) ||
998 strlcat(old, ".old", sizeof(old)) >= sizeof(old))
1360 strlcat(identity_file, ".pub", sizeof(identity_file));
2338 strlcat(identity_file, ".pub", sizeof(identity_file));
/external/openssh/openbsd-compat/
H A Dstrlcat.c1 /* $OpenBSD: strlcat.c,v 1.13 2005/08/08 08:05:37 espie Exp $ */
19 /* OPENBSD ORIGINAL: lib/libc/string/strlcat.c */
35 strlcat(char *dst, const char *src, size_t siz) function
H A Drealpath.c133 resolved_len = strlcat(resolved, next_token, PATH_MAX);
179 left_len = strlcat(symlink, left, sizeof(left));
H A Dopenbsd-compat.h79 size_t strlcat(char *dst, const char *src, size_t siz);
H A Dsetproctitle.c142 len = strlcat(buf, ": ", sizeof(buf));
H A Dport-linux.c213 strlcat(newctx, cx, newlen);
/external/tcpdump/missing/
H A Dstrlcat.c1 /* $NetBSD: strlcat.c,v 1.5 1999/09/20 04:39:47 lukem Exp $ */
2 /* from OpenBSD: strlcat.c,v 1.2 1999/06/17 16:28:58 millert Exp */
33 "@(#) $Header: /tcpdump/master/tcpdump/missing/strlcat.c,v 1.5 2003/11/16 09:36:51 guy Exp $ (LBL)";
51 strlcat(char *dst, const char *src, size_t siz) function
/external/ipsec-tools/src/racoon/
H A Dmisc.h67 #define strlcat(d,s,l) strncat(d,s,(l)-strlen(d)-1) macro
H A Dsession.c162 strlcat(pid_file, _PATH_VARRUN, MAXPATHLEN);
163 strlcat(pid_file, lcconf->pathinfo[LC_PATHTYPE_PIDFILE], MAXPATHLEN);
H A Dremoteconf.c659 (void)strlcat(new_path->v, script_dir, len);
660 (void)strlcat(new_path->v, "/", len);
661 (void)strlcat(new_path->v, path->v, len);
/external/kernel-headers/original/linux/
H A Dstring.h39 extern size_t strlcat(char *, const char *, __kernel_size_t);
/external/tcpdump/
H A DAndroid.mk119 missing/strlcat.c\
H A Dinterface.h54 extern size_t strlcat(char *, const char *, size_t);
H A Dnetdissect.h54 extern size_t strlcat (char *, const char *, size_t);
/external/qemu/distrib/sdl-1.2.15/
H A Dandroid-configure.sh362 sdl_check_funcs qsort abs bcopy memset memcpy memmove memcmp strlen strlcpy strlcat
/external/qemu/distrib/sdl-1.2.15/include/
H A DSDL_stdinc.h407 #define SDL_strlcat strlcat

Completed in 3322 milliseconds

123