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

/external/clang/test/Sema/
H A Dbuiltins-gnu-mode.c19 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}}
H A Dbuiltins.c1 // RUN: %clang_cc1 %s -fsyntax-only -verify -pedantic -Wstrlcpy-strlcat-size -Wno-string-plus-int -triple=i686-apple-darwin9
213 size_t strlcat(char * restrict dst, const char * restrict src, size_t size);
226 strlcat(buf, b, sizeof(b)); // expected-warning {{size argument in 'strlcat' call appears to be size of the source; expected the size of the destination}} \
/external/libedit/src/
H A Dstrlcat.c1 /* $NetBSD: strlcat.c,v 1.4 2013/01/23 07:57:27 matt Exp $ */
2 /* $OpenBSD: strlcat.c,v 1.10 2003/04/12 21:56:39 millert Exp $ */
23 __RCSID("$NetBSD: strlcat.c,v 1.4 2013/01/23 07:57:27 matt Exp $");
32 __weak_alias(strlcat, _strlcat)
45 strlcat(char *dst, const char *src, size_t siz)
H A Dsys.h95 #define strlcat libedit_strlcat macro
96 size_t strlcat(char *dst, const char *src, size_t size);
/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 */
48 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.c657 (void)strlcat(new_path->v, script_dir, len);
658 (void)strlcat(new_path->v, "/", len);
659 (void)strlcat(new_path->v, path->v, len);
/external/clang/test/SemaCXX/
H A Dwarn-memsize-comparison.cpp15 extern "C" size_t strlcat(char *dst, const char *src, size_t size);
79 if (strlcat(b1, b2, sizeof(b1) != 0)) {} // \
80 expected-warning{{size argument in 'strlcat' call is a comparison}} \
83 if (strlcat(b1, b2, sizeof(b1)) != 0) {}
/external/tcpdump/
H A Dinterface.h54 extern size_t strlcat(char *, const char *, size_t);
H A Dnetdissect.h60 extern size_t strlcat (char *, const char *, size_t);
/external/ppp/pppd/plugins/radius/
H A Dradius.c521 strlcat(rstate.user, "@", sizeof(rstate.user));
522 strlcat(rstate.user, default_realm, sizeof(rstate.user));
/external/ppp/pppd/
H A Dpppd.h532 size_t strlcat __P((char *, const char *, size_t)); /* safe strncpy */
H A Dutils.c104 * strlcat - like strcat/strncat, doesn't overflow destination buffer,
108 strlcat(dest, src, len) function
H A Dipxcp.c1420 strlcat (strproto_lcl, "NLSP ", sizeof(strproto_lcl));
1433 strlcat (strproto_rmt, "NLSP ", sizeof(strproto_rmt));
H A Doptions.c1611 strlcat(path, "/", l);
1612 strlcat(path, arg, l);
H A Dtty.c307 strlcat(dev, cp, sizeof(dev));
/external/libpcap/
H A Dpcap-bpf.c695 strlcat(ifr.ifr_name, p->opt.source + 2, sizeof(ifr.ifr_name));
1393 strlcat(ifr.ifr_name, p->opt.source + 3,
/external/valgrind/shared/
H A Dvg_replace_strmem.c356 /*---------------------- strlcat ----------------------*/
389 RECORD_OVERLAP_ERROR("strlcat", dst_orig, src_orig, n); \
397 //STRLCAT(VG_Z_LIBC_SONAME, strlcat)
398 //STRLCAT(VG_Z_DYLD, strlcat)
399 STRLCAT(VG_Z_LIBC_SONAME, strlcat)
402 STRLCAT(VG_Z_LIBC_SONAME, strlcat)
/external/libedit/
H A Dconfigure595 ac_unique_file="src/strlcat.c"
13194 for ac_func in endpwent isascii memchr memset re_comp regcomp strcasecmp strchr strcspn strdup strerror strrchr strstr strtol issetugid wcsdup strlcpy strlcat fgetln vis strvis strunvis __secure_getenv secure_getenv
13224 # strlcat
13225 ac_fn_c_check_func "$LINENO" "strlcat" "ac_cv_func_strlcat"
/external/sqlite/dist/orig/
H A Dsqlite3.c[all...]
/external/sqlite/dist/
H A Dsqlite3.c[all...]

Completed in 1016 milliseconds