| /src/lib/libc/string/ |
| Lint_strncat.c | 12 strncat(char *dst, const char *src, size_t n) function
|
| /src/external/bsd/libarchive/dist/tar/test/ |
| test_print_longpath.c | 23 strncat(buff, "0123456789", 25 strncat(buff, "/", sizeof(buff) - strlen(buff) -1); 27 strncat(buff, "\n", sizeof(buff) - strlen(buff) -1);
|
| test_option_b.c | 24 strncat(testprog_ustar, USTAR_OPT, testprog_ustar_len);
|
| /src/external/bsd/libarchive/dist/cpio/test/ |
| test_basic.c | 129 strncat(result, 132 strncat(result, 135 strncat(result, 144 strncat(result, 147 strncat(result, 150 strncat(result, 160 strncat(result, 163 strncat(result, 166 strncat(result, 176 strncat(result [all...] |
| test_format_newc.c | 110 strncat(result, 113 strncat(result, strerror(ERANGE), 115 strncat(result, "\n", 119 strncat(result, 122 strncat(result, strerror(ERANGE), 124 strncat(result, "\n", 128 strncat(result, 131 strncat(result, strerror(ERANGE), 133 strncat(result, "\n", 137 strncat(result [all...] |
| /src/common/lib/libc/string/ |
| strncat.c | 1 /* $NetBSD: strncat.c,v 1.3 2018/02/04 01:13:45 mrg Exp $ */ 38 static char sccsid[] = "@(#)strncat.c 8.1 (Berkeley) 6/4/93"; 40 __RCSID("$NetBSD: strncat.c,v 1.3 2018/02/04 01:13:45 mrg Exp $"); 52 #undef strncat macro 60 strncat(char *dst, const char *src, size_t n) function
|
| /src/lib/libc/arch/arm/string/ |
| strncat_naive.S | 34 /* LINTSTUB: char *strncat(char *, const char *, size_t) */ 35 ENTRY(strncat) function 53 END(strncat)
|
| /src/tests/lib/libc/ssp/ |
| h_strncat.c | 44 (void)strncat(b, "1020202020202", len);
|
| t_ssp.sh | 222 atf_test_case strncat 225 atf_set "descr" "Checks strncat(3)" 315 atf_add_test_case strncat
|
| /src/tests/lib/libc/string/ |
| t_strcat.c | 129 atf_tc_set_md_var(tc, "descr", "Test strncat(3) results"); 136 ATF_CHECK(strncat(buf, "xxx", 0) == buf); 138 ATF_CHECK(strncat(buf, "xxx", 1) == buf); 140 ATF_CHECK(strncat(buf, "xxx", 2) == buf); 142 ATF_CHECK(strncat(buf, "\0", 1) == buf);
|
| /src/sbin/mount_portal/ |
| pt_filter.c | 71 strncat(tempbuff, " ", n - strlen(tempbuff)); 72 strncat(tempbuff, cmdv[i], n - strlen(tempbuff)); 74 strncat(tempbuff, " ", n - strlen(tempbuff));
|
| /src/external/gpl3/gcc/dist/libstdc++-v3/include/c_compatibility/ |
| string.h | 40 using std::strncat;
|
| /src/external/gpl3/gcc.old/dist/libstdc++-v3/include/c_compatibility/ |
| string.h | 40 using std::strncat;
|
| /src/lib/libskey/ |
| put.c | 2097 strncat (engout, &Wp[extract (cp, 0, 11)][0], 4); 2099 strncat (engout, &Wp[extract (cp, 11, 11)][0], 4); 2101 strncat (engout, &Wp[extract (cp, 22, 11)][0], 4); 2103 strncat (engout, &Wp[extract (cp, 33, 11)][0], 4); 2105 strncat (engout, &Wp[extract (cp, 44, 11)][0], 4); 2107 strncat (engout, &Wp[extract (cp, 55, 11)][0], 4);
|
| /src/lib/libc/rpc/ |
| clnt_perror.c | 259 (void)strncat(str, clnt_sperrno(rpc_createerr.cf_stat), len - 1); 262 (void) strncat(str, " - ", len - 1); 263 (void) strncat(str, 268 (void)strncat(str, " - ", len - 1); 269 (void)strncat(str, strerror(rpc_createerr.cf_error.re_errno),
|
| /src/include/ssp/ |
| string.h | 92 __ssp_bos_icheck3_restrict(strncat, char *, const char *) 105 #define strncat(dst, src, len) __ssp_bos_check3(strncat, dst, src, len) macro
|
| /src/sys/arch/ia64/stand/common/ |
| dev_net.c | 293 strncat(temp, "0", 1); 296 strncat(temp, num, 2); 299 strncat(temp, ":", 1);
|
| /src/lib/libc/db/hash/ |
| ndbm.c | 75 (void)strncat(path, DBM_SUFFIX, sizeof(path) - strlen(path) - 1);
|
| /src/sys/external/bsd/acpica/dist/utilities/ |
| utnonansi.c | 236 strncat (Dest, Source, MaxTransferLength);
|
| /src/sys/external/bsd/compiler_rt/dist/lib/asan/tests/ |
| asan_str_test.cc | 451 // strncat() reads strlen(to) bytes from |to| before concatenating. 457 // Normal strncat calls. 458 strncat(to, from, 0); 459 strncat(to, from, from_size); 461 strncat(to, from, 2 * from_size); 463 EXPECT_DEATH(strncat(to - 1, from, 0), LeftOOBAccessMessage(1)); 464 strncat(to, from + from_size - 1, 10); 466 EXPECT_DEATH(strncat(to - 1, from, 2), LeftOOBAccessMessage(1)); 467 EXPECT_DEATH(strncat(to, from - 1, 2), LeftOOBReadMessage(1)); 468 EXPECT_DEATH(strncat(to, from + from_size, 2), RightOOBReadMessage(0)) [all...] |
| /src/crypto/dist/ipsec-tools/src/racoon/ |
| misc.h | 68 #define strlcat(d,s,l) strncat(d,s,(l)-strlen(d)-1)
|
| /src/external/bsd/am-utils/dist/conf/mtab/ |
| mtab_osf.c | 75 strncat(mntfrombuf, mp->f_mntfromname, (at - mp->f_mntfromname));
|
| /src/external/bsd/pkg_install/dist/lib/ |
| file.c | 239 strncat(try, ".", max -= strlen(try)); 240 strncat(try, name, max -= strlen(name)); 241 strncat(try, ".", max--); 242 strncat(try, "backup", max -= 6);
|
| /src/external/gpl3/gcc/dist/libssp/ssp/ |
| string.h | 48 #undef strncat macro 155 #define strncat(dest, src, len) \ macro
|
| /src/external/gpl3/gcc.old/dist/libssp/ssp/ |
| string.h | 48 #undef strncat macro 155 #define strncat(dest, src, len) \ macro
|